@charset "UTF-8";
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: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

input[type="submit"],
input[type="button"],
input[type="reset"] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration,
input[type="reset"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus,
input[type="reset"]::focus {
  outline-offset: -2px;
}

html {
  font-size: 62.5%;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  -webkit-text-size-adjust: 100%;
  color: #222;
  overflow-y: scroll;
  font-size: 16px;
  line-height: 1.8;
  min-width: 1200px;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  body {
    width: 100%;
    min-width: auto;
  }
}

@media all and (-ms-high-contrast: none) {
  body {
    font-family: 'Verdana', 'メイリオ', 'Meiryo', sans-serif;
  }
}
body * {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  /* box-sizingの値は継承されないので明示的に設定 */
}

.print {
  display: none;
}

main {
  overflow-x: hidden;
  padding-top: 90px;
  display: block;
}
@media screen and (max-width: 768px) {
  main {
    padding-top: 0;
  }
}

img {
  vertical-align: top;
}

header {
  height: 90px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  background: #fff;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  header {
    height: 60px;
    position: fixed;
    background: #fff;
    z-index: 10;
    top: 0;
  }
}

a {
  color: #009389;
}

a img {
  opacity: 1;
  -webkit-transition: 0.2s all ease-out;
  transition: 0.2s all ease-out;
}
a img:hover {
  opacity: 0.6;
}

.logo {
  margin-left: 15px;
  width: 13vw;
  height: auto;
  max-width: 200px;
}
@media screen and (max-width: 768px) {
  .logo {
    width: 140px;
  }
}

.pc_block {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc_block {
    display: none;
  }
}

.sp_block {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp_block {
    display: block;
  }
}

.g_navi ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.g_navi ul li {
  margin-right: 15px;
}
.g_navi ul li a {
  color: #222;
  font-weight: bold;
  font-size: 1.4rem;
  text-decoration: none;
  position: relative;
  display: inline-block;
}
.g_navi ul li a::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #ccc;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

@media screen and (max-width: 768px) {
  header nav {
    display: none;
  }
}
header nav .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header nav .list .item {
  padding-right: 1.4vw;
}

header nav .list .item a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #000;
  font-size: 1.3rem;
  font-weight: 700;
}

header nav .list .item a:after {
  position: absolute;
  bottom: -8px;
  left: 0;
  content: '';
  width: 100%;
  height: 3px;
  background: #F17313;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

header nav .list .item a:hover, header nav .list .item a.on {
  opacity: 1;
}

header nav .list .item a:hover:after, header nav .list .item a.on:after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

header nav .entry_box a {
  width: 140px;
  background-color: #009389;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  height: 90px;
  text-decoration: none;
  -webkit-transition: 0.2s ease-out all;
  transition: 0.2s ease-out all;
}
header nav .entry_box a:hover {
  background-color: #5FB3BE;
}
header nav .entry_box a::after {
  content: '\f054';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  right: 16px;
  position: absolute;
}

header nav .entry_box .txt:before, header nav .entry_box .txt:after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

header nav .entry_box .txt:before {
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
  left: -20px;
}

header nav .entry_box .txt:after {
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
  right: -20px;
}

header .sp_btn {
  display: none;
}

@media screen and (max-width: 768px) {
  header .sp_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #009389;
    width: 60px;
    height: 60px;
    top: 0;
    right: 0;
    z-index: 9999;
    cursor: pointer;
  }
}
header .zdo_drawer_button {
  background: none;
  border: none;
  padding: 0;
  width: 24px;
  letter-spacing: 0.1em;
  cursor: pointer;
  text-align: center;
  outline: none;
}

header .zdo_drawer_button.active .zdo_drawer_bar1 {
  -webkit-transform: translateY(1px) translateX(6px) rotate(45deg);
          transform: translateY(1px) translateX(6px) rotate(45deg);
}

header .zdo_drawer_button.active .zdo_drawer_bar2 {
  opacity: 0;
  margin: 0 0 9px;
}

