@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
.container {
  --gutter-x: 1.5rem;
  --gutter-y: 0;
  padding-right: calc(var(--gutter-x) * 0.5);
  padding-left: calc(var(--gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/*color*/
.text-main_color {
  color: #cc0022;
}

body {
  margin: 0;
}

img {
  max-width: 100%;
}

body {
  font-family: "Noto Sans JP", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

#main-contents {
  min-height: calc(100vh - 415.5px);
}

.pc-none {
  display: block;
}
@media (min-width: 720px) {
  .pc-none {
    display: none;
  }
}

.sp-none {
  display: none;
}
@media (min-width: 720px) {
  .sp-none {
    display: block;
  }
}

.row {
  --gutter-x: 2rem;
  --gutter-y: 0;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--gutter-y));
  margin-right: calc(-0.5 * var(--gutter-x));
  margin-left: calc(-0.5 * var(--gutter-x));
}
@media (max-width: 768px) {
  .row {
    margin-right: 0;
    margin-left: 0;
  }
}

.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--gutter-x) * 0.5);
  padding-left: calc(var(--gutter-x) * 0.5);
  margin-top: var(--gutter-y);
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  width: 8.33333333%;
}

.col-2 {
  width: 16.66666667%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.33333333%;
}

.col-5 {
  width: 41.66666667%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.33333333%;
}

.col-8 {
  width: 66.66666667%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.33333333%;
}

.col-11 {
  width: 91.66666667%;
}

.col-12 {
  width: 100%;
}

[class^="col-"] {
  flex: 0 0 auto;
}

@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }

  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
