*,
*::before,
*::after {
  box-sizing: border-box;
}
@media only screen and (max-width: 47.9375em) {
  *,
  *::before,
  *::after {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

body {
  font-size: 1rem;
  text-rendering: optimizeSpeed;
  line-height: 1.55;
}

*:focus {
  outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

figure,
img,
picture,
svg {
  display: block;
}

img,
picture,
svg {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 47.9375em) {
  img,
  picture,
  svg {
    width: 100%;
  }
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  border-radius: 0;
}

input[type=text],
input[type=email],
input[type=number],
input[type=tel],
input[type=password],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type=number] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}

select {
  background: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
select::-ms-value {
  color: inherit;
  background: transparent;
}
select::-ms-expand {
  display: none;
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
  outline: 0;
}

button,
input[type=button],
input[type=submit],
input[type=reset] {
  background: transparent;
  font: inherit;
  border: 0;
  padding: 0;
  margin: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

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

html {
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
}

.serif {
  font-family: "Noto Serif JP", serif;
}

@media only screen and (max-width: 47.9375em) {
  .pc-only {
    display: none !important;
  }
}

@media only screen and (min-width: 48em) {
  .sp-only {
    display: none !important;
  }
}

.visually-hidden {
  position: fixed !important;
  top: 0px !important;
  left: 0px !important;
  width: 4px !important;
  height: 4px !important;
  opacity: 0 !important;
  overflow: hidden !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  visibility: visible !important;
}

#recruit-top .kv {
  height: calc(766 / 1360 * var(--inner-width) * 1px);
  padding-top: calc(110 / 1360 * var(--inner-width) * 1px);
  position: relative;
}
@media only screen and (max-width: 47.9375em) {
  #recruit-top .kv {
    height: calc(1046 / 768 * var(--inner-width) * 1px);
    margin-top: calc(94 / 768 * var(--inner-width) * 1px);
    padding-top: calc(110 / 768 * var(--inner-width) * 1px);
  }
}
#recruit-top .kv .kv-img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}
#recruit-top .kv .kv-img__filter {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, black, black);
  background-position-x: 0%;
  background-position-y: 0%;
  background-size: auto;
  mix-blend-mode: soft-light;
  animation: moveGradient 1s ease-in-out infinite alternate paused;
  background-size: 200% 200%;
  background-position: 0% 50%;
}
#recruit-top .kv .kv-img__filter.active {
  animation-play-state: running;
}
@keyframes moveGradient {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
#recruit-top .kv .kv-img__line-1 {
  position: absolute;
  opacity: 0.8;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: soft-light;
  animation: rotate360 40s linear infinite paused;
  animation-delay: 0s;
  animation-delay: 3s;
}
#recruit-top .kv .kv-img__line-1:before {
  animation: img-wrap 3s cubic-bezier(0.4, 0, 0.2, 1) forwards paused;
  background: #fff;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}
#recruit-top .kv .kv-img__line-1.active, #recruit-top .kv .kv-img__line-1.active:before {
  animation-play-state: running;
}
#recruit-top .kv .kv-img__line-1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@keyframes img-wrap {
  100% {
    transform: translateX(100%);
  }
}
@keyframes rotate360 {
  0% {
    transform: scale(1) rotate(0deg) scale(1);
  }
  25% {
    transform: scale(1.1) rotate(5deg) scale(1.05);
  }
  50% {
    transform: scale(1.2) rotate(-5deg) scale(1);
  }
  75% {
    transform: scale(1.1) rotate(5deg) scale(1.05);
  }
  100% {
    transform: scale(1.05) rotate(0deg) scale(1);
  }
}
#recruit-top .kv .kv-img__line-2 {
  position: absolute;
  opacity: 0.8;
  inset: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: soft-light;
  animation: rotate360rev 40s linear infinite paused;
  animation-delay: 3s;
}
#recruit-top .kv .kv-img__line-2:before {
  animation: img-wrap2 3s cubic-bezier(0.4, 0, 0.2, 1) forwards paused;
  background: #fff;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}