header .zdo_drawer_button.active .zdo_drawer_bar3 {
  -webkit-transform: translateX(4px) translateY(0) rotate(-45deg);
          transform: translateX(4px) translateY(0) rotate(-45deg);
}

header .zdo_drawer_button .zdo_drawer_bar {
  display: block;
  height: 3px;
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  background-color: #fff;
}

header .zdo_drawer_button .zdo_drawer_bar.zdo_drawer_bar1 {
  margin: 0 0 6px;
}

header .zdo_drawer_button .zdo_drawer_bar.zdo_drawer_bar2 {
  margin: 0 0 6px;
}

#sp_nav {
  display: none;
}

@media screen and (max-width: 768px) {
  #sp_nav {
    display: none;
    width: 100%;
    -webkit-transition: 0.2s ease-out all;
    transition: 0.2s ease-out all;
    opacity: 0;
    position: fixed;
    top: 60px;
    right: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.6);
    text-align: left;
  }
}
#sp_nav.open {
  opacity: 1;
  display: block;
  height: 100vh;
}

#sp_nav .list {
  margin-bottom: 20px;
}

#sp_nav .list .item a {
  display: block;
  background-color: #009389;
  padding: 11px 15px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  position: relative;
}
#sp_nav .list .item a::after {
  content: '\f054';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  right: 16px;
  position: absolute;
}
@media screen and (max-width: 768px) {
  #sp_nav .list .item a {
    text-decoration: none;
  }
}

#sp_nav .list .item:not(:last-child) a {
  border-bottom: solid 1px #fff;
}

#sp_nav .entry_box {
  width: 87%;
  background-color: #3da18b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 15px 0;
  margin: 0 auto;
}

#sp_nav .entry_box .txt {
  position: relative;
  margin-bottom: 5px;
}

#sp_nav .entry_box .txt img {
  width: 150px;
  height: auto;
}