.mx-auto {
  margin-right: auto;
  margin-left: auto;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.g-0,
.gx-0 {
  --gutter-x: 0;
}

.g-0,
.gy-0 {
  --gutter-y: 0;
}

.g-1,
.gx-1 {
  --gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --gutter-y: 3rem;
}

.justify-content-start {
  justify-content: flex-start !important;
}
.justify-content-end {
  justify-content: flex-end !important;
}
.justify-content-center {
  justify-content: center !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}
.align-items-end {
  align-items: flex-end !important;
}
.align-items-center {
  align-items: center !important;
}
.align-items-baseline {
  align-items: baseline !important;
}
.align-items-stretch {
  align-items: stretch !important;
}

.flex-row {
  flex-direction: row !important;
}
.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.flex-column {
  flex-direction: column !important;
}
.flex-column-reverse {
  flex-direction: column-reverse !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
.flex-nowrap {
  flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

@media (min-width: 768px) {
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
}
.gy-0 {
  --gutter-y: 0;
}

.gy-1 {
  --gutter-y: 0.25rem;
}

.gy-2 {
  --gutter-y: 0.5rem;
}

.gy-3 {
  --gutter-y: 1rem;
}

.gy-4 {
  --gutter-y: 1.5rem;
}

.gy-5 {
  --gutter-y: 3rem;
}

@media (max-width: 768px) {
  .gy-md-down-0 {
    --gutter-y: 0;
  }

  .gy-md-down-1 {
    --gutter-y: 0.25rem;
  }

  .gy-md-down-2 {
    --gutter-y: 0.5rem;
  }

  .gy-md-down-3 {
    --gutter-y: 1rem;
  }

  .gy-md-down-4 {
    --gutter-y: 1.5rem;
  }

  .gy-md-down-5 {
    --gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .gy-md-0 {
    --gutter-y: 0;
  }

  .gy-md-1 {
    --gutter-y: 0.25rem;
  }

  .gy-md-2 {
    --gutter-y: 0.5rem;
  }

  .gy-md-3 {
    --gutter-y: 1rem;
  }

  .gy-md-4 {
    --gutter-y: 1.5rem;
  }

  .gy-md-5 {
    --gutter-y: 3rem;
  }
}
@media (max-width: 768px) {
  .px-md-down-0 > * {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
}
.padding-top0 {
  padding-top: 0 !important;
}

.padding-bottom0 {
  padding-bottom: 0 !important;
}

.bg-white {
  background-color: white;
}

.bg-beige {
  background-color: #F3EFE6;
}

.bg-lightGray {
  background-color: #F0F0F0;
}

.bg-lightGray {
  background-color: #F0F0F0;
}

.pageHeader {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
  z-index: -2;
}
.pageHeader img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  inset: 0;
  z-index: -2;
}
.pageHeader:after {
  content: '';
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: -1;
}
.pageHeader .container {
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  align-items: center;
}
.pageHeader .heading {
  color: #fff;
  display: flex;
  flex-direction: column-reverse;
  font-size: 2.5rem;
}
.pageHeader .heading-en {
  font-size: 1rem;
}
@media (max-width: 720px) {
  .pageHeader {
    height: 88px;
  }
  .pageHeader .heading {
    font-size: 1.25rem;
  }
  .pageHeader .heading-en {
    font-size: 0.625rem;
  }
}

.positionY-0 {
  object-position: 0 0% !important;
}

.positionY-10 {
  object-position: 0 10% !important;
}

.positionY-20 {
  object-position: 0 20% !important;
}

.positionY-30 {
  object-position: 0 30% !important;
}

.positionY-40 {
  object-position: 0 40% !important;
}

.positionY-50 {
  object-position: 0 50% !important;
}

.positionY-60 {
  object-position: 0 60% !important;
}

.positionY-70 {
  object-position: 0 70% !important;
}

.positionY-80 {
  object-position: 0 80% !important;
}

.positionY-90 {
  object-position: 0 90% !important;
}

.positionY-100 {
  object-position: 0 100% !important;
}

.card-main,
.card-main-lg {
  border-radius: 0.5rem;
}
.col-md-6 .card-main, .col-md-6
.card-main-lg {
  height: -webkit-fill-available;
}
@media (max-width: 720px) {
  .card-main,
  .card-main-lg {
    padding: 1rem;
  }
}
.card-main ._body > ul,
.card-main-lg ._body > ul {
  padding-left: 1.5rem;
}
.card-main ._body li,
.card-main-lg ._body li {
  line-height: 1.75;
  margin-bottom: 0.5rem;
}
.card-main ._body p,
.card-main-lg ._body p {
  margin: 0;
}
.card-main ._body .label-list,
.card-main-lg ._body .label-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  padding-top: 0.5rem;
  color: #333;
}
.card-main ._body .label-list > li,
.card-main-lg ._body .label-list > li {
  display: flex;
  align-items: baseline;
  column-gap: 0.875rem;
  margin-bottom: 0;
}
@media (max-width: 720px) {
  .card-main ._body .label-list > li,
  .card-main-lg ._body .label-list > li {
    flex-direction: column;
    row-gap: 0.5rem;
  }
}

.card-main {
  padding: 2rem;
}
@media (max-width: 720px) {
  .card-main {
    padding: 1rem;
  }
}

.card-main-lg {
  padding: 3rem;
  overflow: hidden;
}
@media (max-width: 720px) {
  .card-main-lg {
    padding: 1rem;
  }
}
.card-main-lg ._header {
  position: relative;
}
.card-main-lg ._header::before {
  content: '';
  position: absolute;
  left: -7rem;
  top: -.5rem;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #cc0022;
  opacity: 0.7;
}
@media (max-width: 720px) {
  .card-main-lg ._header::before {
    left: -3.5rem;
    top: -.5rem;
    width: 80px;
    height: 80px;
    opacity: 0.5;
  }
}
.card-main-lg ._header h3 {
  position: relative;
  z-index: 1;
}
.card-main-lg ._body ._title {
  font-size: 2rem;
  margin: 0 0 2.5rem;
  line-height: 1.75;
}
@media (max-width: 720px) {
  .card-main-lg ._body ._title {
    font-size: 1.25rem;
    margin: 0 0 1rem;
    padding: 1.5rem 0 0;
  }
}
.card-main-lg ._body p {
  line-height: 1.75;
}

.h2, .h3, .h4 {
  font-weight: 500;
  display: flex;
  flex-direction: column-reverse;
  row-gap: 0.5rem;
  font-size: 2rem;
  color: #333;
}
.h2 h2, .h3 h2, .h4 h2 {
  font-size: 3rem;
  margin-top: 0;
  margin-bottom: 1.625rem;
}
@media (max-width: 768px) {
  .h2 h2, .h3 h2, .h4 h2 {
    font-size: 2rem;
  }
}
.h2 h3, .h3 h3, .h4 h3 {
  font-size: 2.5rem;
  margin-top: 0;
  margin-bottom: 1.625rem;
}
@media (max-width: 768px) {
  .h2 h3, .h3 h3, .h4 h3 {
    font-size: 1.5rem;
  }
}
.h2 h4, .h3 h4, .h4 h4 {
  font-size: 1.625rem;
  margin-top: 0;
  margin-bottom: 1.625rem;
}
.h2 ._sub, .h3 ._sub, .h4 ._sub {
  font-size: 0.75rem;
  font-weight: 700;
  color: #cc0022;
}
.h2 ._sub.-lg, .h3 ._sub.-lg, .h4 ._sub.-lg {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .h2 ._sub.-lg, .h3 ._sub.-lg, .h4 ._sub.-lg {
    font-size: 0.75rem;
  }
}

.label-baige {
  display: inline-block;
  min-width: 120px;
  font-weight: 500;
  line-height: 1.5;
  padding: 4px 6px;
  background-color: #F3EFE6;
}
.label-baige > * {
  margin: 0;
  text-align: center;
}

.btn {
  display: inline-flex;
  padding: 1rem 4.375rem 1rem 1rem;
  border-radius: 4px;
  position: relative;
  z-index: 0;
  font-weight: 700;
  text-decoration: none;
}
.btn:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  width: 17px;
  height: 12px;
  background: url("/sjnkdc/common/images/icon_arrow2_right_w.png") center no-repeat;
  background-size: contain;
}
@media (max-width: 720px) {
  .btn {
    display: block;
  }
}

.btn-primary {
  color: white;
  background-color: white;
  border: 1px solid #cc0022;
}
.btn-primary:after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #cc0022, #9d001a);
  background-size: contain;
  border: 1px solid transparent;
  border-radius: 4px;
  z-index: -1;
  opacity: 1;
  transition: opacity .3s ease;
}
.btn-primary:hover {
  color: #cc0022;
}
.btn-primary:hover:before {
  width: 17px;
  height: 12px;
  background: url("/sjnkdc/common/images/icon_arrow2_right_r.png") center no-repeat;
  background-size: contain;
}
.btn-primary:hover:after {
  opacity: 0;
}

.fs-10 {
  font-size: 10px !important;
}
.fs-12 {
  font-size: 12px !important;
}
.fs-14 {
  font-size: 14px !important;
}

.fw-bold {
  font-weight: bold;
}

.asterisk-list {
  padding: 0;
  margin: 0;
}
.asterisk-list li {
  padding-left: 15px;
  list-style: none;
  position: relative;
}
.asterisk-list li:before {
  position: absolute;
  left: 0;
  content: "※";
}

header {
  box-shadow: 0px 0px 32px 0px rgba(56, 60, 65, 0.12);
}

.l-header-ci,
#headerwrapper {
  position: relative;
  background: white;
}
.l-header-ci:before,
#headerwrapper:before {
  background-color: #cc0022;
  content: '';
  display: block;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
}
@media (max-width: 720px) {
  .l-header-ci #headerwrapper,
  #headerwrapper #headerwrapper {
    width: 100%;
    height: 65px;
    z-index: 2000;
  }
}
.l-header-ci .l-language,
#headerwrapper .l-language {
  position: absolute;
  right: 260px;
  top: 30px;
}
.l-header-ci .l-language li,
#headerwrapper .l-language li {
  position: relative;
  float: left;
  list-style: none;
  padding: 0;
  margin: 0;
}
.l-header-ci .l-language li::before,
#headerwrapper .l-language li::before {
  content: '';
  display: block;
  height: 1em;
  border-left: 1px solid #cdcdcd;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.l-header-ci .l-language li::after,
#headerwrapper .l-language li::after {
  content: '';
  display: block;
  height: 1em;
  border-left: 1px solid #cdcdcd;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.l-header-ci .l-language li a,
