@charset "UTF-8";
/* reset ----------------------------------- */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: 400;
  background: transparent;
  list-style: none;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

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

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: #171717;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ddd;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

img {
  vertical-align: bottom;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* end_reset ----------------------------------- */
body {
  color: #171717;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  width: 100%;
  font-size: 15px;
  line-height: 1.8em;
}

.sec_inner {
  max-width: 1260px;
  padding: 0 30px;
  width: 100%;
  margin: 0 auto;
}

.sec_inner_s {
  max-width: 1084px;
  padding: 0 30px;
  width: 100%;
  margin: 0 auto;
}

section {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 3em;
}

section p {
  margin-bottom: 2em;
}

@media screen and (max-width: 768px) {
  section {
    font-size: 14px;
  }
  section p {
    margin-bottom: 2em;
  }
}
@media screen and (max-width: 300px) {
  .sec_inner, .sec_inner_s {
    padding: 0 15px;
  }
}
/*---------------------header------------------ */
header {
  max-width: 100%;
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 10;
  padding: 0 15px;
}

.header_in {
  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: relative;
  background-color: #fff;
  border-radius: 20px 20px 20px 20px;
  padding: 0 0 0 20px;
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

.header_in.menu {
  border-radius: 20px 20px 0 0;
  -webkit-transition-delay: 0.0s;
          transition-delay: 0.0s;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

header.fixed .header_in {
  border-radius: 0;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

header.fixed {
  position: fixed;
  top: 0;
  max-width: 100%;
  padding: 0;
}

.logo {
  width: 300px;
  height: 50px;
  padding-top: 4px;
}

.logo h1 {
  display: inline-block;
  width: 160px;
  margin-right: 20px;
}

.logo h1 {
  vertical-align: bottom;
}

.logo span {
  display: inline-block;
  vertical-align: -3px;
  line-height: 1;
  font-weight: 700;
}

.header_in ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header_in ul li.parent,
.header_in ul li.noparent {
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  border-bottom: 3px #fff solid;
  font-size: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header_in ul li.parent:hover,
.header_in ul li.noparent:hover {
  border-bottom: 3px #ff8500 solid;
}

.header_in ul li div {
  font-weight: 700;
  font-size: 18px;
}

.header_in ul li.parent:hover a,
.header_in ul li.noparent:hover a {
  color: #ff8500;
}

.header_in ul li .menu_panel {
  background: #fff;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 20px 45px 25px 45px;
  border-radius: 0 0 20px 20px;
  border-top: 1px #ddd solid;
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.header_in ul li .menu_panel ul {
  display: block;
}

.header_in ul li .menu_panel ul li.item {
  float: left;
  display: inline-block;
  width: 25%;
  padding-left: 25px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url(../images/arrow_ora.svg) left center/10px no-repeat;
}

.header_in ul li .menu_panel ul li.item a {
  position: relative;
  line-height: 35px;
  font-size: 18px;
  font-weight: 400;
  color: #000;
}

.header_in ul li .menu_panel ul li.item a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 2px;
  background-color: #fc8526;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header_in ul li .menu_panel ul li.item a:hover {
  color: #ff8500;
}

.header_in ul li .menu_panel ul li.item a:hover:after {
  width: 100%;
}

#pc_nav > li:not(:last-child) {
  margin-right:5px;
}

header .header_in #pc_nav > li:last-child,
header .header_in #pc_nav > li:last-child > *:first-child{
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

header .header_in #pc_nav > li:last-child {
  background: #fc8526;
  border-radius: 0 20px 20px 0;
  border-bottom: 3px transparent solid;
}

header .header_in #pc_nav > li:last-child > *:first-child {
  color: #fff;
  font-weight: 700;
}

header .header_in #pc_nav:hover > li,
header .header_in #pc_nav > li:hover:last-child > *:first-child {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-duration: 0s;
          transition-duration: 0s;
}

header .header_in.menu #pc_nav > li:last-child {
  border-radius: 0 20px 0 0;
}

header .header_in #pc_nav > li:hover:last-child {
  background: #ffffff;
  border-bottom-color: #ff8500;
}

header .header_in #pc_nav > li:hover:last-child > *:first-child {
  color: #ff8500;
}

header.fixed .header_in #pc_nav > li:last-child {
  border-radius: 0;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

#drawer {
  display: none;
}