#sp_nav .entry_box .txt:before, #sp_nav .entry_box .txt:after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.head_title_area {
  height: 230px;
  width: 100%;
  background: #F29E21;
  background: -webkit-gradient(linear, left top, left bottom, from(#F29E21), to(#F17313));
  background: linear-gradient(#F29E21 0%, #F17313 100%);
}
@media screen and (max-width: 768px) {
  .head_title_area {
    background: none;
    height: auto;
    margin-top: 60px;
    position: relative;
  }
}
.head_title_area h1 {
  font-size: 4rem;
  color: #fff;
  font-weight: bold;
  width: 1200px;
  margin: 0 auto;
  text-align: left;
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  .head_title_area h1 {
    font-size: 1.6rem;
    width: 100%;
    padding-top: 0;
  }
}
.head_title_area p {
  width: 1200px;
  text-align: left;
  margin: 0 auto;
  font-family: 'Oswald', sans-serif;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .head_title_area p {
    font-size: 1.1rem;
    width: 100%;
  }
}
.head_title_area .head_sp_img {
  display: none;
}
@media screen and (max-width: 768px) {
  .head_title_area .head_sp_img {
    display: block;
    width: 100%;
  }
}
.head_title_area div {
  content: "";
  height: 230px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .head_title_area div {
    height: auto;
    padding: 9vw 20px;
  }
}

.job_description .head_title_area div {
  background: url("../img/img_head_job_description.png") no-repeat;
  background-size: cover;
}

.our_staff .head_title_area div {
  background: url("../img/img_head_our_staff.png") no-repeat;
  background-size: cover;
}

.internal_activities .head_title_area div {
  background: url("../img/img_head_internal_activities.png") no-repeat;
  background-size: cover;
}

.how_software .head_title_area div {
  background: url("../img/img_head_how_software.png") no-repeat;
  background-size: cover;
}

.company .head_title_area div {
  background: url("../img/img_head_company.png") no-repeat;
  background-size: cover;
}

.familiar_software .head_title_area div {
  background: url("../img/img_head_familiar_software.png") no-repeat;
  background-size: cover;
}

.training_system .head_title_area div {
  background: url("../img/img_head_training_system.png") no-repeat;
  background-size: cover;
}

.entry .head_title_area div {
  background: url("../img/img_head_entry.png") no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .job_description .head_title_area div {
    background: url("../img/img_head_sp_job_description.png") no-repeat;
    background-size: cover;
  }

  .our_staff .head_title_area div {
    background: url("../img/img_head_sp_our_staff.png") no-repeat;
    background-size: cover;
  }

  .internal_activities .head_title_area div {
    background: url("../img/img_head_sp_internal_activities.png") no-repeat;
    background-size: cover;
  }

  .how_software .head_title_area div {
    background: url("../img/img_head_sp_how_software.png") no-repeat;
    background-size: cover;
  }

  .company .head_title_area div {
    background: url("../img/img_head_sp_company.png") no-repeat;
    background-size: cover;
  }

  .familiar_software .head_title_area div {
    background: url("../img/img_head_sp_familiar_software.png") no-repeat;
    background-size: cover;
  }

  .training_system .head_title_area div {
    background: url("../img/img_head_sp_training_system.png") no-repeat;
    background-size: cover;
  }

  .entry .head_title_area div {
    background: url("../img/img_head_sp_entry.png") no-repeat;
    background-size: cover;
  }
}
.breadcrumb {
  font-size: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1200px;
  margin: 10px auto 40px;
  -webkit-box-align: right;
      -ms-flex-align: right;
          align-items: right;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    width: 92%;
  }
}

.contents_area_s {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .contents_area_s {
    width: 92%;
  }
}

.contents_area_s p {
  margin-bottom: 30px;
}

.contents_area_m {
  width: 1200px;
  margin: 0 auto;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .contents_area_m {
    width: 92%;
  }
}

.contents_area_m p {
  margin-bottom: 30px;
}

.basic_table th {
  background: #FDEDE2;
  width: 200px;
  padding: 20px;
  border-top: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .basic_table th {
    display: block;
    width: 100%;
    border: 0;
    padding: 8px 10px;
  }
}
.basic_table td {
  padding: 20px;
  border-top: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
}
@media screen and (max-width: 768px) {
  .basic_table td {
    display: block;
    width: 100%;
    border: 0;
    padding: 15px 0 15px 0;
  }
}

.history span {
  width: 140px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .history span {
    font-weight: bold;
    display: block;
    padding-top: 10px;
  }
}

footer {
  margin-top: 100px;
  position: relative;
}

#page-top {
  position: absolute;
  right: 10px;
  bottom: 20px;
  -webkit-transition: 0.2s all ease-out;
  transition: 0.2s all ease-out;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #page-top {
    width: 25%;
    right: 0;
    bottom: 50px;
  }
}

#page-top:hover {
  bottom: 30px;
}
@media screen and (max-width: 768px) {
  #page-top:hover {
    bottom: 50px;
  }
}

.footer_l_block {
  width: 300px;
  background: #fff;
  color: #222;
  text-align: left;
  padding: 20px;
  height: 400px;
}
@media screen and (max-width: 768px) {
  .footer_l_block {
    width: 100%;
    height: auto;
    background: none;
    padding: 20px 20px 70px;
  }
}

.footer_r_block {
  position: relative;
  width: 860px;
  height: 400px;
  padding-top: 30%;
  /* = height ÷ width × 100 */
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 768px) {
  .footer_r_block {
    padding-top: 100%;
    width: 100%;
    height: auto;
    z-index: 2;
  }
}

.footer_r_block iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

footer.footer_bsc {
  margin-top: 0;
  background: #FEF1E7;
}

footer small {
  width: 100%;
  background: #F17313;
  color: #fff;
  padding: 5px 0;
  display: block;
  position: relative;
  z-index: 2;
  font-size: 1.2rem;
}

.footer_bsc_inner {
  margin: 0 auto;
  width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .footer_bsc_inner {
    width: 100%;
    display: block;
    padding: 0;
  }
}

.foot_company {
  font-weight: bold;
  margin-bottom: 20px;
}

.head_office {
  margin-bottom: 20px;
}

.footer_l_block strong {
  font-weight: bold;
}