#headerwrapper .l-language li a {
  display: block;
  color: #666;
  padding: 0 12px;
  font-size: 100%;
  font-size: 12px;
  font-weight: normal;
}
.l-header-ci .l-language li a:hover,
#headerwrapper .l-language li a:hover {
  text-decoration: underline;
}
.l-header-ci .l-global-navi,
#headerwrapper .l-global-navi {
  position: relative;
  margin: 0 auto;
  padding: 0;
  width: 990px;
  display: flex;
}
@media (max-width: 720px) {
  .l-header-ci .l-global-navi,
  #headerwrapper .l-global-navi {
    width: 100%;
    display: block;
  }
}
.l-header-ci .l-global-navi li,
#headerwrapper .l-global-navi li {
  width: 100%;
  position: relative;
  list-style: none;
  text-align: center;
}
.l-header-ci .l-global-navi li a,
#headerwrapper .l-global-navi li a {
  align-items: center;
  color: #333333;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  height: 46px;
  justify-content: center;
  line-height: 1.3;
  padding: 0 0.5rem;
  text-align: center;
}
@media (max-width: 720px) {
  .l-header-ci .l-global-navi li a,
  #headerwrapper .l-global-navi li a {
    padding: 12px 12px 12px 43px;
    display: block;
    position: relative;
    outline: 0;
    font-size: 16px;
    text-align: left;
    height: auto;
    line-height: 22px;
  }
}
.l-header-ci .l-global-navi li a:hover,
#headerwrapper .l-global-navi li a:hover {
  z-index: 2;
  font-weight: 700;
  background: #ededed;
}
.l-header-ci .l-global-navi li.is-active,
#headerwrapper .l-global-navi li.is-active {
  background: none;
}
.l-header-ci .l-global-navi li.is-active::after,
#headerwrapper .l-global-navi li.is-active::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 2px;
  border-bottom: 2px solid #c02;
  bottom: 0;
  left: 0;
}
.l-header-ci .l-global-navi li.is-active a,
#headerwrapper .l-global-navi li.is-active a {
  font-weight: 700;
}
.l-header-ci .l-global-navi li + li a::before,
#headerwrapper .l-global-navi li + li a::before {
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  content: '';
  display: block;
  height: 20px;
  left: 0;
  margin-top: -10px;
  position: absolute;
  top: 50%;
}
@media (max-width: 720px) {
  .l-header-ci .l-global-navi li + li a::before,
  #headerwrapper .l-global-navi li + li a::before {
    display: none;
  }
}
@media (max-width: 720px) {
  .l-header-ci .dl-menuwrapper,
  #headerwrapper .dl-menuwrapper {
    width: 100%;
    min-width: 320px;
    position: absolute;
    top: 0;
    right: 0;
    padding-top: 65px;
    z-index: 20;
  }
  .l-header-ci .dl-menuwrapper .dl-trigger,
  #headerwrapper .dl-menuwrapper .dl-trigger {
    top: 10px;
  }
}

.block-skip {
  position: relative;
  top: -48px;
  margin-bottom: -48px;
  height: 48px;
  display: block;
  text-align: center;
  background-color: #fbf1f2;
  padding: 14px;
  font-size: 16px;
  color: #6666aa;
  line-height: 1;
}
.block-skip::before {
  content: '';
  width: 15px;
  height: 15px;
  margin-right: 3px;
  display: inline-block;
  background: url(../images/icon_arrow_bottom_r.png) center no-repeat;
}
.block-skip:focus {
  top: 0;
  margin-bottom: 0;
}

.l-header-recruit {
  background-color: white;
}