@media screen and (max-width: 1412px) {
  .header_in ul li.parent,
  .header_in ul li.noparent {
    padding: 0 5px;
  }
  .header_in ul li.parent:not(:last-child),
  .header_in ul li.noparent:not(:last-child) {
    margin: 0 10px;
  }
  .header_in ul li a {
    font-size: 18px;
  }
}
@media screen and (max-width: 1160px) {
  #pc_nav {
    display: none;
  }
  header {
    width: -webkit-calc(100% - 20px);
    width: calc(100% - 20px);
    top: 10px;
    padding: 0;
  }
  header.fixed {
    width: 100%;
  }
  .header_in {
    border-radius: 10px 10px 10px 10px;
    padding: 8px 15px;
    z-index: 5;
    height: 65px;
  }
  .header_in.menu {
    border-radius: 10px 10px 0 0;
  }
  .logo {
    width: 220px;
    height: auto;
  }
  .logo h1 {
    width: 130px;
    margin-right: 10px;
  }
  .logo h1 img {
    width: 130px;
  }
  .logo span {
    font-size: 13px;
    vertical-align: -2px;
    line-height: 1;
  }
  .hamburg {
    cursor: pointer;
    display: block;
    height: 26px;
    position: relative;
    width: 32px;
  }
  .hamburg .n_bar {
    background: #ff8500;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
    top: -webkit-calc(50% - 1px);
    top: calc(50% - 1px);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
        transform-origin: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .hamburg .n_bar:first-child {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
        transform: translateY(-10px);
  }
  .hamburg .n_bar:last-child {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
        transform: translateY(10px);
  }
  .hamburg.open .n_bar {
    opacity: 0;
  }
  .hamburg.open .n_bar:first-child {
    opacity: 1;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
        transform: rotate(45deg);
  }
  .hamburg.open .n_bar:last-child {
    opacity: 1;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
  }
  #drawer {
    display: none;
    position: absolute;
    top: 100%;
    width: 100%;
    background-color: #fff;
    border-top: 1px #ddd solid;
    padding: 0 20px 20px 20px;
    z-index: 10;
    -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 10px 10px;
  }
  .fixed #drawer {
    border-radius: 0;
  }
  #drawer div.label {
    line-height: 36px;
    padding: 10px 30px 10px 20px;
    font-weight: 700;
    background: url(/ja/recruit/images/arrow_ora.svg) left center/8px no-repeat;
    width: 90%;
    display: inline-block;
  }
  #drawer .trigger {
    width: 10%;
    padding: 10px 0;
    display: inline-block;
    position: relative;
 }
  #drawer div.item_box {
    border-bottom: 1px #ddd solid;
  }
  #drawer div.item_box.draw_home {
    padding: 10px 0;
    font-weight: 700;
    line-height: 36px;
  }
  #drawer div.item_box.draw_home a {
    display: block;
  }
  #drawer .item_box:last-child .label span {
    font-weight:bold;
}
  #drawer div.trigger:before {
    content: "";
    position: absolute;
    top: 13px;
    right: 12px;
    width: 14px;
    height: 1px;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
    background: #ff8100;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  #drawer div.trigger:after {
    content: "";
    position: absolute;
    top: 13px;
    right: 12px;
    width: 14px;
    height: 1px;
    background: #ff8100;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  #drawer div.trigger.open:after {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  #drawer div.trigger.open:before {
    opacity: 0;
  }
  #drawer div.target {
    display: none;
    margin: 0 0 10px 0;
  }
  #drawer div.target .tx_gray {
    display: inline-block;
    margin: 20px 0 10px 0;
  }
  #drawer div.target li {
    padding: 10px 0 10px 30px;
    background: url(/ja/recruit/images/arrow_ora.svg) 10px 50%/8px no-repeat;
    margin-bottom: 5px;
  }

  #drawer .item_box:last-child div.trigger:before,
  #drawer .item_box:last-child div.trigger:after {
    background: white;
    height: 2px;
  }
  #drawer div.trigger .primary {
    background: #ff8100;
    position: absolute;
    top: -5px;
    right: 0;
    width: 39px;
    aspect-ratio: 1 / 1;
    z-index: -1;
    border-radius: 999px;
    border-radius: 999px;
  }
}
/*---------------------footer------------------ */
footer {
  background-color: #000;
  padding: 80px 0 0 0;
}

.footer_in {
  max-width: 1230px;
  margin: 0 auto 80px auto;
  color: #fff;
  padding: 0 15px;
}

.footer_head {
  margin-bottom: 60px;
}

.footer_head img {
  width: 200px;
  vertical-align: -7px;
  margin-right: 15px;
}

.footer_head span {
  display: inline-block;
}

.footer_in .footer_item, .footer_in .footer_ttl {
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #fff;
}

.footer_in ul {
  margin-bottom: 60px;
}

.footer_in ul:last-child {
  margin-bottom: 0;
}

.footer_in ul li {
  margin-bottom: 15px;
}

.footer_in a {
  color: #fff;
  font-size: 14px;
  margin-bottom: 0px;
}

.footer_in a:hover {
  color: #ff8500;
}

.box4 {
  width: 23%;
}

.footer_in .label, .footer_in .trigger, .footer_in .non_trigger {
  display: none;
}

.footer_in .target {
  display: block;
}

.tx_footer {
  background-color: #fff;
  padding: 30px 0;
}

.tx_footer_in {
  max-width: 1260px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  padding: 0 30px;
  line-height: 30px;
}

.tx_footer_in ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tx_footer_in li {
  margin-right: 30px;
}

footer hr {
  border-top: #555 1px solid;
  margin: 50px 0 30px;
}