.column_2_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 60px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.column_2_box img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .column_2_box {
    display: block;
    margin-bottom: 40px;
  }
  .column_2_box img {
    width: 100%;
    height: auto;
  }
}

.column_2_box_r {
  margin-left: 60px;
  width: 335px;
}
@media screen and (max-width: 768px) {
  .column_2_box_r {
    margin-left: 0;
    width: auto;
  }
}

.ttl_type_01 {
  background: #F17313;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  padding: 5px 0;
}
@media screen and (max-width: 768px) {
  .ttl_type_01 {
    text-align: left;
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding: 8px 10px;
  }
}

.ttl_type_02 {
  border-left: 4px solid #F17313;
  font-size: 2.4rem;
  font-weight: bold;
  padding-left: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .ttl_type_02 {
    padding-left: 10px;
    font-size: 1.8rem;
  }
}

.center_text {
  text-align: center;
}

.center_text_pc {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .center_text_pc {
    text-align: left;
  }
}

.btn_type_01 a {
  background: #009389;
  color: #fff;
  margin: 0 auto;
  padding: 20px;
  display: block;
  width: 320px;
  border-radius: 10px;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  -webkit-transition: 0.2s ease-out all;
  transition: 0.2s ease-out all;
}
@media screen and (max-width: 768px) {
  .btn_type_01 a {
    border-radius: 6px;
    padding: 16px 20px;
    width: 86%;
  }
}
.btn_type_01 a::after {
  content: '\f054';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  right: 16px;
  position: absolute;
}
.btn_type_01 a:hover {
  background: #5FB3BE;
}

.notes {
  font-size: 1.4rem;
  color: #000;
}

.notes.mb0 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px;
}

/**print.css**/
@media print {
  body {
    width: 1300px;
    transform: scale(0.8);
    -moz-transform: scale(0.8);
    -webkit-transform: scale(0.8);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    -webkit-print-color-adjust: exact;
  }

  header {
    position: relative;
  }

  main {
    padding-top: 0;
  }

  .print {
    display: block;
  }

  .noprint {
    display: none;
  }

  .allowance_list li {
    height: 440px;
  }
}
.kv_area {
  background: #FEF1E7;
}
.kv_area img {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .kv_area {
    margin-top: 60px;
  }
}

.banner_area {
  background: url("../img/bg_top_orange.png") repeat-x;
  padding: 100px 0;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .banner_area {
    padding: 40px 0;
  }
}

.banner_list {
  width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.banner_list li:nth-child(3) a,
.banner_list li:nth-child(4) a {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .banner_list li:nth-child(3) a,
  .banner_list li:nth-child(4) a {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .banner_list {
    width: 100%;
    display: block;
  }
}
.banner_list li a {
  width: 580px;
  background: #fff;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  border-radius: 10px;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
  text-decoration: none;
  color: #000;
  -webkit-transition: 0.2s ease-out all;
  transition: 0.2s ease-out all;
}
@media screen and (max-width: 768px) {
  .banner_list li a {
    width: 90%;
    margin: 0 auto 20px;
  }
}
.banner_list li a:hover {
  opacity: 0.6;
}
.banner_list li a .banner_list_photo {
  margin-right: 60px;
}
@media screen and (max-width: 768px) {
  .banner_list li a .banner_list_photo {
    margin-right: 30px;
    width: 34%;
  }
}
.banner_list li a .banner_list_title {
  font-size: 2.3rem;
  font-weight: bold;
  color: #F17313;
}
@media screen and (max-width: 768px) {
  .banner_list li a .banner_list_title {
    font-size: 1.6rem;
  }
}
.banner_list li a .banner_list_text {
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .banner_list li a .banner_list_text {
    font-size: 1.3rem;
  }
}
.banner_list li a .banner_list_icon {
  position: absolute;
  left: 185px;
}
@media screen and (max-width: 768px) {
  .banner_list li a .banner_list_icon {
    left: 28%;
    width: 13%;
  }
}

.top_staff_area {
  background: url("../img/bg_top_staff.png") no-repeat;
  background-size: cover;
  color: #fff;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .top_staff_area {
    padding: 40px 4%;
    background: #67584E;
  }
}
.top_staff_area h2 {
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 4px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top_staff_area h2 {
    font-size: 2.4rem;
    letter-spacing: 0.3rem;
  }
}
.top_staff_area h2::after {
  content: "INTERVIEW";
  font-family: 'Oswald', sans-serif;
  font-weight: bold;
  font-size: 10rem;
  position: absolute;
  left: 0;
  right: 0;
  opacity: 0.1;
  top: 0;
  bottom: 0;
  line-height: 65px;
}
@media screen and (max-width: 768px) {
  .top_staff_area h2::after {
    font-size: 5rem;
    line-height: 40px;
  }
}

.top_staff_area_ttl_en {
  font-family: 'Oswald', sans-serif;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}

.top_staff_area_text {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .top_staff_area_text {
    text-align: left;
  }
}

.top_staff_area ul {
  width: 1080px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .top_staff_area ul {
    width: 90%;
    display: block;
  }
}

.top_staff_area li {
  width: 300px;
}
.top_staff_area li img {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .top_staff_area li img {
    width: 260px;
  }
}
@media screen and (max-width: 768px) {
  .top_staff_area li {
    width: 100%;
    margin-bottom: 40px;
  }
}
.top_staff_area li:last-child {
  margin-bottom: 0;
}

.top_staff_num {
  font-family: 'Oswald', sans-serif;
  font-size: 5.6rem;
  font-weight: bold;
  color: #F17313;
  line-height: 1;
  margin-right: 10px;
  width: 20%;
}
@media screen and (max-width: 768px) {
  .top_staff_num {
    width: auto;
  }
}

.top_staff_name_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
  margin-bottom: 20px;
}