.l-global-area-warp,
.l-header-recruit-nav {
  --gutter-x: 1.5rem;
  --gutter-y: 0;
  padding-right: calc(var(--gutter-x) * 0.5);
  padding-left: calc(var(--gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .l-global-area-warp,
  .l-header-recruit-nav {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .l-global-area-warp,
  .l-header-recruit-nav {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .l-global-area-warp,
  .l-header-recruit-nav {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .l-global-area-warp,
  .l-header-recruit-nav {
    max-width: 1200px;
  }
}

.l-global-area-warp {
  height: 82px;
}

.l-global-area {
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  height: 82px;
}
.l-global-area .l-logo {
  width: 170px;
  height: 37px;
}
.l-global-area .l-logo a {
  display: inline-block;
  width: 100%;
}
.l-global-area .l-logo a img {
  width: auto;
  height: 100%;
}
.l-global-area .l-dcLogo {
  position: absolute;
  right: 19px;
  top: 22px;
  width: 216px;
  height: 38px;
}
.l-global-area .l-dcLogo a {
  display: inline-block;
  width: 100%;
}
.l-global-area .l-dcLogo a img {
  width: auto;
  height: 100%;
}
.l-global-area h1 {
  margin: 0;
}

.logo-area {
  margin: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  height: 37px;
}
@media (max-width: 720px) {
  .logo-area {
    margin: 0 auto;
    position: relative;
    height: 65px;
    z-index: 21;
    left: 0;
    top: 0;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .logo-area .l-logo {
    position: relative;
    display: flex;
    align-items: center;
    flex-flow: column;
    height: 52px;
    width: 100%;
    left: 10px;
    padding-top: 2px;
  }
  .logo-area .l-logo a {
    position: relative;
    display: flex;
    flex-flow: column;
    align-items: center;
    height: 52px;
    width: 100%;
  }
  .logo-area .l-logo img:first-child {
    position: absolute;
    left: 26px;
    top: 1px;
    display: block;
    width: 113px;
    height: 26px;
  }
  .logo-area .l-logo img:last-child {
    display: block;
    height: 28px;
    position: absolute;
    left: 6px;
    bottom: 1px;
    max-width: none;
  }
}
@media (max-width: 720px) {
  .logo-area {
    position: relative;
    top: 7px;
    left: 0;
    width: 185px;
    height: 52px;
    z-index: 9999;
  }
}
.logo-area h1 {
  margin: 0;
}

/*global-navi*/
.clearfix, .l-global-area, .l-footer-sitemap .sitemap-list, .l-footer .l-site-data {
  *zoom: 1;
}
.clearfix:after, .l-global-area:after, .l-footer-sitemap .sitemap-list:after, .l-footer .l-site-data:after {
  content: '\0020';
  display: block;
  height: 0;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}

/*recruit-navi*/
.l-header-recruit-menu {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 1rem 2rem;
  margin: 0;
  list-style: none;
  padding: 0;
}
@media (min-width: 992px) {
  .l-header-recruit-menu {
    justify-content: center;
    gap: 1rem 5rem;
  }
}
.l-header-recruit-menu .l-header-recruit-item {
  position: relative;
}
.l-header-recruit-menu .l-header-recruit-item .megamenu-area {
  position: absolute;
  top: 86px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #9d001a;
  border-radius: 0.25rem;
  box-shadow: 0px 8px 8px 0px rgba(56, 60, 65, 0.2);
  display: none;
  animation: fadeIn 0.3s ease;
  z-index: 100;
}
.l-header-recruit-menu .l-header-recruit-item .megamenu-area::before {
  content: '';
  position: absolute;
  top: -1rem;
  left: 0;
  width: 100%;
  height: 1rem;
  display: block;
  background: transparent;
}
.l-header-recruit-menu .l-header-recruit-item .megamenu-area .megamenu-list {
  list-style: none;
  margin: 0;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.l-header-recruit-menu .l-header-recruit-item .megamenu-area .megamenu-list .megamenu-item a {
  color: white;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  padding: 0 2rem 0 0;
}
.l-header-recruit-menu .l-header-recruit-item .megamenu-area .megamenu-list .megamenu-item a::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s, right 0.3s;
  right: 0;
  width: 17px;
  height: 12px;
  background: url(../images/icon_arrow2_right_w.png) center no-repeat;
  background-size: contain;
}
.l-header-recruit-menu .l-header-recruit-item .megamenu-area .megamenu-list .megamenu-item a:hover::after {
  right: -4px;
}
.l-header-recruit-menu .header-recruit-link {
  text-decoration: none;
  padding: 1rem 0;
  display: flex;
  flex-direction: column-reverse;
}
.l-header-recruit-menu .header-recruit-link ._en {
  color: #777;
  font-weight: 700;
  font-size: 0.625rem;
  padding: 0 0 .25rem;
}
@media (min-width: 992px) {
  .l-header-recruit-menu .header-recruit-link ._en {
    font-size: 0.75rem;
  }
}
.l-header-recruit-menu .header-recruit-link ._ja {
  position: relative;
  color: #333333;
  font-weight: 500;
  font-size: 14px;
}
@media (min-width: 992px) {
  .l-header-recruit-menu .header-recruit-link ._ja {
    font-size: 0.9375rem;
  }
}
.l-header-recruit-menu .header-recruit-link.js-megamenu-trigger ._ja {
  padding: 0 1.5rem 0 0;
}
.l-header-recruit-menu .header-recruit-link.js-megamenu-trigger ._ja::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 2px;
  width: 8px;
  height: 8px;
  border-right: 1px solid #333333;
  border-bottom: 1px solid #333333;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.15s, top 0.15s;
}
.l-header-recruit-menu .header-recruit-link.js-megamenu-trigger:hover ._ja::after {
  top: calc(50% + 2px);
}

.l-header-sp-trigger {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
  pointer-events: auto;
  visibility: visible;
  width: 43px;
  height: 43px;
  background-color: #cc0022;
  border-radius: 50%;
}
.l-header-sp-trigger span {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: white;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
}
.l-header-sp-trigger span:nth-child(1) {
  top: calc(50% - 8px);
}
.l-header-sp-trigger span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.l-header-sp-trigger span:nth-child(3) {
  top: calc(50% + 6px);
}
.l-header-sp-trigger.is-active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.l-header-sp-trigger.is-active span:nth-child(2) {
  opacity: 0;
}
.l-header-sp-trigger.is-active span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.l-header-recruit-sp {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  background: #fff;
  z-index: 1000;
  transition: top 0.4s cubic-bezier(0.45, 0, 0.55, 1);
  overflow-y: auto;
  margin: 65px 0 0;
  max-height: calc(100vh - 65px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.l-header-recruit-sp.is-active {
  top: 0;
  display: block;
}

.l-header-recruit-sp-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.l-header-recruit-sp-item {
  border-bottom: 1px solid #777;
}

.l-header-recruit-sp-link {
  padding: 1.5rem;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column-reverse;
  text-decoration: none;
}
.l-header-recruit-sp-link ._en {
  color: #777;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0 0 .25rem;
}
.l-header-recruit-sp-link ._ja {
  position: relative;
  color: #333333;
  font-weight: 500;
  font-size: 1rem;
}

.megamenu-sp-area {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.megamenu-sp-area .megamenu-sp-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.megamenu-sp-area .megamenu-sp-list .megamenu-sp-item {
  margin: 0 0 1rem;
  padding: 0 1.5rem;
}
.megamenu-sp-area .megamenu-sp-list .megamenu-sp-item a {
  color: #333333;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  position: relative;
  padding: 0 0 0 1rem;
}
.megamenu-sp-area .megamenu-sp-list .megamenu-sp-item a::before {
  content: '';
  width: .25rem;
  height: 1px;
  background-color: #333333;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: .25rem;
  transform: translateX(-50%);
}

.js-sp-accordion-trigger ._ja::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1px solid #333333;
  border-bottom: 1px solid #333333;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s;
}
.js-sp-accordion-trigger.is-open ._ja::after {
  transform: translateY(-20%) rotate(-135deg);
}

.l-header-sp-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  margin: 65px 0 0;
}
.l-header-sp-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

/*footer*/
.l-footer-sitemap {
  width: 100%;
  position: relative;
  padding: 2rem 0;
  background-color: #F8F8F8;
}
.l-footer-sitemap .container {
  padding-top: 0;
  padding-bottom: 0;
}
@media (min-width: 720px) {
  .l-footer-sitemap {
    padding: 2rem 0 3.75rem;
  }
}
.l-footer-sitemap a,
.l-footer-sitemap a:hover,
.l-footer-sitemap a:active,
.l-footer-sitemap a:visited {
  color: #666666;
  text-decoration: none;
}
.l-footer-sitemap .sitemap-list {
  display: flex;
  justify-content: space-between;
  column-gap: 40px;
}
@media (max-width: 720px) {
  .l-footer-sitemap .sitemap-list {
    flex-direction: column;
  }
}
.l-footer-sitemap .sitemap-list a {
  font-weight: 500;
  display: block;
  font-size: 18px;
  color: #333;
  text-decoration: none;
}
.l-footer-sitemap .sitemap-list a span {
  font-size: 12px;
  color: #777777;
}
.l-footer-sitemap .sitemap-list > ul {
  width: 100%;
  padding: 0;
}
.l-footer-sitemap .sitemap-list > ul > li {
  font-size: 12px;
  list-style: none;
  position: relative;
}
.l-footer-sitemap .sitemap-list > ul > li:after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #333;
  position: absolute;
  bottom: 0;
  left: 0;
}
.l-footer-sitemap .sitemap-list > ul > li > a {
  display: flex;
  flex-direction: column-reverse;
  padding-bottom: 18px;
  margin-bottom: 18px;
  font-size: 18px;
  color: #333;
}
@media (max-width: 720px) {
  .l-footer-sitemap .sitemap-list > ul > li > a {
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
}
.l-footer-sitemap .sitemap-list > ul > li > a ._sub {
  color: #777777;
  font-size: 12px;
  font-weight: 700;
  padding-bottom: 0.25rem;
}
.l-footer-sitemap .sitemap-list > ul > li > a:hover {
  color: #9d001a;
}
.l-footer-sitemap .sitemap-list > ul > li > a:hover span {
  color: #9d001a;
}
.l-footer-sitemap .sitemap-list > ul > ul {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
.l-footer-sitemap .sitemap-list > ul > ul > li {
  list-style: none;
}
.l-footer-sitemap .sitemap-list > ul > ul > li > a {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.l-footer-sitemap .sitemap-list > ul > ul > li > a:hover {
  color: #9d001a;
}

.l-footer {
  width: 100%;
}
.l-footer .container {
  padding: 0;
}
.l-footer .l-footer-contents {
  background: #cc0022;
  width: 100%;
  height: 35px;
}
@media (max-width: 720px) {
  .l-footer .l-footer-contents {
    position: relative;
    width: 100%;
    height: auto;
  }
}
.l-footer .l-site-data {
  margin: 0 auto;
  position: relative;
}
.l-footer .l-footer-logo {
  position: absolute;
  margin: 0;
  line-height: 12px;
  top: 10px;
  left: 20px;
}
@media (max-width: 720px) {
  .l-footer .l-footer-logo {
    display: none;
  }
}
.l-footer .l-copy {
  position: absolute;
  top: 12px;
  right: 20px;
  color: #ffffff;
  font-size: 10px;
  line-height: 13px;
  text-align: right;
  padding: 0;
  margin: 0;
  font-family: 'Helvetica', 'Arial';
}
@media (max-width: 720px) {
  .l-footer .l-copy {
    position: relative;
    text-align: center;
    top: 0;
    right: 0;
    padding: 10px;
    line-height: lz(16);
  }
}

.l-pagetop {
  display: inline-block;
  position: fixed;
  right: 30px;
  bottom: 40px;
}
.l-pagetop a {
  content: '';
  width: 56px;
  height: 56px;
  display: inline-block;
  background: url(../images/mobile_pagetop.png) center no-repeat;
  background-size: contain;
}
@media (max-width: 720px) {
  .l-pagetop {
    right: 6px;
    bottom: 30px;
  }
  .l-pagetop a {
    width: 65px;
    height: 65px;
  }
}

.topMainVisual {
  position: relative;
  height: calc(95vh - 156px);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60vh, #cc0022 0%);
}
@media (max-width: 768px) {
  .topMainVisual {
    height: calc(95vh - 65px);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 62vh, #cc0022 0%);
  }
}
.topMainVisual-inner {
  position: relative;
  z-index: 10;
  height: 100%;
}
.topMainVisual-inner-wrap {
  position: relative;
  height: calc(95vh - 156px - 10rem);
}
@media (max-width: 1400px) {
  .topMainVisual-inner-wrap {
    padding-top: 60px;
    position: absolute;
    width: 80%;
    left: 50%;
    transform: translateX(calc(-50% + 2.25%));
  }
}
@media (max-width: 768px) {
  .topMainVisual-inner-wrap {
    height: calc(95vh - 65px - 5rem);
    width: calc(100% - 4rem);
    right: -0.75rem;
  }
}
.topMainVisual-bg {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 92%;
}
@media (max-width: 768px) {
  .topMainVisual-bg {
    height: calc(100% - 2rem);
  }
}

.topMainVisual-bg-scroll {
  width: 5%;
  min-width: 24px;
  margin: 0 0 10vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .topMainVisual-bg-scroll {
    margin: 0 0 6vh;
  }
}
.topMainVisual-bg-scroll .scroll-area {
  position: relative;
  width: 1rem;
  height: 11rem;
}
.topMainVisual-bg-scroll .scroll-area .scroll-text {
  color: #cc0022;
  transform: rotate(90deg);
  transform-origin: center;
  font-size: 11px;
  letter-spacing: 0.1em;
  display: block;
  position: relative;
  left: 1px;
}
@media (max-width: 768px) {
  .topMainVisual-bg-scroll .scroll-area .scroll-text {
    font-size: 0.625rem;
  }
}
.topMainVisual-bg-scroll .scroll-area::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 8rem;
  background: #cc0022;
  animation: scrollFlow 2.5s infinite;
  transform-origin: top;
}

@keyframes scrollFlow {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  40% {
    transform: scaleY(1);
    transform-origin: top;
  }
  60% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.topMainVisual-title {
  color: white;
  display: inline-block;
  font-weight: 600;
}
@media (max-width: 768px) {
  .topMainVisual-title {
    position: absolute;
    bottom: 6rem;
  }
}
.topMainVisual-title ._ja {
  display: flex;
  flex-direction: column;
  font-size: clamp(2.5rem, 3.5vw, 5rem);
  line-height: 1.5;
  margin: 0 0 2rem;
}
@media (max-width: 768px) {
  .topMainVisual-title ._ja {
    font-size: 1.25rem;
    margin: 0 0 0.75rem;
  }
}
.topMainVisual-title ._en {
  position: relative;
  left: 0.75rem;
  font-size: clamp(0.875rem, 3.5vw, 1.125rem);
}
@media (max-width: 768px) {
  .topMainVisual-title ._en {
    font-size: .75rem;
    left: 0.25rem;
  }
}

.topMainVisual-bg-img {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  flex-grow: 1;
  height: 100%;
}
.topMainVisual-bg-img source, .topMainVisual-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel {
  position: relative;
  width: 100%;
  height: 100%;
}
.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 1s ease;
}
.carousel-item.is-active {
  opacity: 1;
  z-index: 3;
}
.carousel-item.is-prev {
  opacity: 1;
  z-index: 2;
}
.carousel-item picture,
.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-footer {
  position: absolute;
  bottom: 8rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  display: flex;
  flex-direction: column-reverse;
  gap: 0.75rem;
  z-index: 10;
}
@media (max-width: 768px) {
  .carousel-footer {
    bottom: 3.5rem;
  }
}
.carousel-counter {
  color: white;
  font-family: 'Helvetica', sans-serif;
  font-size: 0.8125rem;
  align-self: flex-end;
  text-align: right;
}
@media (max-width: 768px) {
  .carousel-counter {
    font-size: 0.625rem;
  }
}
.carousel-counter .divider {
  margin: 0 0.5rem;
  opacity: 0.6;
}
@media (max-width: 768px) {
  .carousel-counter .divider {
    margin: 0 0.25rem;
  }
}
.carousel-progress {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
}
.carousel-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: white;
}
.carousel-progress-bar.is-animating {
  animation: progress-run 15s linear forwards;
}

@keyframes progress-run {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.is-animating {
  animation: progress 15s linear forwards;
}

.section-title {
  color: #333333;
  font-size: 4rem;
  text-align: center;
  line-height: 1.75;
  margin: 0 0 5rem;
}
@media (max-width: 992px) {
  .section-title {
    font-size: 2.75rem;
  }
}
@media (max-width: 768px) {
  .section-title {
    font-size: 1.625rem;
    margin: 0 0 2.5rem;
  }
}
.section-title ._red {
  color: #cc0022;
}
.section-title ._big {
  font-size: 8rem;
  position: relative;
  top: 0.5rem;
  padding: 0 0.25rem 0 0.5rem;
  line-height: 1;
}
@media (max-width: 992px) {
  .section-title ._big {
    font-size: 5rem;
  }
}
@media (max-width: 768px) {
  .section-title ._big {
    font-size: 3rem;
  }
}

.section._bg-top {
  margin: 9rem 0 0;
  background: url(../images/recruit/bg-top.png) center center no-repeat;
  background-size: auto 100%;
  background-color: #f8f8fa;
  clip-path: polygon(0% 0%, 85% 0%, 100% 4%, 100% 100%, 0% 100%);
  overflow: hidden;
}
@media (max-width: 992px) {
  .section._bg-top {
    clip-path: polygon(0% 0%, 85% 0%, 100% 2%, 100% 100%, 0% 100%);
  }
}
@media (max-width: 768px) {
  .section._bg-top {
    clip-path: polygon(0 0, 90% 0, 100% 1%, 100% 100%, 0 100%);
    margin: 3rem 0 0;
  }
}

.point-list {
  color: #333333;
  display: flex;
  flex-direction: column;
  gap: 9rem;
  padding: 0 0 2rem;
  counter-reset: point-counter;
  padding: 0 0 5rem;
}
@media (max-width: 720px) {
  .point-list {
    gap: 3rem;
    padding: 0 0 2rem;
  }
}
.point-list-item {
  position: relative;
  counter-increment: point-counter;
}
.point-list-item::before {
  content: "0" counter(point-counter);
  position: absolute;
  bottom: -2.5rem;
  left: -5rem;
  z-index: 10;
  font-size: 9rem;
  font-weight: 500;
  line-height: 1;
  color: #cc0022;
  opacity: 0.1;
}
@media (max-width: 768px) {
  .point-list-item::before {
    top: -2.5rem;
    right: 1rem;
    left: unset;
    bottom: unset;
    font-size: 4rem;
  }
}
.point-list-item::after {
  content: '';
  position: absolute;
  bottom: -1.5rem;
  left: 7rem;
  width: 15rem;
  height: 2px;
  background: #cc0022;
  z-index: 5;
  opacity: 0.1;
}
@media (max-width: 768px) {
  .point-list-item::after {
    bottom: unset;
    left: unset;
    top: 1rem;
    right: 6rem;
    width: 5rem;
  }
}
.point-list-item:nth-child(even)::before {
  left: auto;
  right: -5rem;
}
@media (max-width: 768px) {
  .point-list-item:nth-child(even)::before {
    top: -2.5rem;
    right: 1rem;
    font-size: 4rem;
  }
}
.point-list-item:nth-child(even)::after {
  left: auto;
  right: 7rem;
}
@media (max-width: 768px) {
  .point-list-item:nth-child(even)::after {
    right: 6rem;
  }
}

html {
  scroll-padding-top: 2.5rem;
  scroll-behavior: smooth;
}

.about-us {
  margin: 0 0 5rem;
}

.about-read {
  display: flex;
  flex-direction: row-reverse;
  gap: 5rem;
  font-size: 1.375rem;
}
@media (max-width: 992px) {
  .about-read {
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .about-read {
    gap: 0;
    flex-direction: column;
  }
}
.about-read ._header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 2;
}
.about-read ._header p:first-child {
  margin: 0;
}
.about-read ._body {
  flex: 1;
  text-align: center;
}
@media (max-width: 768px) {
  .about-read ._body {
    padding: .5rem;
  }
}
@media (max-width: 768px) {
  .about-read {
    font-size: 1.125rem;
  }
}

.feature-anchor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 992px) {
  .feature-anchor-list {
    gap: 1rem;
  }
}
.feature-anchor-item {
  width: calc((100% - 5rem) / 3);
  display: flex;
  box-sizing: border-box;
}
@media (max-width: 992px) {
  .feature-anchor-item {
    width: calc((100% - 2.5rem) / 2);
  }
}
@media (max-width: 768px) {
  .feature-anchor-item {
    width: 100%;
  }
}
.feature-anchor-link {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 3.875rem 1.25rem 2.25rem;
  position: relative;
  box-sizing: border-box;
  border-radius: .5rem;
  background-color: #F3EFE6;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}
.feature-anchor-link:hover {
  background-color: #dbd7cf;
}
.feature-anchor-link ._header {
  color: #cc0022;
  text-align: center;
  position: absolute;
  top: .75rem;
  line-height: 1;
  font-size: 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-anchor-link ._header ._num {
  font-size: 1.5rem;
}
.feature-anchor-link ._body {
  color: #333;
  text-align: center;
  font-size: 1.25rem;
  margin: 0;
}
.feature-anchor-link ._body span {
  display: block;
}
.feature-anchor-link::after {
  content: '';
  position: absolute;
  bottom: 1rem;
  right: calc(50% - .5rem);
  width: .5rem;
  height: .5rem;
  border-right: 1px solid #333333;
  border-bottom: 1px solid #333333;
  transform: translateX(-50%) rotate(45deg);
}

.panel-beige {
  background-color: #F3EFE6;
  border-radius: .5rem;
  padding: 1.5rem;
  line-height: 1.75;
}
.panel-beige > *:first-child {
  margin-top: 0;
}
.panel-beige > *:last-child {
  margin-bottom: 0;
}
.panel-beige ._title {
  font-size: 1.625rem;
  margin: 0 0 1.5rem;
}

.video-list {
  display: flex;
  justify-content: center;
  gap: 50px;
}
@media (max-width: 768px) {
  .video-list {
    flex-direction: column;
  }
}
.video-item {
  display: flex;
  flex-direction: column;
}
.video-thumbLinkImage {
  aspect-ratio: 16 / 9;
}
.video-thumbLinkImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
}
.video-thumbLink {
  display: block;
  position: relative;
  overflow: hidden;
}
.video-thumbLink::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.video-thumbLink::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: 2rem;
  transform: translateY(50%);
  width: 2.5rem;
  height: 2.5rem;
  background: url(/sjnkdc/common/images/icon_arrow2_right_w.png) center no-repeat;
  z-index: 2;
  background-size: 1.125rem;
  border: 1px solid white;
  border-radius: 50%;
}
.video-thumbLink:hover img {
  transform: scale(1.1);
}

.company {
  margin: 0 0 5rem;
}
@media (max-width: 768px) {
  .company {
    margin: 0 0 3rem;
  }
}

.company-lead {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.75;
}
@media (max-width: 768px) {
  .company-lead {
    font-size: 1.125rem;
  }
}

.panelList {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
@media (max-width: 768px) {
  .panelList {
    gap: 1rem;
  }
}
.panelList:last-child {
  margin: 0;
}
.panelList--cols3 .panelItem {
  width: calc((100% - 3rem) / 3);
  display: flex;
  box-sizing: border-box;
}
.panelList--cols3 .numData ._num {
  font-size: 3rem;
}
@media (max-width: 992px) {
  .panelList--cols3 .panelItem {
    width: calc((100% - 1.5rem) / 2);
  }
}
@media (max-width: 768px) {
  .panelList--cols3 .panelItem {
    width: 100%;
  }
  .panelList--cols3 .numData ._num {
    font-size: 2rem;
  }
}
.panelList--cols4 .panelItem {
  width: calc((100% - 4.5rem) / 4);
  display: flex;
  box-sizing: border-box;
}
.panelList--cols4 .numData ._num {
  font-size: 2.5rem;
}
@media (max-width: 992px) {
  .panelList--cols4 .panelItem {
    width: calc((100% - 3rem) / 3);
  }
}
@media (max-width: 768px) {
  .panelList--cols4 .panelItem {
    width: 100%;
  }
  .panelList--cols4 .numData ._num {
    font-size: 2rem;
  }
}

.panelCard {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: .5rem;
  padding: 2rem 1rem;
  box-sizing: border-box;
}
.panelCard--side {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.panelCard--topTitle {
  display: flex;
  flex-direction: column;
}
.panelCard--topTitle .panelCardFlex {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.panelCard--topTitle .panelCardImage {
  display: flex;
  align-items: center;
}
.panelCard .panelCardContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.panelCard .panelCardBody {
  text-align: center;
}
.panelCard .panelCardTitle {
  text-align: center;
  margin: 0;
  font-size: 1.25rem;
}
.panelCard .panelCardTitle-wrap {
  text-align: center;
}
.panelCard .numData {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .25rem;
  margin: 0 0 .5rem;
}
.panelCard .numData ._num {
  font-weight: bold;
  color: #cc0022;
  line-height: 1;
}
.panelCard .numData ._unit {
  font-size: 0.9375rem;
}
.panelCard ._sub {
  font-size: .875rem;
}

#work-style .lead {
  font-size: 1.375rem;
  font-weight: 500;
  color: #333;
  line-height: 1.5;
}
@media (max-width: 768px) {
  #work-style .lead {
    font-size: 1.125rem;
  }
}
#work-style .card-main {
  color: #333;
}
#work-style .card-main .fs-14 {
  margin-top: 0.5rem;
}

#interview {
  color: #333;
}
#interview .container {
  overflow: hidden;
}
#interview .lead {
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 80px 0;
}
@media (max-width: 768px) {
  #interview .lead {
    font-size: 1.125rem;
    margin-bottom: 40px;
  }
}
#interview .col-md-auto {
  display: flex;
  justify-content: center;
}