.othersite {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.othersite li {
  margin-right: 40px;
}

.othersite li a {
  background: url(/ja/recruit/images/outlink.svg) right center/17px no-repeat;
  padding-right: 25px;
}

.out_link {
  background: url(../images/outlink.svg) right center/17px no-repeat;
  padding-right: 25px;
}

.out_link_w {
  background: url(../images/outlink_w.svg) center center/15px no-repeat;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 30px 0 0 0;
  }
  .footer_in {
    width: 100%;
    padding: 0 30px;
    margin: 0 auto 45px auto;
  }
  .footer_head {
    margin-bottom: 40px;
  }
  .footer_in .footer_item {
    display: none;
  }
  .footer_in .footer_ttl {
    font-size: 16px;
    margin-top: 30px;
  }
  .footer_in ul {
    margin: 0;
  }
  .footer_in ul li {
    margin-bottom: 10px;
  }
  .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .box4 {
    position: relative;
  }
  .footer_in .label {
    display: inline-block;
    padding: 15px 0;
    width: 100%;
    border-top: 1px #555 solid;
  }
  .footer_in .label a,
  .footer_in .label {
    font-size: 16px;
    font-weight: 700;
  }
  .footer_in .trigger {
    display: inline-block;
    padding: 20px 0;
    position: absolute;
    width: 14px;
    right: 5px;
  }
  .footer_in .target {
    display: none;
  }
  .box4:last-child {
    border-bottom: 1px #555 solid;
  }
  .footer_in div.trigger:before {
    content: "";
    position: absolute;
    top: 28px;
    right: 0;
    width: 14px;
    height: 1px;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
    background: #555;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .footer_in div.trigger:after {
    content: "";
    position: absolute;
    top: 28px;
    right: 0;
    width: 14px;
    height: 1px;
    background: #555;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .footer_in div.trigger.open:after {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .footer_in div.trigger.open:before {
    opacity: 0;
  }
  .tx_footer {
    padding: 30px 0;
  }
  .tx_footer_in {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .tx_footer_in ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 10px;
  }
  .othersite {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .othersite li {
    margin-right: 0;
  }
}
@media screen and (max-width: 300px) {
  .logo h1 {
    width: 90px;
  }
  .logo h1 img {
    width: 90px;
  }
  .logo span {
    font-size: 10px;
  }
  .footer_in {
    padding: 0 15px;
  }
}
/*------------------------------------------------------------- under -------------------------------------------------------------- */
/*---------------------common------------------ */
.under_top {
  width: 100%;
  aspect-ratio: 36/11;
  background-color: #000;
  position: relative;
}

.top_pic {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.7;
}

.top_box {
  max-width: 1260px;
  padding: 110px 30px 0 30px;
  margin: 0 auto;
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
}

.top_box .sholder {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.under_top h1 {
  text-align: center;
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
  padding-bottom: 20px;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.breadcrumb {
  position: absolute;
  left: 2vw;
  color: #fff;
  font-size: 13px;
  z-index: 3;
  bottom: 1vw;
}
.breadcrumb ol li {
  margin-bottom: 0;
}
.breadcrumb.--nounderwrap {
  color: #000;
  padding: 125px 20px 0;
  position: static;
}
.breadcrumb.--nounderwrap ol li::after {
  color: #FF8500;
}
.breadcrumb.--nounderwrap ol li a {
  color: inherit;
  text-decoration: underline;
}

.breadcrumb ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 0;
}

.breadcrumb ol li {
  list-style: none;
  padding-left: 0;
}

.breadcrumb ol li a {
  color: #fff;
  text-decoration: underline;
}

.breadcrumb ol li:after {
  content: "　»　";
}

.breadcrumb ol li:last-child:after {
  content: "";
}

#work_top {
  padding: 100px 0;
  background-color: #f4f2ef;
  margin-bottom: 0;
}

#work_top .sec_inner {
  margin: 0 auto -50px auto;
}

.panel {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-color: #fff;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 5;
}

.panel:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: -webkit-calc(100% - 8px);
  width: calc(100% - 8px);
  height: -webkit-calc(100% - 8px);
  height: calc(100% - 8px);
  border: 4px #fc8526 solid;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 20px;
  z-index: 6;
  opacity: 0;
}

.panel:hover:after {
  opacity: 1;
}

.panel img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.panel:hover img {
  -webkit-transform: scale(1.1, 1.1);
      -ms-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
}

.panel figure {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.panel_tx {
  padding: 20px 25px;
  font-size: 18px;
}

.panel_tx h2 {
  font-size: 21px;
  font-weight: 700;
  background: url(/ja/recruit/images/arrow_ora.svg) left top 12px/8px no-repeat;
  padding: 0 0 15px 26px;
  line-height: 1.6;
}

.cc_panel {
  display: block;
  width: 100%;
  margin-bottom: 25px;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 5;
}
.cc_panel:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: -webkit-calc(100% - 8px);
  width: calc(100% - 8px);
  height: -webkit-calc(100% - 8px);
  height: calc(100% - 8px);
  border: 4px #fc8526 solid;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 20px;
  z-index: 6;
  opacity: 0;
}

.cc_panel:hover:after {
  opacity: 1;
}
.cc_panel:hover img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cc_panel figure {
  aspect-ratio: 15/10;
  overflow: hidden;
}
.cc_panel:hover img {
  -webkit-transform: scale(1.1, 1.1);
      -ms-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
}

.interview-panel {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-color: #fff;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 5;
}
.interview-panel:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: -webkit-calc(100% - 8px);
  width: calc(100% - 8px);
  height: -webkit-calc(100% - 8px);
  height: calc(100% - 8px);
  border: 4px #fc8526 solid;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 20px;
  z-index: 6;
  opacity: 0;
}
.interview-panel:hover:after {
  opacity: 1;
}
.interview-panel img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.interview-panel:hover img {
  -webkit-transform: scale(1.1, 1.1);
      -ms-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
}
.interview-panel figure {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.interview-panel .interview-panel_tx {
  padding: 20px 25px;
  font-size: 18px;
}
.interview-panel .interview-panel_tx h2 {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.6;
}
.interview-panel .interview-panel_tx .interview-panel_title {
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 20px;
}
.interview-panel .interview-panel_tx .interview-panel_person {
  font-size: 15px;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.interview-panel .interview-panel_year {
  font-size: 12px;
  color: #777;
  margin-top: 5px;
}

#work_top .box3 {
  margin-bottom: 55px;
}

#under_link {
  background-color: #f4f2ef;
  padding: 80px 0;
  margin-bottom: 0;
}

.btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btns.--anchor {
  margin-bottom: 80px;
}
.btns.--wrap {
  flex-wrap: wrap;
  gap: 20px;
}
.btns.--wrap .btns_item {
  margin-right: 0;
  flex: 0 0 32%;
}
@media (max-width: 768px) {
  .btns.--anchor {
    display: block;
    margin-bottom: 40px;
  }
  .btns.--anchor p,
  .btns.--anchor li {
    height: 60px !important;
    margin-right: 0;
    margin-top: 6%;
    width: 100%;
  }
  .btns.--anchor p:first-child,
  .btns.--anchor li:first-child {
    margin-top: 0;
  }
  .btns.--anchor .btns_item a span {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .btns.--single p,
  .btns.--single li {
    height: 60px;
    width: 80%;
  }
  .btns.--single .btns_item a span {
    font-size: 16px;
  }
}

.btns p,
.btns li {
  width: 48%;
  display: block;
  height: 80px;
  margin-right: 4%;
}

.btns .btns_item:last-child {
  margin-right: 0;
}

.btns .btns_item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 20px;
  text-align: center;
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 100%;
  z-index: 8;
}

.btns .btns_item a span {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  z-index: 9;
}

.btns .btns_item a span i {
  background-color: #fc8526;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  position: absolute;
  right: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.btns .btns_item a span i:not(.out_link_w)::before {
  border-bottom: 3px solid #fff;
  border-left: 3px solid #fff;
  content: "";
  height: 8px;
  width: 8px;
  position: absolute;
  left: 10px;
  top: 8px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.btns .btns_item a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 7;
  width: 0%;
  height: 100%;
  background-color: #fc8526;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
}

.btns .btns_item a:hover:before {
  width: 100%;
}

.btns .btns_item a:hover span {
  color: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.btns .annotation {
  position: relative;
}

.btns .annotation .annotation_txt {
  position: absolute;
  bottom: 8px;
  font-weight: normal;
  font-size: 66% !important;
  color: #4e4e4e;
}

.box2.icon_box {
  border: 1px #ccc solid;
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 60px;
}

.icon_box figure {
  text-align: center;
}

.enviro_icon {
  width: 72px;
  margin-bottom: 15px !important;
}

.icon_box h2 {
  text-align: center;
}

@media screen and (max-width: 1160px) {
  .top_box {
    padding: 75px 30px 0 30px;
  }
  .top_box .sholder {
    font-size: 15px;
    margin-bottom: 5px;
  }
  .under_top h1 {
    font-size: 24px;
    line-height: 40px;
  }
  .breadcrumb.--nounderwrap {
    padding-top: 100px;
  }
}
@media screen and (max-width: 768px) {
  .under_top {
    width: 100%;
    aspect-ratio: 75/56;
  }
  .top_work {
    background: url(/ja/recruit/images/header_work.jpg) center/cover no-repeat;
  }
  #work_top {
    padding: 55px 0;
  }
  #work_top .box3, #work_top .box3:nth-last-child(-n+3) {
    margin-bottom: 30px;
  }
  .breadcrumb {
    left: 0px;
    bottom: 0px;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(6px);
    padding-left: 10px;
    overflow-x: scroll;
  }
  .breadcrumb ol li {
    white-space: nowrap;
    font-size: 10px;
  }
  .breadcrumb.--nounderwrap {
    padding-top: 85px;
    background-color: transparent;
    overflow-x: auto;
  }
  .panel_tx h2 {
    font-size: 20px;
  }
  #under_link {
    padding: 40px 0;
  }
  #under_link .btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #under_link .btns li {
    width: 100%;
    margin-bottom: 30px;
  }
  .btns .btns_item a span {
    font-size: 18px;
  }
  .box2.icon_box {
    padding: 25px;
    margin-bottom: 30px;
  }
  .icon_box .notes {
    font-size: 12px;
  }
}
@media screen and (max-width: 300px) {
  .under_top h1 {
    font-size: 20px;
    line-height: 28px;
  }
  .top_box .sholder {
    font-size: 12px;
    margin-bottom: 0;
  }
}
/*---------------------anchorbox------------------ */
.anchorbox {
  margin-top: -100px;
  padding-top: 100px;
}

