@charset "UTF-8";
/*default*/
.att {
  padding-left: 1em;
  text-indent: -1em;
}

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

/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, height 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, height 0.2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, width 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, width 0.2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}
:root {
  --offset: 20vw;
  --move-initial: calc(-25% + var(--offset));
  --move-final: calc(-50% + var(--offset));
}

.bg_image {
  --offset: 20vw;
  --move-initial: calc(-25% + var(--offset));
  --move-final: calc(-50% + var(--offset));
}

*::-ms-backdrop, :root {
  --move-initial: 50vw;
  --move-final: -150vw;
}

.marquee {
  width: 100vw;
  overflow: hidden;
}

.marquee__inner {
  width: 100%;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: space-between;
  position: relative;
  transform: translate3d(var(--move-initial), 0, 0);
  animation: marquee 20s linear infinite;
  -webkit-animation: marquee 20s linear infinite;
}
.marquee__inner span {
  display: block;
  width: 100vw;
  margin: 0 3rem;
  flex-shrink: 0;
}
.marquee__inner.life01 span {
  width: 80vw;
}
@media only screen and (max-width: 768px) {
  .marquee__inner.life01 span {
    width: 100vw;
  }
}
.marquee__inner.life02 span {
  width: 65vw;
}
@media only screen and (max-width: 768px) {
  .marquee__inner.life02 span {
    width: 100vw;
  }
}
.marquee__inner.rezi04 span {
  width: 50vw;
}
@media only screen and (max-width: 768px) {
  .marquee__inner.rezi04 span {
    width: 100vw;
  }
}
.marquee__inner.rezi05 span {
  width: 40vw;
}
@media only screen and (max-width: 768px) {
  .marquee__inner.rezi05 span {
    width: 80vw;
  }
}

*::-ms-backdrop, .marquee__inner {
  width: 800vw;
  margin: 0;
  animation: marquee_ie 20s linear infinite;
  -webkit-animation: marquee_ie 20s linear infinite;
}
*::-ms-backdrop span, .marquee__inner span {
  display: block;
  width: 500px;
  margin: 0;
}