.interview-link {
  display: block;
  width: fit-content;
  text-decoration: none;
  position: relative;
  margin-left: 6px;
  opacity: 1;
  transition: .15s;
}
.interview-link ._text {
  position: absolute;
  left: 0;
  bottom: 8px;
}
.interview-link ._title {
  color: #fff;
  display: flex;
  flex-direction: column;
  width: fit-content;
  font-weight: 600;
  padding-bottom: 6px;
  margin-left: -6px;
  line-height: 1.25;
}
.interview-link ._title p {
  display: inline-block;
  width: fit-content;
  padding: 1px 2px 1px 11px;
  background-color: rgba(51, 51, 51, 0.7);
  margin: 0;
}
.interview-link ._cap {
  padding-left: 10px;
}
.interview-link ._cap span {
  color: rgba(240, 240, 240, 0.8);
  font-size: 0.75rem;
}
.interview-link ._cap ._name {
  font-weight: 600;
  padding-right: 1rem;
}
.interview-link ._img {
  width: 300px;
  height: 200px;
}
.interview-link ._img img {
  object-fit: cover;
}
.interview-link:before {
  content: '';
  display: block;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000000 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 1;
}
.interview-link:after {
  content: '';
  display: block;
  width: 28px;
  height: 28px;
  background: url(/sjnkdc/common/images/circle-down.png) no-repeat center;
  background-size: cover;
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 2;
}
.interview-link:hover {
  opacity: .8;
}