/*---------------------business------------------ */
.business_structure_img {
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .business_structure_img {
    margin-bottom: 24px;
  }
}
.business_structure_img picture {
  display: block;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 0;
}
.business_structure_img picture img {
  margin-bottom: 0 !important;
  vertical-align: bottom;
}
.business_structure_img ul li {
  font-size: 0;
  line-height: 0;
  border-radius: 100px;
  overflow: hidden;
  text-align: left;
  text-indent: -9999px;
  padding-top: 47px;
  width: 426px;
  position: absolute;
  left: 300px;
  z-index: 1;
}
.business_structure_img ul li:nth-child(5), .business_structure_img ul li:nth-child(6) {
  top: 602px;
  width: 346px;
}
.business_structure_img ul li:nth-child(1) {
  top: 47px;
}
.business_structure_img ul li:nth-child(2) {
  top: 172px;
}
.business_structure_img ul li:nth-child(3) {
  top: 297px;
}
.business_structure_img ul li:nth-child(4) {
  top: 450px;
}
.business_structure_img ul li:nth-child(5) {
  left: 114px;
}
.business_structure_img ul li:nth-child(6) {
  left: 566px;
}
@media (max-width: 1108px) {
  .business_structure_img ul li {
    padding-top: 4.58984375%;
    width: 41.6015625%;
    left: 29.296875%;
  }
  .business_structure_img ul li:nth-child(5), .business_structure_img ul li:nth-child(6) {
    top: 79.8408488064%;
    width: 33.7890625%;
  }
  .business_structure_img ul li:nth-child(1) {
    top: 6.2334217507%;
  }
  .business_structure_img ul li:nth-child(2) {
    top: 22.8116710875%;
  }
  .business_structure_img ul li:nth-child(3) {
    top: 39.3899204244%;
  }
  .business_structure_img ul li:nth-child(4) {
    top: 59.6816976127%;
  }
  .business_structure_img ul li:nth-child(5) {
    left: 11.1328125%;
  }
  .business_structure_img ul li:nth-child(6) {
    left: 55.2734375%;
  }
}
@media (max-width: 768px) {
  .business_structure_img ul li {
    padding-top: 7.2%;
    width: 49.0666666667%;
    left: 26.2666666667%;
  }
  .business_structure_img ul li:nth-child(5), .business_structure_img ul li:nth-child(6) {
    top: 80.6729939603%;
    width: 34.8%;
  }
  .business_structure_img ul li:nth-child(1) {
    top: 5.3494391717%;
  }
  .business_structure_img ul li:nth-child(2) {
    top: 21.7428817947%;
  }
  .business_structure_img ul li:nth-child(3) {
    top: 39.603106126%;
  }
  .business_structure_img ul li:nth-child(4) {
    top: 62.726488352%;
  }
  .business_structure_img ul li:nth-child(5) {
    left: 12.8%;
  }
  .business_structure_img ul li:nth-child(6) {
    left: 54.9333333333%;
  }
}
.business_structure_img ul li a {
  background-color: rgba(255, 255, 255, 0);
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media (min-width: 769px) {
  .business_structure_img ul li a:hover {
    background-color: rgba(255, 255, 255, 0.4);
  }
}

/*---------------------faq------------------ */
#faq_contents {
  margin-bottom: 0;
  padding: 80px 0;
}
@media (max-width: 768px) {
  #faq_contents {
    padding: 50px 0;
  }
}

.faq {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .faq {
    margin-bottom: 30px;
  }
}
.faq:last-child {
  margin-bottom: 0;
}
.faq > div {
  border-bottom: 1px solid #D6CEC7;
  padding: 30px 0;
}
.faq > div dt,
.faq > div dd {
  padding-right: 37px;
  position: relative;
}
.faq > div dt::before,
.faq > div dd::before {
  background: no-repeat 50% 50%;
  height: 37px;
  width: 30px;
  position: absolute;
  left: 0;
  top: 0;
}
.faq > div dt {
  cursor: pointer;
  font-weight: 700;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.faq > div dt::before {
  background-image: url(../images/icon_q.svg);
}
.faq > div dt i {
  display: block;
  height: 37px;
  width: 37px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.faq > div dt i::after, .faq > div dt i::before {
  background-color: #fc8526;
  content: "";
  height: 2px;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.faq > div dt i::after {
  -webkit-transform: rotate(90deg) translate(-50%, -50%);
      -ms-transform: rotate(90deg) translate(-50%, -50%);
          transform: rotate(90deg) translate(-50%, -50%);
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.faq > div dt.open {
  margin-bottom: 30px;
}
.faq > div dt.open i::after {
  -webkit-transform: rotate(-180deg) translate(-50%, -50%);
      -ms-transform: rotate(-180deg) translate(-50%, -50%);
          transform: rotate(-180deg) translate(-50%, -50%);
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
}
.faq > div dd {
  display: none;
}
.faq > div dd::before {
  background-image: url(../images/icon_a.svg);
}
.faq > div dd a {
  color: #ff8500;
  text-decoration: underline;
}
@media (min-width: 769px) {
  .faq > div dd a:hover {
    text-decoration: none;
  }
}
@media (max-width: 768px) {
  .faq > div {
    padding: 20px 0;
  }
  .faq > div dt,
  .faq > div dd {
    min-height: 24px;
  }
  .faq > div dt::before,
  .faq > div dd::before {
    background-size: auto 100%;
    height: 24px;
    width: 20px;
  }
  .faq > div dt {
    padding-right: 36px;
  }
  .faq > div dt i {
    height: 24px;
    width: 24px;
  }
  .faq > div dt.open {
    margin-bottom: 20px;
  }
}

/*---------------------main_contents------------------ */
.main_contents {
  margin-bottom: 0;
  padding: 80px 0;
}
@media (max-width: 768px) {
  .main_contents {
    padding: 50px 0;
  }
}

/*---------------------hc------------------ */
ol.shapes {
  font-size: 13px;
  margin: 20px 0 40px;
}

.shapes {
  gap: 10vw;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 1em;
}
.shapes > li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5em;
  margin: 0;
}
.shapes.flex li {
  margin: 0;
}
.shapes > li .shapewrapper .circle {
  background: #ff8500;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  color: white;
  position: relative;
  aspect-ratio: 1/1;
  font-size: min(22px,3vw);
}
.shapes > li:not(:last-child) .circle::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 50%;
  background: #ffc7ac;
  right: -3.25vw;
  top: 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: left bottom;
      -ms-transform-origin: left bottom;
          transform-origin: left bottom;
  z-index: -2;
}
.shapes > li:not(:last-child) .circle::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: white;
  top: 0;
  right: -3.75vw;
}
.shapes .text ol {
  list-style-type: decimal;
  margin: 0 0 8px 24px;
}
.shapes .text p {
  margin: 0;
  padding: 0;
}
.shapes .text p:not(:last-child) {
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .shapes {
    padding: 0;
  }
  .shapes > li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1em;
  }
  .shapes > li > * {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .shapes > li .circle {
    line-height: 1;
  }
  .shapes > li .text {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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;
  }
  .shapes > li:not(:last-child) .circle::before {
    right: 0;
    top: auto;
    bottom: -1vw;
    -webkit-transform-origin: left top;
        -ms-transform-origin: left top;
            transform-origin: left top;
  }
  .shapes > li:not(:last-child) .circle::after {
    right: auto;
    top: auto;
    bottom: -3.25vw;
  }
}

/*---------------------layout------------------ */
#contents {
  padding: 80px 0;
}

