@charset "UTF-8";
/* header height */
/* sub-header height */
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes blinking-s {
  0% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blinking {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in-left {
  0% {
    transform: translateX(60px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right {
  0% {
    transform: translateX(-60px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-up {
  0% {
    transform: translateY(60px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-down {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-zoom-in {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fade-zoom-out {
  0% {
    transform: scale(1.1);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fade-clip-left {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes fade-clip-right {
  from {
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes fade-clip-up {
  from {
    -webkit-clip-path: inset(100% 0 0 0);
            clip-path: inset(100% 0 0 0);
    opacity: 0;
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes fade-clip-down {
  from {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes fade-clip-center {
  from {
    -webkit-clip-path: inset(100%);
            clip-path: inset(100%);
    opacity: 0;
  }
  to {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
    opacity: 1;
  }
}
@keyframes fade-clip-circle {
  from {
    -webkit-clip-path: circle(0 at 50% 50%);
            clip-path: circle(0 at 50% 50%);
    opacity: 0;
  }
  to {
    -webkit-clip-path: circle(100% at 50% 50%);
            clip-path: circle(100% at 50% 50%);
    opacity: 1;
  }
}
@keyframes fade-clip-skew {
  from {
    -webkit-clip-path: polygon(0 0, 0 0, 0 0);
            clip-path: polygon(0 0, 0 0, 0 0);
    opacity: 0;
  }
  to {
    -webkit-clip-path: polygon(0 0, 200% 0, 0 200%);
            clip-path: polygon(0 0, 200% 0, 0 200%);
    opacity: 1;
  }
}
@keyframes fade-clip-wave {
  from {
    -webkit-clip-path: polygon(0 0, 0 0, 0 0);
            clip-path: polygon(0 0, 0 0, 0 0);
    transition: all 0.5s cubic-bezier(0.55, 0.06, 0.33, 1.85);
    transform: translateX(-30px) scale(0.8) skew(8deg);
    opacity: 0;
  }
  to {
    -webkit-clip-path: polygon(0 0, 200% 0, 0 200%);
            clip-path: polygon(0 0, 200% 0, 0 200%);
    transform: translateX(0) scale(1) skew(0);
    opacity: 1;
  }
}
@keyframes cover-left {
  0%, 20% {
    transform-origin: 0 50%;
  }
  20%, 100% {
    transform-origin: 100% 50%;
  }
  20% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
@keyframes cover-right {
  0%, 20% {
    transform-origin: 100% 50%;
  }
  20%, 100% {
    transform-origin: 0 50%;
  }
  20% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
@keyframes cover-up {
  0%, 20% {
    transform-origin: 50% 100%;
  }
  20%, 100% {
    transform-origin: 50% 0;
  }
  20% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0);
  }
}
@keyframes cover-down {
  0%, 20% {
    transform-origin: 50% 0;
  }
  20%, 100% {
    transform-origin: 50% 100%;
  }
  20% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0);
  }
}
@keyframes hover-zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes hover-zoom-out {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes hover-zoom-in-blink {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.1);
    opacity: 1;
  }
}
@keyframes hover-zoom-out-blink {
  0% {
    transform: scale(1.1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.sec__ttl {
  font-weight: 700;
  line-break: strict;
  line-height: 1.6;
  font-size: 1.25rem;
  color: #5594F6;
}

.job {
  padding-bottom: 150px;
  padding-top: 13px;
}
.job .job__nav {
  margin-left: auto;
  margin-right: auto;
  width: 900px;
  height: auto;
  padding-left: 25px;
  padding-right: 25px;
}
.job .job__nav ul {
  background: #fff;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 3.2px 4px;
  gap: 0px 4px;
}
.job .job__nav ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 58px;
}
.job .job__nav ul li a {
  transition: all 0.3s;
  font-weight: 700;
  line-break: strict;
  line-height: 1.6;
  font-size: 0.875rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 600;
  font-feature-settings: "palt";
  width: 100%;
  height: 100%;
  background: #fff;
  color: #5594F6;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: rgba(50, 50, 50, 0.5);
}
.job .job__nav ul li a.current {
  background: #5594F6;
  color: #fff !important;
}
.job .job__nav ul li a.current::after {
  font-weight: 700;
  line-break: strict;
  line-height: 1.6;
  font-size: 0.75rem;
  content: "";
  display: none;
}
.job .job__nav ul li a:hover {
  background: #5594F6;
  color: #fff !important;
}
.job .job__nav ul li a:hover::after {
  color: #fff !important;
}
.job .job__nav ul li a::after {
  transition: all 0.3s;
  font-weight: 700;
  line-break: strict;
  line-height: 1.6;
  font-size: 0.75rem;
  content: "(現在募集は行っておりません)";
  color: rgba(50, 50, 50, 0.5);
}
.job .job__nav ul li a.active {
  pointer-events: auto;
  color: #5594F6;
}
.job .job__nav ul li a.active::after {
  font-weight: 700;
  line-break: strict;
  line-height: 1.6;
  font-size: 0.75rem;
  content: "";
  display: none;
}
.job__content {
  width: 100%;
  height: auto;
  margin-top: 53px;
}
.job__ttl {
  font-weight: 700;
  line-break: strict;
  line-height: 1.6;
  font-size: 1.3125rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 600;
  font-feature-settings: "palt";
  text-align: left;
  margin-bottom: 30px;
}
.job table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.job table a {
  text-decoration: underline;
  will-change: transform opacity;
  color: #5594F6;
}
.job table .btn.round {
  text-decoration: none;
}
.job table tr {
  border-bottom: 1px solid rgba(67, 123, 210, 0.3);
}
.job table tr:first-child {
  border-top: 1px solid rgba(67, 123, 210, 0.3);
}
.job table th {
  font-weight: 700;
  line-break: strict;
  line-height: 1.6;
  font-size: 0.875rem;
  word-break: break-all;
  color: #5594F6;
  box-sizing: border-box;
  width: 33%;
  padding: 23px 20px 3px 0;
}
.job table td {
  font-weight: normal;
  line-break: strict;
  line-height: 1.6;
  font-size: 0.875rem;
  word-break: break-all;
  box-sizing: border-box;
  width: 67%;
  padding: 23px 0px;
}
@media (min-width: 640px) {
  .sec__ttl {
    line-height: 1.6;
    font-size: 1.25rem;
  }
  .job {
    padding-bottom: 200px;
  }
  .job {
    padding-top: 0px;
  }
  .job .job__nav {
    width: 100%;
    padding-top: 30px;
  }
  .job .job__nav ul li {
    height: 72px;
  }
  .job .job__nav ul li a {
    line-height: 1.6;
    font-size: 0.875rem;
  }
  .job .job__nav ul li a.current::after {
    line-height: 1.6;
    font-size: 0.75rem;
  }
  .job .job__nav ul li a::after {
    line-height: 1.6;
    font-size: 0.75rem;
  }
  .job .job__nav ul li a.active::after {
    line-height: 1.6;
    font-size: 0.75rem;
  }
  .job__ttl {
    line-height: 1.6;
    font-size: 1.3125rem;
  }
  .job table th {
    line-height: 1.6;
    font-size: 0.875rem;
  }
  .job table td {
    line-height: 1.6;
    font-size: 0.875rem;
  }
}
@media (min-width: 1100px) {
  .sec__ttl {
    line-height: 1.6;
    font-size: 2rem;
  }
  .job {
    padding-bottom: 200px;
  }
  .job .job__nav {
    width: 1000px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
  }
  .job .job__nav ul {
    padding: 4px 4px;
    gap: 0px 4px;
  }
  .job .job__nav ul li a {
    line-height: 1.6;
    font-size: 1rem;
  }
  .job .job__nav ul li a.current::after {
    line-height: 1.6;
    font-size: 0.75rem;
  }
  .job .job__nav ul li a::after {
    line-height: 1.6;
    font-size: 0.75rem;
  }
  .job .job__nav ul li a.active::after {
    line-height: 1.6;
    font-size: 0.75rem;
  }
  .job__content {
    margin-top: 89px;
  }
  .job__ttl {
    line-height: 1.6;
    font-size: 1.5rem;
  }
  .job__ttl {
    margin-bottom: 50px;
  }
  .job table th {
    line-height: 1.6;
    font-size: 1.125rem;
  }
  .job table th {
    width: 25%;
    padding: 32px 20px 32px 0;
  }
  .job table td {
    line-height: 1.6;
    font-size: 1.125rem;
  }
  .job table td {
    width: 75%;
    padding: 32px 0px;
  }
}
@media (hover: hover) {
  .job table a:hover {
    animation: blinking 0.5s ease 0s both;
  }
}