.top_staff_name {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.2;
  width: 80%;
  padding-top: 4px;
}
@media screen and (max-width: 768px) {
  .top_staff_name {
    width: auto;
  }
}
.top_staff_name span {
  font-weight: normal;
  font-size: 1.1rem;
  width: 100%;
}

.top_staff_btn a {
  background: #009389;
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 10px;
  border-radius: 6px;
  position: relative;
  font-weight: bold;
  -webkit-transition: 0.2s ease-out all;
  transition: 0.2s ease-out all;
}
.top_staff_btn a:hover {
  background-color: #5FB3BE;
}

.top_staff_btn a::after {
  content: '\f054';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  right: 16px;
  position: absolute;
}

.link_area {
  background: url(../img/bg_top_orange.png) repeat-x;
  background-size: contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 440px;
}
@media screen and (max-width: 768px) {
  .link_area {
    height: auto;
    display: block;
  }
}

.link_area_l {
  width: 50%;
  background: url(../img/top_l_photo.png);
  background-size: cover;
  background-position: center;
}
.link_area_l img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .link_area_l {
    width: 100%;
    height: 200px;
  }
}

.link_area_r {
  width: 40%;
  background-size: cover;
  padding: 100px 5%;
}
@media screen and (max-width: 768px) {
  .link_area_r {
    width: 100%;
    padding: 40px 5%;
  }
}

.link_area_btn a {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 40px;
  text-align: left;
  padding: 15px;
  position: relative;
  display: block;
  text-decoration: none;
  -webkit-transition: 0.2s ease-out all;
  transition: 0.2s ease-out all;
  max-width: 490px;
}
.link_area_btn a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .link_area_btn a {
    margin-bottom: 20px;
    padding: 12px 15px 12px;
  }
}

.link_area_btn a::after {
  content: '\f054';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  right: 16px;
  top: 25px;
  position: absolute;
  font-size: 3rem;
  color: #F17313;
}
@media screen and (max-width: 768px) {
  .link_area_btn a::after {
    top: 19px;
  }
}

.link_area_btn:last-of-type a {
  margin-bottom: 0;
}

.link_area_btn_en {
  font-size: 1.6rem;
  font-family: 'Oswald', sans-serif;
  font-weight: bold;
  color: #F8B989;
}