*[class^=lv1] {
  font-size: 32px;
  font-weight: 700;
  line-height: 46px;
  margin-bottom: 1.4em;
}

*[class^=lv2] {
  font-size: 26px;
  font-weight: 700;
  line-height: 39px;
  margin-bottom: 1.2em;
}

*[class^=lv3] {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 1.1em;
}

*[class^=lv4] {
  font-size: 19px;
  font-weight: 700;
  line-height: 27px;
  margin-bottom: 1em;
}

*[class^=lv5] {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 1em;
}

*[class$=_vline] {
  border-left: 3px #ff8500 solid;
  padding-left: 1em;
}

*[class$=_gline] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

*[class$=_gline]:after {
  content: "";
  border-top: #ddd 1px solid;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-left: 1em;
}

ol li::marker {
  font-weight: 700;
  color: #ff8500;
}

#contents .btns li {
  width: 48%;
  display: block;
  height: 80px;
}

#contents img {
  margin-bottom: 2em;
}

@media screen and (max-width: 768px) {
  #contents {
    padding: 50px 0;
    margin-bottom: 0;
  }
  *[class^=lv1] {
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 1.4em;
  }
  *[class^=lv2] {
    font-size: 19px;
    font-weight: 700;
    line-height: 27px;
    margin-bottom: 1.2em;
  }
  *[class^=lv3] {
    font-size: 15px;
    font-weight: 700;
    line-height: 22px;
    margin-bottom: 1.1em;
  }
  *[class^=lv4] {
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    margin-bottom: 1em;
  }
  #contents .btns li {
    width: 100%;
  }
}
figure img.radius {
  border-radius: 16px;
  overflow: hidden;
  vertical-align: bottom;
  margin-bottom: 15px;
}

/*---------------------2column in whtbase------------------ */
.half_box {
  margin-bottom: 30px;
}

.half_box:last-child {
  margin-bottom: 0;
}

.icon_ttl {
  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;
  margin-bottom: 30px;
}

img.icon_ttl_img {
  width: 50px;
  height: 50px;
  margin-bottom: 0 !important;
}

.icon_ttl h3 {
  white-space: nowrap;
  margin: 0 15px;
}

.half_box .line {
  margin: 0;
  width: auto;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.half_box img {
  border-radius: 0;
}

.line {
  display: inline-block;
  background-color: #ff8500;
  height: 1px;
  margin: 15px 15px 0 15px;
  width: 100%;
}

/*---------------------interView------------------ */
#interview .box3 h2 {
  background: none;
  padding: 0;
}

#interview .box3 h2 .title {
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 20px;
}

#interview .box3 h2 .person {
  font-size: 15px;
  font-weight: 700;
  display: block;
  line-height: 1;
}

#interview .box3 .year, .int_box .year {
  font-size: 12px;
  color: #777;
  margin-top: 5px;
}

#interview_under .top_box .sholder {
  font-size: 48px;
}

#interview_under .under_top h1 {
  font-size: 32px;
}

@media screen and (max-width: 768px) {
  #interview_under .top_box .sholder {
    font-size: 28px;
  }
  #interview_under .under_top h1 {
    font-size: 16px;
  }
}
/*---- under_int_sldr ----- */
#int_under_box {
  position: relative;
}

#int_under_box .int_box {
  padding: 0 24px;
}

#int_under_box .int_inner {
  max-width: 1132px;
  padding: 0 30px;
  width: 100%;
  margin: 0 auto;
}

.int_box figure {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}

.int_box h3 span.title {
  display: block;
  font-size: 19px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.int_box:hover h3 span.title {
  color: #ff8500;
}

.int_box h3 span.person {
  font-size: 15px;
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
  line-height: 1;
}

.int_box figure:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: -webkit-calc(100% - 8px);
  width: calc(100% - 8px);
  height: -webkit-calc(100% - 8px);
  height: calc(100% - 8px);
  z-index: 100;
  border-radius: 20px;
  border: 4px #ff8500 solid;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.int_box:hover figure:after {
  opacity: 1;
}

.int_box figure img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.int_box:hover figure img {
  -webkit-transform: scale(1.1, 1.1);
      -ms-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
}

.int-next {
  position: absolute;
  top: 75px;
  right: -5px;
  -webkit-filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  z-index: 9;
}