.interview {
  margin-top: 144px;
}
@media (max-width: 768px) {
  .interview {
    margin-top: 64px;
  }
}
.interview ._head {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.interview ._head ._text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 2.25rem;
}
.interview ._head ._text ._title {
  display: flex;
  flex-direction: column;
  width: fit-content;
  font-weight: 700;
  padding-bottom: 6px;
  margin: 0;
  line-height: 1.2;
}
.interview ._head ._text ._title ._label {
  width: fit-content;
  color: #cc0022;
  font-size: 1rem;
}
.interview ._head ._text ._title p {
  display: inline-block;
  width: fit-content;
  padding: 8px 6px;
  background-color: #fff;
  margin: 0;
  font-size: 2.5rem;
}
@media (max-width: 1200px) {
  .interview ._head ._text ._title p {
    font-size: 2rem;
  }
}
.interview ._head ._text ._cap {
  width: fit-content;
  padding: 12px;
  background-color: #F3EFE6;
  display: flex;
  font-size: 0.75rem;
  color: #333;
  margin-bottom: 16px;
}
.interview ._head ._text ._cap ._name {
  font-size: 1rem;
  font-weight: 700;
}
.interview ._head ._text ._cap p {
  margin: 0;
  padding-top: 4px;
}
.interview ._head ._text ._cap ._right {
  display: flex;
  flex-direction: row;
}
.interview ._head ._text ._cap ._right:before {
  content: '';
  display: block;
  width: 1px;
  height: 100%;
  background-color: rgba(119, 119, 119, 0.7);
  margin: 0 1.5rem;
}
.interview ._head ._img {
  width: 700px;
  height: 394px;
  display: flex;
  justify-content: center;
  margin-left: -100px;
  z-index: -1;
}
.interview ._head ._img img {
  object-fit: cover;
}
.interview .flex-row-reverse ._img {
  margin-left: 0;
  margin-right: -130px;
}
.interview > ._content {
  max-width: 930px;
  margin: 0 auto;
  margin-top: 80px;
}
.interview > ._content .Q {
  display: flex;
  align-items: anchor-center;
  column-gap: 2rem;
  font-weight: 700;
  color: #000;
  position: relative;
}
.interview > ._content .Q ._Q-label {
  color: #cc0022;
  font-size: 4rem;
}
.interview > ._content .Q ._Q-label:before {
  content: 'Q';
  color: #cc0022;
  font-size: 1.5rem;
}
.interview > ._content .Q p {
  font-size: 1.75rem;
  margin: 0;
}
.interview > ._content .Q:after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #cc0022;
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
}
.interview > ._content .A {
  display: flex;
  column-gap: 20px;
  padding: 2.5rem 1.5rem 0 1.5rem;
}
.interview > ._content .A ._label {
  width: fit-content;
  height: fit-content;
  display: inline-block;
  padding: 2px 12px;
  background-color: #cc0022;
  border-radius: 50px;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}