#recruit-top .kv .kv-img__line-2.active, #recruit-top .kv .kv-img__line-2.active:before {
  animation-play-state: running;
}
#recruit-top .kv .kv-img__line-2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@keyframes img-wrap2 {
  100% {
    transform: translateX(-100%);
  }
}
@keyframes rotate360rev {
  0% {
    transform: scale(1) rotate(0deg) scale(1);
  }
  25% {
    transform: scale(1.1) rotate(-5deg) scale(1.05);
  }
  50% {
    transform: scale(1.2) rotate(5deg) scale(1);
  }
  75% {
    transform: scale(1.1) rotate(-5deg) scale(1.05);
  }
  100% {
    transform: scale(1.05) rotate(0deg) scale(1);
  }
}
#recruit-top .kv .kv-img__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#recruit-top .kv .kv-img__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#recruit-top .kv .kv-inner {
  position: relative;
}
#recruit-top .kv .kv-ttl {
  width: calc(703 / 1360 * var(--inner-width) * 1px);
  mix-blend-mode: overlay;
  margin: 0 auto calc(20 / 1360 * var(--inner-width) * 1px);
}
@media only screen and (max-width: 47.9375em) {
  #recruit-top .kv .kv-ttl {
    width: calc(655 / 768 * var(--inner-width) * 1px);
    margin-bottom: 0;
  }
}
#recruit-top .kv .kv-text {
  font-size: calc(18 / 1360 * var(--inner-width) * 1px);
  font-weight: 700;
  line-height: 2.2;
  text-align: center;
  color: #003289;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