.int-prev {
  position: absolute;
  top: 75px;
  left: -5px;
  -webkit-filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  z-index: 9;
}

.int-next:hover {
  -webkit-transform: scale(1.1, 1.1);
      -ms-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
  cursor: pointer;
}

.int-next img, .int-prev img {
  width: 55px;
}

.other_int {
  max-width: 1024px;
  font-size: 22px;
  font-weight: 700;
  margin: 0 auto 24px auto;
  padding-left: 30px;
  background: url(../images/arrow_ora.svg) left center/14px no-repeat;
}

@media screen and (max-width: 1280px) and (min-width: 768px) {
  .interview_in {
    width: 100%;
    padding: 0 15px;
  }
  .other_int {
    margin: 0 30px 24px 30px;
  }
  #int_under_box .int_inner {
    padding: 0;
  }
  .int-next {
    top: 100px;
    right: 20px;
  }
  .int-prev {
    top: 100px;
    left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .interview {
    padding: 40px 0;
  }
  .interview_in {
    width: 100%;
  }
  .interview_in a.index_top {
    width: -webkit-calc(100% - 50px);
    width: calc(100% - 50px);
    margin: 0 25px 20px 25px;
  }
  .int_box h3 span.title {
    font-size: 18px;
  }
  .int_box h3 span.person {
    font-size: 12px;
  }
  .int-next {
    top: 90px;
    right: 10px;
  }
  .int-prev {
    top: 90px;
    left: 10px;
  }
  .int-next img, .int-prev img {
    width: 40px;
  }
  #int_under_box .int_box {
    padding: 0 10px;
  }
  #int_under_box .int_inner {
    padding: 0;
  }
  .other_int {
    margin: 0 30px 24px 30px;
  }
}
.interview-detail section::after {
  clear: both;
  content: "";
  display: block;
}
.interview-detail img {
  max-width: 100%;
}
.interview-detail figure img {
  border-radius: 16px;
}
.interview-detail .interview-detail_profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .interview-detail .interview-detail_profile {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 24px 0;
    margin-bottom: 48px;
  }
}
.interview-detail .interview-detail_profile .interview-detail_profile_img {
  max-width: 480px;
  text-align: center;
}
@media (max-width: 768px) {
  .interview-detail .interview-detail_profile .interview-detail_profile_img {
    max-width: initial;
  }
}
.interview-detail .interview-detail_profile .interview-detail_profile_img img {
  border-radius: 16px;
}
.interview-detail .interview-detail_profile .interview-detail_profile_text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.interview-detail .interview-detail_profile .interview-detail_profile_text p:last-child {
  margin-bottom: 0;
}
.interview-detail .interview-detail_profile .interview-detail_profile_title {
  margin-bottom: 32px;
  padding-bottom: 32px;
  position: relative;
}
@media (max-width: 768px) {
  .interview-detail .interview-detail_profile .interview-detail_profile_title {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
.interview-detail .interview-detail_profile .interview-detail_profile_title::after, .interview-detail .interview-detail_profile .interview-detail_profile_title::before {
  background-color: #D6CEC7;
  content: "";
  height: 3px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.interview-detail .interview-detail_profile .interview-detail_profile_title::after {
  background-color: #FC8526;
  width: 72px;
}
.interview-detail .interview-detail_profile .interview-detail_profile_title p {
  color: #ff8500;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .interview-detail .interview-detail_profile .interview-detail_profile_title p {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
.interview-detail .interview-detail_profile .interview-detail_profile_title h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.46;
}
.interview-detail .interview-detail_profile .interview-detail_profile_title h1 span {
  display: block;
  font-size: 20px;
  font-weight: 400;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .interview-detail .interview-detail_profile .interview-detail_profile_title h1 {
    font-size: 22px;
  }
  .interview-detail .interview-detail_profile .interview-detail_profile_title h1 span {
    font-size: 16px;
  }
}
.interview-detail .interview-detail_profile .interview-detail_profile_job {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
}

/* -------------------------- minilist -------------------------------- */
ul.mini {
  margin: 0 0 20px 15px;
}

ul.mini li {
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 8px;
}

@media screen and (max-width: 768px) {
  ul.mini {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  ul.mini li {
    width: 33%;
  }
}
/* -------------------------- scrollhint -------------------------------- */
.scroll-hint-text {
  margin-top: 0 !important;
}

.scroll_pc {
  width: 1600px;
}

.scroll_sp {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .scroll_sp, .scroll_pc {
    width: 900px;
  }
}
/*---------------------overlay------------------ */
#overlay {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 9;
  display: none;
}

#overlay.open {
  display: block;
}

/*--------------------- table ------------------ */
table.normal {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px #ddd solid;
}

table.normal th {
  width: 15%;
  padding: 30px 20px;
  border-bottom: 1px #ddd solid;
  font-weight: 700;
  text-align: left;
}

table.normal td {
  width: 85%;
  padding: 20px 30px;
  border-bottom: 1px #ddd solid;
}

@media screen and (max-width: 768px) {
  table.normal th {
    display: block;
    width: 100%;
    padding: 15px 5px 0 5px;
    border-bottom: 0;
  }
  table.normal td {
    display: block;
    width: 100%;
    padding: 10px 5px 15px 5px;
  }
}
/*---------------------aside------------------ */
.aside { font-size: 14px; margin-top: 10em; }
.aside .aside_inner {
    background: #eee;
    padding: 3em;
    border-radius: 20px;
}
.aside a {
    text-decoration:underline;
}

/* -------------------------- module -------------------------------- */
.for_pc {
  display: block !important;
}

.for_sp {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .for_sp {
    display: block !important;
  }
  .for_pc {
    display: none !important;
  }
}
.center {
  text-align: center !important;
}

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

.b, b {
  font-weight: 700 !important;
}

.img_right {
  float: right;
  width: 30%;
  margin: 0 0 30px 40px;
}

@media screen and (max-width: 768px) {
  .img_right {
    width: 45%;
    margin: 0 0 0 15px;
  }
}
.img_left {
  float: left;
  width: 30%;
  margin: 0 40px 30px 0;
}

@media screen and (max-width: 768px) {
  .img_left {
    width: 45%;
    margin: 0 15px 0 0;
  }
}
.img_right_s {
  float: right;
  width: 20%;
  margin: 0 0 30px 40px;
}

@media screen and (max-width: 768px) {
  .img_right_s {
    width: 35%;
    margin: 0 0 0 15px;
  }
}
.img_left_s {
  float: left;
  width: 20%;
  margin: 0 40px 30px 0;
}

@media screen and (max-width: 768px) {
  .img_left_s {
    width: 35%;
    margin: 0 15px 0 0;
  }
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

ul.disc {
  margin-left: 20px;
}

ul.disc li {
  list-style: disc;
}

ol {
  margin-left: 20px;
}

ol li {
  list-style-type: decimal;
  margin-bottom: 5px;
  padding-left: 10px;
}

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

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

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

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

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

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mv40 {
  margin-bottom: 40px;
  margin-top: 40px;
}

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

.mt-20 {
  margin-top: -20px !important;
}

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

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

.mt60 {
  margin-top: 60px !important;
}

.fs16 {
  font-size: 16px;
  line-height: 1.4;
}

.fs18 {
  font-size: 18px;
  line-height: 1.4;
}

.fs20 {
  font-size: 20px;
  line-height: 1.4;
}

.fs32 {
  font-size: 32px;
  line-height: 1.4;
}

.fs32_24 {
  font-size: 32px;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  .fs32_24 {
    font-size: 24px;
  }
}
.color_ora {
  color: #ff8500;
}

.notes {
  font-size: 14px;
  color: #777;
  display: block;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .notes {
    font-size: 12px;
  }
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-around;
}

.flex_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.box2 {
  width: 35%;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .box2 {
    width: 100%;
  }
}
.box3 {
  width: 30.5%;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .box3 {
    width: 100%;
    margin-bottom: 0;
  }
}
.box3_m0 {
  width: 31%;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .box3 {
    width: 100%;
    margin-bottom: 0;
  }
}
.box4 {
  width: 23%;
}

@media screen and (max-width: 768px) {
  .box4 {
    width: 100%;
  }
}
.box_21_1 {
  width: 32%;
}

@media screen and (max-width: 768px) {
  .box_21_1 {
    width: 100%;
  }
}
.box_21_2 {
  width: 65%;
}

@media screen and (max-width: 768px) {
  .box_21_2 {
    width: 100%;
  }
}
.box_31_1 {
  width: 23%;
}

@media screen and (max-width: 768px) {
  .box_31_1 {
    width: 100%;
  }
}
.box_31_3 {
  width: 74%;
}

@media screen and (max-width: 768px) {
  .box_31_3 {
    width: 100%;
  }
}
.fx_mid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.gray_bg {
  background-color: #eee;
  padding: 15px 20px;
  border-radius: 20px;
  margin-bottom: 40px;
}

.gray_bdr {
  border: 2px #ddd solid;
  padding: 20px 20px;
  border-radius: 20px;
  margin-bottom: 40px;
}

.outlink {
  font-size: inherit;
  font-weight: inherit;
}

.outlink:after {
  content: "";
  padding-right: 24px;
  background: url(/ja/recruit/images/outlink.svg) right center/14px 14px no-repeat;
}

.tx_gray {
  color: #aaa;
}

.img_full {
  width: 100%;
}

.img_max {
  max-width: 100%;
}

.img_fit {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
  object-position: top;
}

figcaption {
  font-size: 14px;
  color: #777;
  display: block;
  margin: -25px 0 10px 0;
}

.no_radius {
  border-radius: 0 !important;
}

.pdf {
  display: inline-block;
  background: url(/ja/images/index2/pdf2.svg) left center/20px 20px no-repeat;
  padding-left: 28px;
  line-height: 1.5rem;
  color: #369;
}

a.n_link {
  color: #369;
  display: inline-block;
}

a.n_link:hover {
  color: #ff8500;
}

.ind30 {
  padding-left: 30px;
}

.nowrap {
  white-space: nowrap;
}

.w10 {
  width: 10%;
}

.w15 {
  width: 15%;
}

.w20 {
  width: 20%;
}

.w30 {
  width: 30%;
}

.w50 {
  width: 50%;
}

.w60 {
  width: 60%;
}

.w30_50 {
  width: 30%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .w30_50 {
    width: 50%;
  }
}
.w30_100 {
  width: 30%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .w30_100 {
    width: 100%;
  }
}
.w50_100 {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .w50_100 {
    width: 100%;
  }
}
.w65_100 {
  width: 65%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .w65_100 {
    width: 100%;
  }
}
.w80_100 {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .w80_100 {
    width: 100%;
  }
}
.w90_100 {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .w90_100 {
    width: 100%;
  }
}