.link_area_btn_jp {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1;
  color: #F17313;
}
@media screen and (max-width: 768px) {
  .link_area_btn_jp {
    font-size: 3rem;
  }
}
.link_area_btn_jp span {
  font-size: 3.4rem;
  color: #222;
}
@media screen and (max-width: 768px) {
  .link_area_btn_jp span {
    font-size: 2.4rem;
  }
}

p.left_indent {
  padding-left: 2.5rem;
}
@media screen and (max-width: 768px) {
  p.left_indent {
    padding-left: 1.5rem;
  }
}

.circle_3_list_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .circle_3_list_box {
    display: block;
    border-bottom: 4px solid #ccc;
  }
}

.circle_3_list {
  width: 340px;
  height: 340px;
  border-radius: 340px;
  border: 10px solid #F17313;
  text-align: center;
  padding: 10px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .circle_3_list {
    margin: 0 auto 40px;
  }
}

.circle_3_list img {
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  margin: auto;
}

.contents_area_m .circle_3_list_ttl {
  font-size: 2.4rem;
  font-weight: bold;
  padding-top: 50px;
  color: #F17313;
  margin-bottom: 0;
}

.contents_area_m .circle_3_list_subttl {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid #F17313;
  font-size: 1.5rem;
}

.contents_area_m .circle_3_list_text {
  font-size: 1.4rem;
  text-align: left;
  margin: auto;
  display: inline-block;
}

.job_description_table_box {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .job_description_table_box {
    margin-bottom: 30px;
  }
}

.head_allowance {
  background: #FDEDE2;
  font-size: 3.8rem;
  color: #F17313;
  font-weight: bold;
  text-align: left;
  line-height: 1.6;
  padding: 15px 0 25px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .head_allowance {
    font-size: 1.5rem;
    padding: 15px 4% 15px;
  }
}
.head_allowance span {
  font-size: 5rem;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .head_allowance span {
    font-size: 2.4rem;
    text-decoration: none;
  }
}

.head_allowance_text {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .head_allowance_text {
    width: 100%;
    padding-right: 40%;
  }
}

.head_allowance_img {
  position: absolute;
  right: 3%;
  bottom: -26px;
}
@media screen and (max-width: 768px) {
  .head_allowance_img {
    right: 0;
    width: 40%;
    bottom: -16px;
  }
}

.allowance {
  background: #F17313;
}

.allowance_list {
  width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .allowance_list {
    width: 100%;
  }
}
.allowance_list li {
  width: 260px;
  text-align: left;
  color: #fff;
  position: relative;
  margin-right: 53px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .allowance_list li {
    margin-right: 0;
    width: 80%;
    text-align: center;
  }
  .allowance_list li:last-child {
    margin-bottom: 0;
  }
}
.allowance_list li:nth-child(4) {
  margin-right: 0;
}
.allowance_list .allowance_list_num {
  font-weight: bold;
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  position: absolute;
}
.allowance_list .allowance_list_ttl {
  color: #F17313;
  background: #fff;
  font-weight: bold;
  border-radius: 20px;
  padding: 5px 5px 5px 60px;
  text-align: left;
  position: relative;
  margin-top: -25px;
  margin-bottom: 20px;
}
.allowance_list .allowance_list_text {
  color: #fff;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .allowance_list .allowance_list_text {
    text-align: left;
  }
}
.allowance_list .job_icon {
  position: absolute;
  left: -10px;
  top: -15px;
}

.jobpage_entry_box {
  padding: 60px 0 40px;
}

.how_language_box {
  border-top: 4px solid #ddd;
  padding: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .how_language_box {
    display: block;
    padding: 40px 0 0;
  }
}
.how_language_box::before {
  content: "";
  position: absolute;
  left: 0;
  top: -4px;
  width: 400px;
  height: inherit;
  border-top: 4px solid #009389;
}
.how_language_box h4 {
  font-size: 2.4rem;
  font-weight: bold;
  color: #009389;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}
.how_language_box h4 span {
  font-size: 2.2rem;
  font-weight: bold;
  color: #222;
  margin-left: 20px;
}
.how_language_box dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .how_language_box dl {
    margin-bottom: 40px;
  }
}
.how_language_box dt {
  width: 4em;
}
.how_language_box dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.how_language_box .how_language_box_img {
  margin-left: 60px;
}
@media screen and (max-width: 768px) {
  .how_language_box .how_language_box_img {
    margin-left: 0;
    width: 100%;
  }
}