.interview > ._content .A ._main {
  width: fit-content;
  position: relative;
  padding-left: 2rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: #333;
  margin-bottom: 2rem;
}
.interview > ._content .A ._main:before {
  content: '“';
  color: rgba(119, 119, 119, 0.5);
  font-size: 3.5rem;
  position: absolute;
  left: 0rem;
  top: -2.5rem;
}
.interview > ._content .A ._main:after {
  content: '”';
  color: rgba(119, 119, 119, 0.5);
  font-size: 3.5rem;
  position: absolute;
  right: -2.5rem;
  bottom: -3.5rem;
}
.interview > ._content .A p {
  margin: 0;
  padding-left: 2rem;
  color: #333;
  font-size: 0.875rem;
  line-height: 1.75;
}
.interview > ._img {
  text-align: center;
  margin-top: 80px;
}
@media (max-width: 992px) {
  .interview ._head {
    flex-direction: column-reverse !important;
    align-items: center;
  }
  .interview ._head ._text {
    width: 100%;
    align-items: center;
  }
  .interview ._head ._text ._title {
    width: auto;
    line-height: 1;
  }
  .interview ._head ._text ._title p {
    width: auto;
  }
  .interview ._head ._text ._cap {
    margin-top: 1.5rem;
  }
  .interview ._head ._img {
    width: 100vw;
    height: auto;
    margin-left: 0;
    margin-bottom: -100px;
  }
  .interview > ._content {
    margin-top: 40px;
  }
  .interview > ._img {
    margin-top: 40px;
  }
  .interview.flex-row-reverse ._img {
    margin-right: 0;
  }
}
@media (max-width: 576px) {
  .interview ._head ._text ._title {
    line-height: 1;
  }
  .interview ._head ._text ._title ._label {
    font-size: 0.75rem;
  }
  .interview ._head ._text ._title p {
    font-size: 1.375rem;
  }
  .interview ._head ._text ._cap {
    display: flex;
    flex-direction: column;
    width: 80%;
  }
  .interview ._head ._text ._cap ._body {
    display: flex;
    flex-direction: row;
    column-gap: 16px;
  }
  .interview ._head ._text ._cap ._body p {
    padding-top: 0;
  }
  .interview ._head ._text ._cap ._right {
    display: flex;
    flex-direction: column;
    padding-top: 0.5rem;
    padding-left: 0;
  }
  .interview ._head ._text ._cap ._right:before {
    width: 100%;
    height: 1px;
    margin: 0.5rem 0;
  }
  .interview ._head.direction-reverse ._img {
    margin-left: 0;
    margin-right: 0;
  }
  .interview ._content .Q {
    flex-direction: column;
    align-items: flex-start;
  }
  .interview ._content .Q ._Q-label {
    font-size: 3.5rem;
  }
  .interview ._content .Q p {
    font-size: 1.25rem;
    padding-bottom: 1rem;
  }
  .interview ._content .A {
    flex-direction: column;
    padding: 0;
    padding-top: 1.5rem;
  }
  .interview ._content .A ._label {
    font-size: 0.875rem;
  }
  .interview ._content .A ._main {
    width: 100%;
    font-size: 1.125rem;
    padding: 1.5rem 0 1.5rem 0;
    margin-bottom: 0;
  }
  .interview ._content .A ._main:before {
    font-size: 2.5rem;
    left: 0rem;
    top: -0.5rem;
  }
  .interview ._content .A ._main:after {
    font-size: 2.5rem;
    right: -0.5rem;
    bottom: -1.5rem;
  }
  .interview ._content .A p {
    padding-left: 0;
  }
}

#recruitment .row > * {
  display: flex;
}
#recruitment .lead {
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 80px 0;
}
@media (max-width: 768px) {
  #recruitment .lead {
    font-size: 1.125rem;
    margin-bottom: 40px;
  }
}
#recruitment .recruitment-logo {
  width: 100%;
  height: 110px;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #777777;
  padding: 22px 34px;
  box-sizing: border-box;
}
#recruitment .recruitment-logo ._img {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#recruitment .recruitment-logo ._img img {
  max-height: 100%;
}
#recruitment .recruitment-logo:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  #recruitment .recruitment-logo {
    height: 80px;
    padding: 12px 34px;
  }
}