@media only screen and (max-width: 47.9375em) {
  #recruit-top .kv .kv-text {
    font-size: calc(26 / 768 * var(--inner-width) * 1px);
  }
}
#recruit-top .kv .kv-text strong {
  font-size: calc(31 / 1360 * var(--inner-width) * 1px);
  margin-bottom: calc(20 / 1360 * var(--inner-width) * 1px);
}
@media only screen and (max-width: 47.9375em) {
  #recruit-top .kv .kv-text strong {
    font-size: calc(42 / 768 * var(--inner-width) * 1px);
  }
}
#recruit-top .kv .kv-text img {
  width: calc(224 / 1360 * var(--inner-width) * 1px);
  margin-top: calc(30 / 1360 * var(--inner-width) * 1px);
}
@media only screen and (max-width: 47.9375em) {
  #recruit-top .kv .kv-text img {
    margin-top: calc(90 / 768 * var(--inner-width) * 1px);
    width: calc(320 / 768 * var(--inner-width) * 1px);
  }
}
#recruit-top .top-wrap {
  background: url(/recruit/assets/images/top/index-bg.jpg) no-repeat center center/cover;
  padding: calc(110 / 1360 * var(--inner-width) * 1px) 0 min(40px, 40 / 1360 * var(--inner-width) * 1px);
}
@media only screen and (max-width: 47.9375em) {
  #recruit-top .top-wrap {
    background-image: url(/recruit/assets/images/top/index-bg-sp.jpg);
    padding: calc(94 / 768 * var(--inner-width) * 1px) 0;
  }
}
#recruit-top .index-list {
  width: calc(1100 / 1360 * var(--inner-width) * 1px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 47.9375em) {
  #recruit-top .index-list {
    width: calc(628 / 768 * var(--inner-width) * 1px);
  }
}
#recruit-top .index-list__item {
  display: block;
  width: calc(503 / 1360 * var(--inner-width) * 1px);
  margin-bottom: calc(70 / 1360 * var(--inner-width) * 1px);
  position: relative;
}
@media only screen and (max-width: 47.9375em) {
  #recruit-top .index-list__item {
    width: 100%;
    margin-bottom: calc(90 / 768 * var(--inner-width) * 1px);
  }
}
#recruit-top .index-list__item .ttl {
  width: auto;
  height: calc(22 / 1360 * var(--inner-width) * 1px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: calc(20 / 1360 * var(--inner-width) * 1px);
}
@media only screen and (max-width: 47.9375em) {
  #recruit-top .index-list__item .ttl {
    height: calc(40 / 768 * var(--inner-width) * 1px);
    margin-bottom: calc(6 / 768 * var(--inner-width) * 1px);
  }
}
#recruit-top .index-list__item .ttl img {
  width: auto;
  height: 100%;
}
#recruit-top .index-list__item .ttl.keyword, #recruit-top .index-list__item .ttl.story {
  height: calc(27 / 1360 * var(--inner-width) * 1px);
}
@media only screen and (max-width: 47.9375em) {
  #recruit-top .index-list__item .ttl.keyword, #recruit-top .index-list__item .ttl.story {
    height: calc(51 / 768 * var(--inner-width) * 1px);
  }
}
#recruit-top .index-list__item .thumbnail {
  width: calc(503 / 1360 * var(--inner-width) * 1px);
  height: calc(306 / 1360 * var(--inner-width) * 1px);
  background: url(/recruit/assets/images/top/item-bg.jpg) no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media only screen and (max-width: 47.9375em) {
  #recruit-top .index-list__item .thumbnail {
    width: calc(628 / 768 * var(--inner-width) * 1px);
    height: calc(383 / 768 * var(--inner-width) * 1px);
  }
}
#recruit-top .index-list__item .thumbnail img {
  width: calc(479 / 1360 * var(--inner-width) * 1px);
  height: auto;
}
@media only screen and (max-width: 47.9375em) {
  #recruit-top .index-list__item .thumbnail img {
    width: calc(598 / 768 * var(--inner-width) * 1px);
  }
}
#recruit-top .index-list__item .thumbnail::before {
  display: block;
  content: "";
  width: 1px;
  height: calc(306 / 1360 * var(--inner-width) * 1px);
  background: #fff;
  position: absolute;
  top: 0;
  left: calc(10 / 1360 * var(--inner-width) * 1px);
}
@media only screen and (max-width: 47.9375em) {
  #recruit-top .index-list__item .thumbnail::before {
    height: calc(383 / 768 * var(--inner-width) * 1px);
    left: calc(14 / 768 * var(--inner-width) * 1px);
  }
}
#recruit-top .index-list__item .thumbnail::after {
  display: block;
  content: "";
  width: 1px;
  height: calc(306 / 1360 * var(--inner-width) * 1px);
  background: #fff;
  position: absolute;
  top: 0;
  right: calc(10 / 1360 * var(--inner-width) * 1px);
}
@media only screen and (max-width: 47.9375em) {
  #recruit-top .index-list__item .thumbnail::after {
    height: calc(383 / 768 * var(--inner-width) * 1px);
    right: calc(14 / 768 * var(--inner-width) * 1px);
  }
}
#recruit-top .index-list__item .name {
  text-align: center;
  font-size: calc(17 / 1360 * var(--inner-width) * 1px);
  font-weight: 700;
  color: #003289;
  margin-top: calc(16 / 1360 * var(--inner-width) * 1px);
}
@media only screen and (max-width: 47.9375em) {
  #recruit-top .index-list__item .name {
    font-size: calc(30 / 768 * var(--inner-width) * 1px);
    margin-top: calc(20 / 768 * var(--inner-width) * 1px);
  }
}
#recruit-top .index-list__item::after {
  display: block;
  content: "";
  background: url(/recruit/assets/images/top/btn-icon.png) no-repeat center center/cover;
  width: calc(30 / 1360 * var(--inner-width) * 1px);
  height: calc(30 / 1360 * var(--inner-width) * 1px);
  position: absolute;
  top: 0;
  right: 0;
}
@media only screen and (max-width: 47.9375em) {
  #recruit-top .index-list__item::after {
    width: calc(60 / 768 * var(--inner-width) * 1px);
    height: calc(60 / 768 * var(--inner-width) * 1px);
    top: calc(-15 / 768 * var(--inner-width) * 1px);
  }
}
@media only screen and (max-width: 47.9375em) {
  #recruit-top .index-list__item:last-child {
    margin-bottom: 0;
  }
}
#recruit-top .top-message {
  background: url(/recruit/assets/images/top/message-bg.jpg) no-repeat center center/cover;
  height: calc(671 / 1360 * var(--inner-width) * 1px);
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 47.9375em) {
  #recruit-top .top-message {
    height: auto;
    background-image: url(/recruit/assets/images/top/message-bg-sp.jpg);
  }
}
@media only screen and (min-width: 48em) {
  #recruit-top .top-message::before {
    display: block;
    content: "";
    background: url(/recruit/assets/images/top/message-bg2.png) no-repeat center center/cover;
    width: calc(899 / 1360 * var(--inner-width) * 1px);
    height: calc(899 / 1360 * var(--inner-width) * 1px);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
}
@media only screen and (min-width: 48em) and (max-width: 47.9375em) {
  #recruit-top .top-message::before {
    width: calc(999 / 768 * var(--inner-width) * 1px);
    height: calc(999 / 768 * var(--inner-width) * 1px);
  }
}
#recruit-top .top-message .top-message__inner {
  padding-top: calc(88 / 1360 * var(--inner-width) * 1px);
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 47.9375em) {
  #recruit-top .top-message .top-message__inner {
    padding: calc(90 / 768 * var(--inner-width) * 1px) 0;
  }
}
#recruit-top .top-message .top-message__inner h3 {
  text-align: center;
  color: #003289;
  font-size: calc(39 / 1360 * var(--inner-width) * 1px);
  font-weight: 500;
  margin-bottom: calc(30 / 1360 * var(--inner-width) * 1px);
}
@media only screen and (max-width: 47.9375em) {
  #recruit-top .top-message .top-message__inner h3 {
    font-size: calc(39 / 768 * var(--inner-width) * 1px);
    margin-bottom: calc(30 / 768 * var(--inner-width) * 1px);
  }
}
#recruit-top .top-message .top-message__inner p {
  font-size: calc(16 / 1360 * var(--inner-width) * 1px);
  font-weight: 600;
  text-align: center;
  line-height: 2.2;
}
@media only screen and (max-width: 47.9375em) {
  #recruit-top .top-message .top-message__inner p {
    font-size: calc(26 / 768 * var(--inner-width) * 1px);
  }
}/*# sourceMappingURL=top.css.map */