.bottom_border {
  border-bottom: 4px solid #ddd;
  margin-bottom: 60px;
}

.column_1_box {
  margin-bottom: 60px;
}
.column_1_box strong {
  font-weight: bold;
}

.column_2_box.img_size_l .column_2_box_r {
  width: 400px;
}
@media screen and (max-width: 768px) {
  .column_2_box.img_size_l .column_2_box_r {
    width: 100%;
  }
}

.text_over {
  overflow: auto;
}

@media screen and (max-width: 768px) {
  .contents_area_m.staff_contents_area_m {
    width: 100%;
  }
}

.staff_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .staff_box {
    width: 92%;
    margin: 0 auto;
  }
}
.staff_box li {
  width: 300px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .staff_box li {
    width: 31%;
  }
}
@media screen and (max-width: 768px) {
  .staff_box li img {
    width: 100%;
  }
}
.staff_box li .name_area {
  position: relative;
}
.staff_box li .name_area .name_area_num {
  font-size: 5rem;
  color: #F17313;
  font-weight: bold;
  font-family: 'Oswald', sans-serif;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .staff_box li .name_area .name_area_num {
    font-size: 2rem;
    position: relative;
  }
}
.staff_box li .name_area .name_area_initial {
  font-size: 2.2rem;
  font-weight: bold;
  position: absolute;
  left: 60px;
  top: 20px;
}
@media screen and (max-width: 768px) {
  .staff_box li .name_area .name_area_initial {
    font-size: 1.6rem;
    left: 26px;
    top: 0;
  }
}
.staff_box li .name_area .name_area_join {
  font-size: 1.2rem;
  position: absolute;
  left: 60px;
  top: 50px;
}
@media screen and (max-width: 768px) {
  .staff_box li .name_area .name_area_join {
    font-size: 1rem;
    left: 26px;
    top: 24px;
  }
}
.staff_box li .staff_box_text {
  margin-top: 80px;
  text-align: left;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .staff_box li .staff_box_text {
    display: none;
  }
}

.staff_box li img {
  border: 4px solid #fff;
  border-radius: 300px;
}
.staff_box li img:hover {
  opacity: 1;
  border: 4px solid #F17313;
  border-radius: 300px;
}

.staff_box li.active img {
  border: 4px solid #F17313;
  border-radius: 300px;
}

.staff_contents {
  background: #FEF1E7;
  padding: 50px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .staff_contents {
    padding: 0 0 20px 0;
    margin-bottom: 40px;
  }
}

.head_staff {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .head_staff {
    display: block;
    margin-bottom: 40px;
  }
  .head_staff img {
    width: 100%;
  }
}

.head_staff_inner {
  background: #F17313;
  color: #fff;
  width: 550px;
  padding: 40px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 768px) {
  .head_staff_inner {
    width: 100%;
    padding: 4%;
  }
}
.head_staff_inner img {
  max-width: 100%;
}

.head_staff_img {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.staff_inner_name_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.contents_area_m .staff_inner_num {
  font-size: 7.2rem;
  opacity: 0.5;
  font-weight: bold;
  font-family: 'Oswald', sans-serif;
  margin-bottom: 0;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .contents_area_m .staff_inner_num {
    font-size: 4.6rem;
  }
}

@media screen and (max-width: 768px) {
  .qa_area {
    width: 92%;
    margin: 0 auto;
  }
}

.contents_area_m .staff_inner_initial {
  font-size: 3.9rem;
  font-weight: bold;
  margin-left: 15px;
  line-height: 1.4;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .contents_area_m .staff_inner_initial {
    font-size: 2.2rem;
  }
}
.contents_area_m .staff_inner_initial span {
  font-size: 1.4rem;
  font-weight: 400;
  display: block;
}

.staff_inner_text {
  font-size: 2.2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .staff_inner_text {
    font-size: 1.4rem;
  }
}

.staff_qa_img {
  float: left;
  margin-right: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .staff_qa_img {
    display: none;
  }
}

.contents_area_m .staff_q {
  font-size: 1.8rem;
  color: #F17313;
  font-weight: bold;
  margin-bottom: 15px;
}

.other_staff_box {
  border: 1px solid #F17313;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .other_staff_box {
    display: block;
    margin: 0 auto 40px;
    padding: 20px;
    width: 92%;
  }
}