@keyframes marquee_ie {
  0% {
    transform: translate3d(0vw, 0, 0);
  }
  100% {
    transform: translate3d(-150vw, 0, 0);
  }
}
@keyframes marquee {
  0% {
    transform: translate3d(var(--move-initial), 0, 0);
  }
  100% {
    transform: translate3d(var(--move-final), 0, 0);
  }
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes loop3 {
  0% {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes loop4 {
  0% {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0);
  }
}
div.insefa {
  width: 100%;
  overflow: hidden;
  display: flex;
}

.text {
  margin: 0 1rem;
  animation: flowing 40s linear infinite;
  transform: translateX(0%); /*初期位置*/
}

@keyframes flowing {
  100% {
    transform: translateX(-100%);
  }
}
/*! locomotive-scroll v4.1.1 | MIT License | https://github.com/locomotivemtl/locomotive-scroll */
html.has-scroll-smooth {
  overflow: hidden;
}

html.has-scroll-dragging {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.has-scroll-smooth body {
  overflow: hidden;
}

.has-scroll-smooth [data-scroll-container] {
  min-height: 100vh;
}

[data-scroll-direction=horizontal] [data-scroll-container] {
  height: 100vh;
  display: inline-block;
  white-space: nowrap;
}

[data-scroll-direction=horizontal] [data-scroll-section] {
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  height: 100%;
}

.c-scrollbar {
  position: absolute;
  right: 0;
  top: 0;
  width: 11px;
  height: 100%;
  transform-origin: center right;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0;
}

.c-scrollbar:hover {
  transform: scaleX(1.45);
}

.c-scrollbar:hover, .has-scroll-dragging .c-scrollbar, .has-scroll-scrolling .c-scrollbar {
  opacity: 1;
}

[data-scroll-direction=horizontal] .c-scrollbar {
  width: 100%;
  height: 10px;
  top: auto;
  bottom: 0;
  transform: scaleY(1);
}

[data-scroll-direction=horizontal] .c-scrollbar:hover {
  transform: scaleY(1.3);
}

.c-scrollbar_thumb {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #000;
  opacity: 0.5;
  width: 7px;
  border-radius: 10px;
  margin: 2px;
  cursor: grab;
}

.has-scroll-dragging .c-scrollbar_thumb {
  cursor: grabbing;
}

[data-scroll-direction=horizontal] .c-scrollbar_thumb {
  right: auto;
  bottom: 0;
}

main section.novisual_header {
  text-align: center;
  padding: 5rem 0 0 0;
}
@media only screen and (max-width: 768px) {
  main section.novisual_header {
    padding: 3rem 0 0 0;
  }
}
main section.visual_header {
  min-height: 500px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  main section.visual_header {
    min-height: 300px;
  }
}
main section.visual_header .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  text-align: left;
  width: 100%;
  padding: 0 0 0 5vw;
  max-width: 1400px;
  margin: auto;
}
main section.visual_header .title h1 {
  font-size: 4rem;
}
@media only screen and (max-width: 768px) {
  main section.visual_header .title h1 {
    font-size: 2.4rem;
    white-space: nowrap;
  }
}
main section.visual_header.rec01 {
  background: url("/company/recruitment/assets/img/newgraduate/hvisual-assets/rec01.jpg") center center;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  main section.visual_header.rec01 {
    background: url("/company/recruitment/assets/img/newgraduate/hvisual-assets/rec01_sp.jpg") center center;
    background-size: cover;
  }
}
main section.visual_header.rec01 .title {
  color: #ffffff;
}
main section.visual_header.rec02 {
  background: url("/company/recruitment/assets/img/newgraduate/hvisual-assets/rec02.jpg") center center;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  main section.visual_header.rec02 {
    background: url("/company/recruitment/assets/img/newgraduate/hvisual-assets/rec02_sp.jpg") center center;
    background-size: cover;
  }
}
main section.visual_header.rec02 .title {
  color: #ffffff;
}
main .flows {
  margin: 0 0 5rem 0;
}
main .step_block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 1rem 0;
  padding: 0 0 1rem 0;
}
@media only screen and (max-width: 768px) {
  main .step_block {
    display: block;
  }
}
main .step_block .steps {
  width: 25%;
  background: rgb(247, 246, 245);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  main .step_block .steps {
    width: 100%;
    margin: 0 0 3rem 0;
  }
}
main .step_block .steps p.jp {
  font-size: 2.4rem;
}
@media only screen and (max-width: 768px) {
  main .step_block .steps p.jp {
    font-size: 1.6rem;
  }
}
main .step_block .exp {
  flex: 1;
  padding: 0 0 0 3rem;
}
@media only screen and (max-width: 768px) {
  main .step_block .exp {
    padding: 0 8vw;
  }
}
main .step_block .exp p {
  margin: 0 0 2rem 0;
}
@media only screen and (max-width: 768px) {
  main .step_block .exp p br {
    display: none;
  }
}
main ul.chui {
  font-size: 1.2rem;
}
main table.rec_table {
  width: 100%;
}
main table.rec_table.wide th {
  width: 25%;
}
main table.rec_table .txtblock {
  margin: 0 0 2rem 0;
}
main table.rec_table .txtblock h3 {
  font-weight: bold;
}
main table.rec_table p.detail {
  font-size: 1.3rem;
}
main table.rec_table.center {
  text-align: center;
}
main table.rec_table.center th {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  main table.rec_table.nosp {
    font-size: 1rem;
  }
  main table.rec_table.nosp th,
  main table.rec_table.nosp td {
    display: table-cell !important;
  }
  main table.rec_table.nosp th {
    width: 25%;
  }
}
main table.rec_table th,
main table.rec_table td {
  padding: 2rem;
}
@media only screen and (max-width: 768px) {
  main table.rec_table th,
  main table.rec_table td {
    display: block;
    padding: 2rem 0;
  }
}
main table.rec_table th {
  text-align: left;
  font-weight: 500;
  width: 20%;
  border-bottom: 2px solid #FEE200;
}
@media only screen and (max-width: 768px) {
  main table.rec_table th {
    width: 100%;
    padding: 2rem 0;
  }
}
main table.rec_table td {
  border-bottom: 2px solid #eee;
}
main a.txtlinks {
  position: relative;
  display: inline-block;
  padding: 0 3rem 0 0;
}
main a.txtlinks:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #000;
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  transition: all 0.3s ease;
  transform-origin: right top;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
@media only screen and (max-width: 768px) {
  main a.txtlinks:before {
    display: none;
  }
}
main a.txtlinks:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
main a.txtlinks:after {
  position: absolute;
  font-family: "Flaticon";
  top: 50%;
  right: 0rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  line-height: 1;
  content: "\f101";
  font-size: 14px;
  font-size: 1.4rem;
  z-index: 999;
  color: #333;
  background: #FEE200;
  line-height: 18px;
  text-align: center;
  transition: all 0.3s ease;
  transform: translateY(-50%);
  display: block;
}
main .list-toggle-con {
  height: 0;
  overflow: hidden;
}
main ul.list-toggle {
  min-width: 800px;
  max-width: 1200px;
  margin: auto;
  border-top: 1px dotted #ccc;
}
@media only screen and (max-width: 768px) {
  main ul.list-toggle {
    min-width: 0;
  }
}
main ul.list-toggle.last {
  margin: 0 auto 3em auto;
}
@media only screen and (max-width: 768px) {
  main ul.list-toggle {
    width: 100%;
    min-width: 0;
  }
}
main ul.list-toggle li a.jsToggle {
  display: block;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
}
@media only screen and (max-width: 768px) {
  main ul.list-toggle li a.jsToggle {
    padding: 2rem 5rem 2rem 2rem;
    font-size: 1.6rem;
  }
}
main ul.list-toggle li a.jsToggle:after {
  color: #000;
  position: absolute;
  font-family: "Flaticon";
  top: 50%;
  right: 2rem;
  margin-top: -0.5em;
  line-height: 1;
  content: "\f111";
  font-weight: 300;
  font-size: 20px;
  font-size: 2rem;
  z-index: 999;
}
@media only screen and (max-width: 768px) {
  main ul.list-toggle li a.jsToggle:after {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
main ul.list-toggle li a.jsToggle.txtlink {
  padding: 0;
  text-decoration: underline;
  display: inline-block;
  margin: 0 0.5em;
}
main ul.list-toggle li a.jsToggle.txtlink:after {
  display: none;
}
main ul.list-toggle li a.jsToggle.txtlink:hover {
  background: none;
  color: #FEE200;
}
main ul.list-toggle li a.active:after {
  content: "\f115";
}
main ul.list-toggle li .list-toggle-con-inner {
  padding: 2rem;
  border-bottom: 1px dotted #ccc;
}
main ul.list-toggle li .list-toggle-con-inner p {
  margin: 0 0 1em 0;
}
main ul.list-toggle li .list-toggle-con-inner .daigakuin,
main ul.list-toggle li .list-toggle-con-inner .daigaku {
  font-weight: bold;
}
main ul.list-toggle li .list-toggle-con-inner table.faq_table {
  width: 100%;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
main ul.list-toggle li .list-toggle-con-inner table.faq_table td,
main ul.list-toggle li .list-toggle-con-inner table.faq_table th {
  padding: 1.5rem;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  main ul.list-toggle li .list-toggle-con-inner table.faq_table td,
  main ul.list-toggle li .list-toggle-con-inner table.faq_table th {
    padding: 0.5rem;
  }
}
main ul.list-toggle li .list-toggle-con-inner table.faq_table th {
  background: #efefef;
}
main .jinji_main {
  margin: 0 0 10rem 0;
}
@media only screen and (max-width: 768px) {
  main .jinji_main {
    margin: 0 0 3rem 0;
  }
}
main .jinji_main .inner {
  max-width: 1000px;
  margin: auto;
  border-left: 1px dotted #FEE200;
  padding: 0 5rem;
}
@media only screen and (max-width: 768px) {
  main .jinji_main .inner {
    padding: 0 8vw;
  }
}
main .jinji_main h3 {
  font-weight: bold;
  font-size: 2.8rem;
  margin: 0 0 2rem 0;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media only screen and (max-width: 768px) {
  main .jinji_main h3 {
    font-size: 2.2rem;
    margin: 0 0 2rem 0;
  }
  main .jinji_main h3 br {
    display: none;
  }
}
main .jinji_main p {
  margin: 0 0 1em 0;
}
main .rec_details {
  color: #FEE200;
  font-weight: 500;
  margin: 0 0 3rem 0;
}
@media only screen and (max-width: 768px) {
  main .rec_details {
    margin: 0 0 2rem 0;
  }
}
main .faq_block {
  margin: 0 0 5rem 0;
}
main .faq_block h2 {
  border-bottom: none !important;
}
main .link_btns {
  text-align: center;
}
main .link_btns a {
  display: inline-block;
  border: 1px solid #FEE200;
  padding: 2rem 4rem;
  border-radius: 6px;
  color: #FEE200;
}
main .link_btns a:hover {
  background: #FEE200;
  color: #ffffff;
}
main .jwrap {
  padding: 0 8vw;
}
main section.job {
  width: 1000px;
  margin: 0 auto 7rem auto;
  background: none;
}
@media only screen and (max-width: 768px) {
  main section.job {
    width: 100%;
    margin: 0 0 3rem 0;
    min-height: 0;
  }
}
main section.job a.big {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 300;
}
main section.job .images {
  position: relative;
  z-index: 0;
}
main section.job .images:after {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 5;
  background: rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 768px) {
  main section.job {
    background: none;
  }
  main section.job::after {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  main section.job .inners {
    min-height: 0;
  }
}
@media only screen and (max-width: 768px) {
  main section.job .txt {
    top: 45%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
}
@media only screen and (max-width: 768px) {
  main section.job .txt .title {
    margin: 0 0 1rem 0;
  }
}
main section.job .txt .title p.jp {
  font-size: 3rem;
}
@media only screen and (max-width: 768px) {
  main section.job .txt .title p.jp {
    font-size: 2rem;
  }
}
main section.job .readmore_btn {
  position: relative;
  z-index: 6000;
}
main section.job .readmore_btn a {
  display: inline-block;
  background: #FEE200;
  border-radius: 30px;
  padding: 1rem 4rem 1rem 5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 768px) {
  main section.job .readmore_btn a {
    padding: 0.5rem 3rem 0.5rem 4rem;
  }
}
main section.job .readmore_btn a i {
  display: inline-block;
  margin: 0 0 0 1rem;
}
main section.job .readmore_btn a:hover {
  background: #000;
  color: #ffffff;
}
main section.job {
  min-height: 400px;
  position: relative;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  main section.job {
    background: url("/company/recruitment/assets/img/newgraduate/job.jpg") no-repeat 0 0 #fff;
    background-size: cover;
  }
  main section.job img {
    display: none;
  }
}
main section.job:after {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 3;
  background: rgba(0, 0, 0, 0.35);
}
main section.job .inners {
  position: relative;
  z-index: 5;
  min-height: 400px;
  display: block;
  width: 100%;
}
main section.job .txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  color: #ffffff;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  main section.job .txt {
    white-space: nowrap;
  }
}
main section.job .txt .title {
  margin: 0 0 2rem 0;
}
main section.job .txt .title p.jp {
  font-size: 2.4rem;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  main section.job .txt .title p.jp {
    font-size: 2rem;
  }
}
main section.job .txt .lead {
  margin: 0 0 2rem 0;
}