.other_staff {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 48%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .other_staff {
    width: 100%;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .other_staff:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
.other_staff .other_staff_img {
  width: 200px;
  height: auto;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .other_staff .other_staff_img {
    width: 75%;
  }
}
.other_staff .other_staff_num {
  font-size: 5rem;
  font-weight: bold;
  font-family: 'Oswald', sans-serif;
  color: #F17313;
  margin-bottom: 0;
  margin-right: 15px;
}
@media screen and (max-width: 768px) {
  .other_staff .other_staff_num {
    font-size: 2.2rem;
  }
}
.other_staff .other_staff_initial {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 0;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .other_staff .other_staff_initial {
    font-size: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
}
.other_staff .other_staff_initial span {
  display: block;
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .other_staff .other_staff_initial span {
    display: inline;
    line-height: 1.4;
  }
}
.other_staff .other_staff_name_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .other_staff .other_staff_name_area {
    margin-bottom: 15px;
  }
}
.other_staff .other_staff_btn {
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.other_staff .other_staff_btn a {
  background: #009389;
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 10px;
  border-radius: 6px;
  position: relative;
  font-weight: bold;
  -webkit-transition: 0.2s ease-out all;
  transition: 0.2s ease-out all;
  text-align: center;
  width: 70%;
}
@media screen and (max-width: 768px) {
  .other_staff .other_staff_btn a {
    width: 100%;
  }
}
.other_staff .other_staff_btn a::after {
  content: '\f054';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  right: 16px;
  position: absolute;
}
.other_staff .other_staff_btn a:hover {
  background: #5FB3BE;
}
@media screen and (max-width: 768px) {
  .other_staff .other_staff_text {
    font-size: 1.2rem;
  }
}

.other_staff_box_ttl {
  background: #F17313;
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  padding: 10px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .other_staff_box_ttl {
    width: 92%;
    margin: 0 auto;
    font-size: 1.6rem;
  }
}

.access_area {
  margin-top: 80px;
  text-align: left;
  margin-bottom: 0;
}

.map_wrap {
  position: relative;
  width: 1000px;
  height: 400px;
  margin-bottom: 20px;
  padding-top: 30%;
  /* = height ÷ width × 100 */
}
@media screen and (max-width: 768px) {
  .map_wrap {
    padding-top: 100%;
    width: 100%;
    height: auto;
  }
}

.map_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.training_ex01,
.training_ex02 {
  margin-bottom: 40px;
}
.training_ex01 img,
.training_ex02 img {
  width: 100%;
  height: auto;
}

.training_ex01 h4,
.training_ex02 h4 {
  background: #F17313;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  padding: 5px 10px;
  text-align: center;
}

.ts_arrow {
  text-align: center;
  margin: 0 auto 40px;
  display: block;
}

.ts_fin_box {
  border: 6px solid #F17313;
  text-align: center;
  margin-bottom: 60px;
  padding: 15px 15px 0;
}
.ts_fin_box p {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .ts_fin_box p {
    text-align: left;
  }
}

.ts_fin_box_ttl {
  font-size: 2.4rem;
  font-weight: bold;
  color: #F17313;
}
@media screen and (max-width: 768px) {
  .ts_fin_box_ttl {
    font-size: 2rem;
  }
}

input {
  padding: 10px;
}

.policy_area {
  text-align: left;
}

.contents_area_s p.policy_ttl {
  font-weight: bold;
  margin-bottom: 6px;
}

.center_block_left_text {
  text-align: center;
}
.center_block_left_text p {
  text-align: left;
  display: inline-block;
}
