@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

/* mb-1 ~ mb-10 */
.mb-1 {
  margin-bottom: 10px;
}

.mb-2 {
  margin-bottom: 20px;
}

.mb-3 {
  margin-bottom: 30px;
}

.mb-4 {
  margin-bottom: 40px;
}

.mb-5 {
  margin-bottom: 50px;
}

.mb-6 {
  margin-bottom: 60px;
}

.mb-7 {
  margin-bottom: 70px;
}

.mb-8 {
  margin-bottom: 80px;
}

.mb-9 {
  margin-bottom: 90px;
}

.mb-10 {
  margin-bottom: 100px;
}

/* col2-19 ~ col2-91 */
.vertical {
  place-self: center;
}

.col2-19 {
  display: grid;
  grid-template-columns: 1fr;
}
.col2-19 .left, .col2-19 .right {
  position: relative;
}

.col2-28 {
  display: grid;
  grid-template-columns: 1fr;
}
.col2-28 .left, .col2-28 .right {
  position: relative;
}

.col2-37 {
  display: grid;
  grid-template-columns: 1fr;
}
.col2-37 .left, .col2-37 .right {
  position: relative;
}

.col2-46 {
  display: grid;
  grid-template-columns: 1fr;
}
.col2-46 .left, .col2-46 .right {
  position: relative;
}

.col2-55 {
  display: grid;
  grid-template-columns: 1fr;
}
.col2-55 .left, .col2-55 .right {
  position: relative;
}

.col2-64 {
  display: grid;
  grid-template-columns: 1fr;
}
.col2-64 .left, .col2-64 .right {
  position: relative;
}

.col2-73 {
  display: grid;
  grid-template-columns: 1fr;
}
.col2-73 .left, .col2-73 .right {
  position: relative;
}

.col2-82 {
  display: grid;
  grid-template-columns: 1fr;
}
.col2-82 .left, .col2-82 .right {
  position: relative;
}

.col2-91 {
  display: grid;
  grid-template-columns: 1fr;
}
.col2-91 .left, .col2-91 .right {
  position: relative;
}

@media print, screen and (min-width: 968px) {
  .col2-19 {
    grid-template-columns: 1fr 9fr;
  }
  .col2-28 {
    grid-template-columns: 2fr 8fr;
  }
  .col2-37 {
    grid-template-columns: 3fr 7fr;
  }
  .col2-46 {
    grid-template-columns: 4fr 6fr;
  }
  .col2-55 {
    grid-template-columns: 5fr 5fr;
  }
  .col2-64 {
    grid-template-columns: 6fr 4fr;
  }
  .col2-73 {
    grid-template-columns: 7fr 3fr;
  }
  .col2-82 {
    grid-template-columns: 8fr 2fr;
  }
  .col2-91 {
    grid-template-columns: 9fr 1fr;
  }
}
.g-1 {
  gap: 10px;
}

.g-2 {
  gap: 20px;
}

.g-3 {
  gap: 30px;
}

.g-4 {
  gap: 40px;
}

.g-5 {
  gap: 50px;
}

.g-6 {
  gap: 60px;
}

.g-7 {
  gap: 70px;
}

.g-8 {
  gap: 80px;
}

.g-9 {
  gap: 90px;
}

.g-10 {
  gap: 100px;
}

:root {
  --main-color: #044299;
  --main-light-color: #176EE9;
  --main-bg-color: #ecf0f1;
  --main-font-color: #044299;
  --sub-color: #E8414D;
  --sub-light-color: #ffd8d8;
  --sub-bg-color: #ffe9e9;
  --sub-font-color: #E8414D;
  --main-font-light-color: #176EE9;
  --main-font-size: 16px;
  --main-font-family: "Arial", sans-serif;
  --main-line-height: 1.5;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  background-attachment: fixed;
  background-image: url(../img/bg.png);
  background-size: 220px;
  overflow-x: hidden;
}
body.red .hamb .left, body.red .hamb .right {
  display: none !important;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100lvh;
  border: solid 10px var(--main-color);
  border-radius: 20px;
  pointer-events: none;
  z-index: 10010;
}
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100lvh;
  border: solid 10px var(--main-color);
  pointer-events: none;
  z-index: 10000;
}

.raleway {
  font-family: "raleway", sans-serif;
  font-weight: 700;
  font-style: italic;
}

/* visiblityとopacityとpointer-eventでfadeIn/Out */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    visibility: visible;
    pointer-events: all;
  }
  100% {
    opacity: 100%;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    visibility: visible;
    pointer-events: all;
  }
  100% {
    opacity: 100%;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 100%;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 100%;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
.global-nav {
  display: none;
}
.global-nav.pc, .global-nav.sp {
  display: flex;
}

.logo.active {
  -webkit-animation: fadeIn 0.3s forwards;
          animation: fadeIn 0.3s forwards;
}
.logo.hide {
  -webkit-animation: fadeOut 0.3s forwards;
          animation: fadeOut 0.3s forwards;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: start;
  z-index: 10015;
}
header h1 {
  margin: 10px 0 0 10px;
  padding: 10px 30px 5px 20px;
  background-color: #fff;
  border-radius: 10px 0 20px 0;
}
header h1 img {
  width: 200px;
}
@media print, screen and (min-width: 968px) {
  header h1 img {
    width: 232px;
  }
}
header .sp {
  position: relative;
}
header .sp.active .hamb .bar, header .sp.hide .hamb .bar {
  transition: all 0.3s ease-in-out;
}
header .sp.hide .global, header .sp.hide .back {
  display: flex;
  -webkit-animation: fadeOut 0.3s forwards;
          animation: fadeOut 0.3s forwards;
}
header .sp.active .global, header .sp.active .back {
  display: flex;
  -webkit-animation: fadeIn 0.3s forwards;
          animation: fadeIn 0.3s forwards;
}
header .sp.active .hamb .bar:nth-of-type(1) {
  transform: translate(-20px, -5px) rotate(45deg);
}
header .sp.active .hamb .bar:nth-of-type(2) {
  transform: translate(-20px, -5px) rotate(45deg);
}
header .sp.active .hamb .bar:nth-of-type(3) {
  transform: translate(-20px, -5px) rotate(-45deg);
}
header .sp .hamb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  background-color: var(--main-color);
  cursor: pointer;
  z-index: 10015;
  position: absolute;
  top: 0;
  right: 0;
  border-bottom-left-radius: 10px;
}
header .sp .hamb .left, header .sp .hamb .right {
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  overflow: hidden;
}
header .sp .hamb .left::before, header .sp .hamb .right::before {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  background-color: transparent;
  border-radius: 50%;
  position: absolute;
}
header .sp .hamb .left {
  top: 10px;
  left: -20px;
}
header .sp .hamb .left::before {
  top: 0;
  left: 0;
  box-shadow: 10px -10px 0 0 var(--main-color);
}
header .sp .hamb .right {
  top: 100%;
  right: 10px;
}
header .sp .hamb .right::before {
  top: 0;
  left: 0;
  box-shadow: 10px -10px 0 0 var(--main-color);
}
header .sp .hamb .bar {
  width: 40px;
  height: 4px;
  background-color: #fff;
  border-radius: 2px;
  margin: 5px 0;
  position: absolute;
  top: 50%;
  left: 50%;
}
header .sp .hamb .bar:nth-of-type(1) {
  transform: translate(-20px, -20px);
}
header .sp .hamb .bar:nth-of-type(2) {
  transform: translate(-20px, -5px);
}
header .sp .hamb .bar:nth-of-type(3) {
  transform: translate(-20px, 10px);
}
header .sp .back {
  position: fixed;
  background-color: var(--main-color);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  display: none;
}
header .sp .global {
  position: fixed;
  top: 0;
  left: 0;
  font-size: 26px;
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
header .sp .global li {
  line-height: 2.3;
  width: 100%;
}
header .sp .global li a {
  color: #fff;
  width: 100%;
  text-decoration: none;
  font-size: 22px;
  text-align: center;
  display: block;
}
header .pc .global {
  display: flex;
  position: absolute;
  top: 20px;
  right: 20px;
  border: solid 2px var(--main-color);
  border-radius: 10px;
  background-color: #fff;
}
header .pc .global li a {
  text-decoration: none;
  color: var(--main-font-color);
  font-weight: bold;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
}
header .pc .global li:first-of-type a {
  padding: 0 10px 0 20px;
}
header .pc .global li:last-of-type a {
  padding: 0 20px 0 10px;
}

.wide-content > .inner {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* scaleアニメーション */
@-webkit-keyframes scale {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes scale {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes spin {
  0% {
    opacity: 0;
    transform: rotate(-15deg);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg);
  }
}
@keyframes spin {
  0% {
    opacity: 0;
    transform: rotate(-15deg);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg);
  }
}
.one-point.active .triangle {
  -webkit-animation: spin 0.5s ease-in-out forwards;
          animation: spin 0.5s ease-in-out forwards;
}
.one-point.active .triangle .plan {
  -webkit-animation: spin 0.5s ease-in-out forwards;
          animation: spin 0.5s ease-in-out forwards;
}

.triangle {
  position: relative;
  display: grid;
  place-items: center;
  opacity: 0;
}
.triangle img {
  width: 100%;
  max-width: 500px;
}

@media print, screen and (min-width: 968px) {
  .triangle {
    transform: scale(1) !important;
  }
  .triangle .plan-wrap {
    position: absolute;
    top: calc(50% - 50px);
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
  }
  .triangle .plan-wrap .plan:nth-of-type(1) {
    position: absolute;
    top: -180px;
    left: -100px;
    background-color: #f6f6f6;
  }
  .triangle .plan-wrap .plan:nth-of-type(2) {
    position: absolute;
    top: 100px;
    left: -270px;
    background-color: #f6f6f6;
  }
  .triangle .plan-wrap .plan:nth-of-type(3) {
    position: absolute;
    top: 100px;
    left: 70px;
    background-color: #f6f6f6;
  }
}
section {
  overflow: hidden;
}

section.number {
  padding: 30px 0;
}

@media print, screen and (min-width: 968px) {
  section.number {
    padding: 100px 0;
  }
}
.img-col1 img {
  width: 100%;
  height: auto;
}

.grid-number {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 40px;
}
.grid-number .block {
  border: solid 5px var(--main-color);
  box-shadow: #6abcff 0 10px 0 0px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  padding: 40px 20px 20px;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
  background-color: #fff;
}
.grid-number .block .head {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--main-light-color);
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  border-radius: 0 0 14px;
  padding: 8px 15px;
  line-height: 1;
}
.grid-number .block .number-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 10px 20px;
  place-items: center;
}
.grid-number .block .number-wrap .number {
  display: flex;
  align-items: center;
  gap: 10px;
}
.grid-number .block .number-wrap .number .count {
  font-size: 40px;
  font-weight: bold;
  color: var(--sub-color);
}
.grid-number .block .number-wrap .number .sub {
  font-size: 30px;
  font-weight: normal;
  color: var(--main-font-color);
  margin-left: 10px;
}
.grid-number .block .number-wrap img {
  max-width: 80px;
}
.grid-number .block .text {
  border-top: solid 1px var(--main-bg-color);
  padding-top: 20px;
}

@media print, screen and (min-width: 968px) {
  .grid-number {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-number .block {
    padding: 40px;
  }
  .grid-number .block .number-wrap {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 100px;
    padding: 10px 20px;
  }
  .grid-number .block .number-wrap .number .count {
    font-size: 64px;
  }
  .grid-number .block .number-wrap img {
    max-width: 120px;
  }
}
.swiper-pagination {
  position: static !important;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  gap: 10px;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 30px;
  height: 20px;
  background-color: var(--main-color);
  border-radius: 20px;
  opacity: 0.5;
  margin: 0 !important;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--main-light-color);
}

@media print, screen and (min-width: 968px) {
  .swiper-pagination {
    justify-content: flex-start;
    gap: 5px;
  }
  .swiper-pagination .swiper-pagination-bullet {
    width: 40px;
    height: 25px;
  }
}
.recruit-info {
  display: grid;
  margin-bottom: 60px;
}
.recruit-info .tab {
  grid-column: 1/2;
  grid-row: 1/2;
  pointer-events: none;
  position: relative;
}
.recruit-info .tab .left, .recruit-info .tab .right {
  display: none;
}
.recruit-info .tab:has(input:checked) {
  z-index: 10;
}
.recruit-info .tab:has(input:checked) .left, .recruit-info .tab:has(input:checked) .right {
  display: block;
}
.recruit-info .tab:nth-of-type(1) .left {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 20px;
  height: 20px;
  overflow: hidden;
}
.recruit-info .tab:nth-of-type(1) .left::before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: -3px;
  left: 3px;
  background-color: transparent;
  border-radius: 10px;
  display: inline-block;
  box-shadow: -10px -10px 0 0 var(--main-color);
}
.recruit-info .tab:nth-of-type(1) .right {
  position: absolute;
  bottom: 0;
  right: -20px;
  width: 20px;
  height: 20px;
  overflow: hidden;
}
.recruit-info .tab:nth-of-type(1) .right::before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: transparent;
  border-radius: 10px;
  display: inline-block;
  box-shadow: -10px 10px 0 0 var(--main-color);
}
.recruit-info .tab:nth-of-type(2) {
  display: grid;
  place-items: start end;
}
.recruit-info .tab:nth-of-type(2) .left {
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 20px;
  height: 20px;
  overflow: hidden;
}
.recruit-info .tab:nth-of-type(2) .left::before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: -3px;
  left: -3px;
  background-color: transparent;
  border-radius: 10px;
  display: inline-block;
  box-shadow: 10px -10px 0 0 var(--main-color);
}
.recruit-info .tab:nth-of-type(2) .right {
  position: absolute;
  bottom: 0;
  left: -20px;
  width: 20px;
  height: 20px;
  overflow: hidden;
}
.recruit-info .tab:nth-of-type(2) .right::before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: transparent;
  border-radius: 10px;
  display: inline-block;
  box-shadow: 10px 10px 0 0 var(--main-color);
}
.recruit-info .tab .head {
  width: 50%;
  pointer-events: all;
  color: var(--main-font-color);
  font-weight: bold;
  background-color: #f3f3f3;
  border-radius: 10px 10px 0 0;
  position: relative;
  padding: 10px;
}
.recruit-info .tab .head:has(input:checked) {
  background-color: var(--main-color);
  color: #fff;
}
.recruit-info .tab .head:has(input:checked) + .content {
  display: block !important;
}
.recruit-info .tab .head label {
  display: block;
  width: 100%;
  padding: 10px 10px;
  cursor: pointer;
  text-align: center;
  font-size: 16px;
}
.recruit-info .tab .head input {
  display: none;
}
.recruit-info .tab .content {
  width: 100%;
  display: none;
  background-color: #f6f6f6;
}
.recruit-info .tab .content .inner {
  border: solid 3px var(--main-color);
  border-radius: 12px;
  overflow: hidden;
}

@media print, screen and (min-width: 968px) {
  .recruit-info .tab .head label {
    font-size: 18px;
    padding: 20px;
  }
}
.h3-top {
  font-size: 30px;
  line-height: 1.5;
  color: var(--sub-font-color);
  margin-bottom: 20px;
  text-align: center;
  position: relative;
}

.dl-recruit {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 10px;
  overflow: hidden;
}
.dl-recruit.red {
  border: solid 3px var(--sub-color);
}
.dl-recruit.red dt, .dl-recruit.red dd {
  color: var(--sub-font-color) !important;
}
.dl-recruit.red dt:not(:last-of-type), .dl-recruit.red dd:not(:last-of-type) {
  border-bottom: solid 1px var(--sub-light-color) !important;
}
.dl-recruit.red dt {
  background-color: var(--sub-bg-color) !important;
}
.dl-recruit dt, .dl-recruit dd {
  padding: 10px;
  font-size: var(--main-font-size);
  line-height: var(--main-line-height);
  color: var(--main-font-color);
}
.dl-recruit dt:not(:last-of-type), .dl-recruit dd:not(:last-of-type) {
  border-bottom: solid 1px #d5ebff;
}
.dl-recruit dt {
  background-color: #ecf6ff;
}
.dl-recruit dd {
  background-color: #fff;
}

@media print, screen and (min-width: 968px) {
  .dl-recruit {
    grid-template-columns: auto 1fr;
  }
  .dl-recruit dt, .dl-recruit dd {
    padding: 20px;
  }
}
.interview > .inner {
  padding: 20px 20px;
}

@media print, screen and (min-width: 968px) {
  .interview > .inner {
    padding: 0 20px 100px;
  }
}
.voice-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}
.voice-wrap .block {
  grid-row: span 1;
  padding-right: 50px;
}
.voice-wrap .block .inner {
  height: 100%;
  background-color: var(--main-light-color);
  border: solid 5px var(--main-color);
  border-radius: 20px 40px 20px 40px;
  display: grid;
  grid-template-rows: 50px 1fr;
  position: relative;
  box-shadow: #6abcff 10px 10px 0 0px;
}
.voice-wrap .block .inner .head {
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  line-height: 1.25;
  display: flex;
  align-items: center;
  padding-left: 1.5em;
  position: relative;
  transform: translateY(3px);
}
.voice-wrap .block .inner .head span {
  font-size: 12px;
  font-weight: normal;
  margin-left: 15px;
  padding-right: 1em;
}
.voice-wrap .block .inner .head::before {
  content: "";
  width: 15px;
  height: 16px;
  background-color: var(--main-color);
  display: inline-block;
  position: absolute;
  top: 16px;
  left: 0;
  border-radius: 0 5px 5px 0;
}
.voice-wrap .block .inner .content {
  background-color: #fff;
  border: solid 6px var(--main-light-color);
  border-radius: 17px 17px 17px 37px;
  padding: 22px;
  display: grid;
  gap: 5px;
  color: var(--main-font-color);
}
.voice-wrap .block .inner .content ul {
  padding: 10px 0;
}
.voice-wrap .block .inner .content ul li {
  color: var(--main-font-color);
  line-height: 1.5;
}
.voice-wrap .block .inner .content ul li::before {
  content: "-";
  color: var(--main-color);
  font-size: 20px;
  margin-right: 10px;
}
.voice-wrap .block .inner .content dl {
  display: grid;
  grid-template-columns: 1fr;
}
.voice-wrap .block .inner .content dl dt {
  color: var(--main-color);
  font-weight: bold;
}
.voice-wrap .block .inner .img-voice {
  position: absolute;
  bottom: -40px;
  right: -60px;
}
.voice-wrap .block .inner .img-voice img {
  max-width: 100px;
}
.voice-wrap .block .inner .img-voice::before {
  content: "";
  width: 70px;
  height: 15px;
  background-color: var(--main-color);
  position: absolute;
  border-radius: 100%;
  bottom: 7px;
  left: 27px;
  display: block;
  z-index: -1;
  opacity: 0.6;
}

@media print, screen and (min-width: 968px) {
  .voice-wrap {
    grid-template-columns: 1fr 1fr;
  }
  .voice-wrap .block {
    padding-right: 100px;
  }
  .voice-wrap .block .inner .head {
    font-size: 20px;
  }
  .voice-wrap .block .inner .head span {
    font-size: 14px;
  }
  .voice-wrap .block .inner .head::before {
    width: 20px;
  }
  .voice-wrap .block .inner .content dl {
    grid-template-columns: auto 1fr;
  }
  .voice-wrap .block .inner .img-voice {
    right: -110px;
  }
  .voice-wrap .block .inner .img-voice img {
    max-width: 130px;
  }
  .voice-wrap .block .inner .img-voice::before {
    width: 100px;
    left: 27px;
  }
}
@-webkit-keyframes pulse {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.2);
  }
  20% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.2);
  }
  20% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes jump {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes jump {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.title {
  position: relative;
  height: 100lvh;
  display: grid;
  place-items: center;
  overflow: visible;
}
.title .title-wrap {
  text-align: center;
  background-image: url(../img/bg_title.png);
  background-size: 358px auto;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 40px;
  position: relative;
  z-index: 2;
}
.title .title-wrap .person {
  z-index: -1;
}
.title .title-wrap .person img {
  position: absolute;
  width: 100px;
}
.title .title-wrap .person img:nth-of-type(1) {
  top: 60%;
  left: 2%;
}
.title .title-wrap .person img:nth-of-type(2) {
  top: 60%;
  right: 2%;
}
.title .title-wrap .h2-title {
  display: inline-block;
  font-size: 40px;
  white-space: nowrap;
  color: var(--main-color);
  position: relative;
}
.title .title-wrap .h2-title::before {
  content: "静岡ケイテクノ";
  position: absolute;
  top: 0;
  left: 1px;
  color: #F00;
  white-space: nowrap;
  z-index: -1;
}
.title .title-wrap .h2-title::after {
  content: "静岡ケイテクノ";
  position: absolute;
  top: 0;
  left: -1px;
  color: #0F0;
  white-space: nowrap;
  z-index: -1;
}
.title .title-wrap .sub-title {
  font-weight: bold;
}
.title .title-wrap .sub-title span {
  color: var(--main-font-light-color);
  font-size: 20px;
}
.title .title-wrap .sub {
  color: var(--main-font-color);
  font-weight: bold;
  font-size: 30px;
}
.title .title-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.title .title-back img {
  width: 100%;
  height: auto;
  max-width: 80px;
  position: absolute;
}
.title .title-back img:nth-of-type(1) {
  top: 13.89%;
  left: 3%;
}
.title .title-back img:nth-of-type(2) {
  top: 10.74%;
  left: 50.29%;
}
.title .title-back img:nth-of-type(3) {
  top: 46.3%;
  left: 3%;
}
.title .title-back img:nth-of-type(4) {
  top: 65.56%;
  left: 83.75%;
}
.title .title-back img:nth-of-type(5) {
  top: -5%;
  left: 85.42%;
}
.title .title-back img:nth-of-type(6) {
  top: 81.48%;
  left: 30.4%;
}
.title .title-back img:nth-of-type(7) {
  top: 74.07%;
  left: 56.25%;
}
.title .title-back img:nth-of-type(8) {
  top: 72.22%;
  left: -3.65%;
}
.title .title-back img:nth-of-type(9) {
  top: 30%;
  left: 81.77%;
}
.title .title-back img:nth-of-type(10) {
  top: -10%;
  left: 31.77%;
}
.title .title-back img:nth-of-type(11) {
  top: 85%;
  left: 75%;
}

@media print, screen and (min-width: 968px) {
  .title {
    height: 100lvh;
  }
  .title .title-wrap {
    background-size: 558px auto;
  }
  .title .title-wrap .person {
    z-index: -1;
  }
  .title .title-wrap .person img {
    width: 160px;
    position: absolute;
  }
  .title .title-wrap .person img:nth-of-type(1) {
    top: 0;
    left: -140px;
  }
  .title .title-wrap .person img:nth-of-type(2) {
    top: 0;
    right: -140px;
  }
  .title .title-wrap .h2-title {
    font-size: 70px;
  }
  .title .title-back {
    overflow: visible;
  }
  .title .title-back img {
    max-width: 230px;
  }
}
.message {
  display: grid;
  place-items: center;
  height: 100lvh;
  padding-bottom: 100px;
  text-align: center;
  position: relative;
  overflow: visible;
}
.message .h2-en {
  color: var(--main-color);
  position: relative;
  display: inline-block;
  z-index: 2;
  font-size: 36px;
  margin-bottom: 40px;
}
.message .h2-en::before {
  content: "Message";
  position: absolute;
  top: 0;
  left: 1px;
  color: #F00;
  white-space: nowrap;
  z-index: -1;
}
.message .h2-en::after {
  content: "Message";
  position: absolute;
  top: 0;
  left: -1px;
  color: #0F0;
  white-space: nowrap;
  z-index: -1;
}
.message .content {
  font-size: 15px;
  line-height: 1.8;
  color: var(--main-font-color);
  position: relative;
  z-index: 10;
  padding: 0 30px;
}
.message .content::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: -1;
  filter: blur(10px);
}
.message .title-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.message .title-back img {
  width: 100%;
  height: auto;
  max-width: 80px;
  position: absolute;
}
.message .title-back img:nth-of-type(1) {
  top: 80%;
  left: 85%;
}
.message .title-back img:nth-of-type(2) {
  top: 40%;
  left: 75%;
}
.message .title-back img:nth-of-type(3) {
  top: 90%;
  left: 65%;
}
.message .title-back img:nth-of-type(4) {
  top: 80%;
  left: 15%;
}
.message .title-back img:nth-of-type(5) {
  top: 50%;
  left: -5%;
}
.message .title-back img:nth-of-type(6) {
  top: 10%;
  left: 15%;
}

@media print, screen and (min-width: 968px) {
  .message {
    padding-bottom: 300px;
  }
  .message .h2-en {
    font-size: 50px;
  }
  .message .content {
    font-size: 22px;
  }
  .message .title-back img {
    max-width: 230px;
  }
}
.about {
  position: relative;
  z-index: 10001;
  padding: 100px 0 100px;
}
.about::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.about .center {
  background-color: var(--main-color);
  padding: 100px 20px;
  z-index: 2;
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='70' height='70'%3E%3Cline x1='35' y1='25' x2='35' y2='45' stroke='%230A4BA8' stroke-width='2'/%3E%3Cline x1='25' y1='35' x2='45' y2='35' stroke='%230A4BA8' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: repeat;
}
.about .center .inner {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}
.about .content {
  position: relative;
  color: #fff;
}
.about .content .h2-side {
  font-size: 28px;
  margin-bottom: 20px;
}
.about .content .h2-side span {
  display: block;
  font-size: 18px;
}
.about .content .h3-side {
  font-size: 26px;
  margin-bottom: 20px;
}
.about .content .sub {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 20px;
  font-weight: bold;
}
.about .content p {
  line-height: 2;
}
.about .content .back {
  position: relative;
  z-index: -1;
  transform: translateY(-30px);
  margin-top: 180px;
}
.about .content .back img {
  position: absolute;
}
.about .content .back .map {
  width: 400px;
  height: auto;
  bottom: -100px;
  right: 50px;
}
.about .content .back .location {
  width: 40px;
  height: auto;
  bottom: 60px;
  right: 100px;
  -webkit-animation: jump 4s ease-in-out infinite;
          animation: jump 4s ease-in-out infinite;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  filter: drop-shadow(0 0 10px rgba(0, 23, 105, 0.1411764706));
}
.about .content .back .wave-1 {
  width: 100px;
  height: auto;
  bottom: 10px;
  right: 70px;
  -webkit-animation: pulse 4s ease-in-out infinite;
          animation: pulse 4s ease-in-out infinite;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.about .content .back .wave-2 {
  width: 60px;
  height: auto;
  bottom: 30px;
  right: 90px;
  -webkit-animation: pulse 4s ease-in-out infinite;
          animation: pulse 4s ease-in-out infinite;
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.about .content .back .wave-3 {
  width: 30px;
  height: auto;
  bottom: 45px;
  right: 105px;
  -webkit-animation: pulse 4s ease-in-out infinite;
          animation: pulse 4s ease-in-out infinite;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.about .content .back .line {
  width: 200px;
  height: 1px;
  background-color: #fff;
  opacity: 0.5;
  position: absolute;
  bottom: 110px;
  right: -65px;
  transform: rotate(-30deg);
  display: none;
}
.about .img-wrap {
  position: static;
  width: 100%;
  font-size: 0;
}
.about .img-wrap img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 55%;
     object-position: 55%;
  border-radius: 30px;
  box-shadow: rgba(9, 56, 96, 0.462745098) 30px 30px 30px 0px;
}
.about .top, .about .bottom {
  position: absolute;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100px;
}
.about .top::before, .about .bottom::before {
  content: "";
  display: block;
  outline-style: solid;
  outline-color: var(--main-color);
  outline-width: 100px;
  border-radius: 0 0 80px 80px;
  border-top: none;
  width: calc(100% - 20px);
  height: 100px;
  transform: translateX(10px);
  pointer-events: none;
}
.about .top {
  top: 0;
}
.about .bottom {
  bottom: 0;
  transform: rotate(180deg);
}

@media print, screen and (min-width: 968px) {
  .about {
    padding: 230px 0 200px;
  }
  .about .center {
    padding: 200px 20px;
  }
  .about .content .h2-side {
    font-size: 40px;
    margin-bottom: 30px;
  }
  .about .content .h2-side span {
    font-size: 26px;
  }
  .about .h3-side {
    font-size: 26px;
  }
  .about .sub {
    font-size: 30px;
  }
  .about .img-wrap {
    position: absolute;
    top: calc(50% - 50px);
    right: 0;
    transform: translateY(-50%);
  }
  .about .img-wrap img {
    height: 700px;
  }
  .about .top {
    height: 230px;
  }
  .about .top::before {
    height: 230px;
  }
  .about .bottom {
    bottom: 100px;
  }
  .about .content .back {
    margin-top: 0;
  }
  .about .content .back .line {
    display: block;
  }
}
.graph-wrap {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin: 0 auto;
  white-space: nowrap;
  padding: 30px 0 0;
  width: 100%;
}
.graph-wrap li {
  position: relative;
  height: 60px;
  display: grid;
  place-items: end center;
}
.graph-wrap li .age {
  position: absolute;
  top: 100%;
  left: 0;
  display: block;
  width: 100%;
  text-align: center;
  border-top: solid 1px var(--main-color);
  font-size: 13px;
}
.graph-wrap li .bar {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 20px;
  display: inline-block;
  background-color: #00BAFF;
  transform: translateX(-50%) scale(1, 2);
  transform-origin: bottom;
}
.graph-wrap li::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: var(--main-color);
}
.graph-wrap li:nth-of-type(1)::after {
  content: "3.5%";
  bottom: 7%;
}
.graph-wrap li:nth-of-type(1) .bar {
  height: 3.5%;
}
.graph-wrap li:nth-of-type(2)::after {
  content: "6.9%";
  bottom: 13.8%;
}
.graph-wrap li:nth-of-type(2) .bar {
  height: 6.9%;
}
.graph-wrap li:nth-of-type(3)::after {
  content: "13.8%";
  bottom: 27.6%;
}
.graph-wrap li:nth-of-type(3) .bar {
  height: 13.8%;
}
.graph-wrap li:nth-of-type(4)::after {
  content: "13.8%";
  bottom: 27.6%;
}
.graph-wrap li:nth-of-type(4) .bar {
  height: 13.8%;
}
.graph-wrap li:nth-of-type(5)::after {
  content: "41.4%";
  bottom: 82.8%;
  color: var(--sub-color);
}
.graph-wrap li:nth-of-type(5) .bar {
  height: 41.4%;
  background-color: var(--sub-color);
}
.graph-wrap li:nth-of-type(6)::after {
  content: "20.6%";
  bottom: 41.2%;
}
.graph-wrap li:nth-of-type(6) .bar {
  height: 20.6%;
}

@media print, screen and (min-width: 968px) {
  .graph-wrap {
    width: 90%;
    padding: 30px 20px 0;
    margin-bottom: 40px;
  }
  .graph-wrap li .bar {
    width: 40px;
  }
}
.elect {
  position: relative;
}
.elect .lines {
  position: absolute;
  top: 1em;
  right: 99%;
}
.elect .h2-side {
  position: relative;
  z-index: 2;
}
.elect .h2-side::before {
  content: "静岡ケイテクノとは？";
  position: absolute;
  top: 0;
  left: 1px;
  color: #F00;
  z-index: -1;
}
.elect .h2-side::after {
  content: "静岡ケイテクノとは？";
  position: absolute;
  top: 0;
  left: -1px;
  color: #0F0;
  z-index: -1;
}

@media print, screen and (min-width: 968px) {
  .elect .lines {
    top: 32px;
    right: 99%;
  }
}
.one-point {
  position: relative;
  z-index: 10011;
  padding: 100px 0;
  background-image: url(../img/bg_arrow.png), url(../img/bg_arrow.png);
  background-size: 50%, 30%;
  background-repeat: no-repeat;
  background-position: calc(100% - 50px) 150px, calc(100% - 100px) 450px;
  display: grid;
  place-items: center;
  padding: 100px 0 100px;
}
.one-point .center {
  width: 100%;
  background-color: var(--sub-color);
  padding: 100px 20px;
  position: relative;
  z-index: 2;
  background-image: url(../img/bg_arrow.png), url(../img/bg_arrow.png);
  background-repeat: no-repeat;
  background-size: 60%, 100%;
  background-position: bottom 0 right 10%, bottom 0 right 20%;
}
.one-point .center::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, #EA5863 2px, transparent 2px);
  background-size: 25px 25px;
  pointer-events: none;
  z-index: -1;
}
.one-point .center .inner {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}
.one-point .content {
  color: #fff;
}
.one-point .content .h2-side {
  font-size: 26px;
  margin-bottom: 30px;
}
.one-point .content .h2-side span {
  display: block;
  font-size: 18px;
}
.one-point .content .h3-side {
  font-size: 20px;
  margin-bottom: 20px;
}
.one-point .content p {
  line-height: 2;
}
.one-point .top, .one-point .bottom {
  position: absolute;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100px;
}
.one-point .top::before, .one-point .bottom::before {
  content: "";
  display: block;
  outline-style: solid;
  outline-color: var(--sub-color);
  outline-width: 100px;
  border-radius: 0 0 30px 30px;
  border-top: none;
  width: calc(100% - 20px);
  height: 100px;
  transform: translateX(10px);
}
.one-point .top::after, .one-point .bottom::after {
  content: "";
  display: block;
  width: 100%;
  height: 80px;
  position: absolute;
  top: 0;
  left: 0;
  border-style: solid;
  border-width: 0 10px;
  border-image-source: linear-gradient(0deg, var(--sub-color), var(--main-color));
  border-image-slice: 1;
}
.one-point .top {
  top: 0;
}
.one-point .bottom {
  bottom: 0;
  transform: rotate(180deg);
}

@media print, screen and (min-width: 968px) {
  .one-point {
    padding: 230px 0 230px;
  }
  .one-point .top, .one-point .bottom {
    height: 230px;
  }
  .one-point .top::before, .one-point .bottom::before {
    height: 230px;
    border-radius: 0 0 130px 130px;
  }
  .one-point .center {
    background-size: 20%, 40%;
    background-position: bottom -100px right 200px, bottom -100px right 150px;
  }
  .one-point .content .h2-side {
    font-size: 40px;
  }
  .one-point .content .h2-side span {
    font-size: 26px;
  }
  .one-point .content .h3-side {
    font-size: 26px;
  }
}
.recruit > .inner {
  padding: 100px 20px;
}

.recruit-status {
  width: 100%;
  margin-bottom: 60px;
}
.recruit-status .point-wrap {
  background-image: url(../img/bg_job.png);
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  padding: 40px;
  height: 340px;
  position: relative;
}
.recruit-status .point-wrap .point {
  -webkit-backdrop-filter: blur(10px) brightness(1.15);
          backdrop-filter: blur(10px) brightness(1.15);
  font-size: 20px;
  color: #fff;
  text-align: center;
  font-weight: bold;
  padding: 20px;
  outline: solid 1px rgba(255, 255, 255, 0.2509803922);
  outline-offset: 10px;
  border-radius: 6px;
  border: solid 1px rgba(0, 44, 155, 0.1058823529);
}
.recruit-status .point-wrap .point span {
  display: block;
  font-size: 14px;
  font-weight: normal;
}
.recruit-status .point-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 153, 255, 0.7921568627);
}

@media print, screen and (min-width: 968px) {
  .recruit-status .point-wrap {
    height: 340px;
  }
  .recruit-status .point-wrap .point {
    font-size: 40px;
    padding: 60px;
  }
  .recruit-status .point-wrap .point span {
    font-size: 18px;
  }
}
.foot-character {
  font-size: 0;
  text-align: center;
}
.foot-character img {
  width: 360px;
  height: auto;
}

.flow > .inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 0;
}

.h2-center {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 40px;
  color: var(--main-font-color);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.h2-center span {
  color: var(--main-font-light-color);
  font-size: 18px;
  margin-top: 5px;
}

@media print, screen and (min-width: 968px) {
  .h2-center {
    font-size: 36px;
  }
  .h2-center span {
    font-size: 24px;
  }
}
.swiper-slide {
  width: 100%;
  height: 400px !important;
  border-radius: 30px;
  overflow: hidden;
  transform: scale(0.9) !important;
  transition: transform 1s ease-in-out;
  position: relative;
}
.swiper-slide .text {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 14px !important;
  padding: 100px 25px 25px;
  color: #fff;
  /* 下から黒から黒の透明グラデ */
  background: linear-gradient(to top, #002e7e 40%, rgba(0, 47, 127, 0) 100%);
}
.swiper-slide .text .h3-work {
  margin-bottom: 10px;
  font-size: 20px;
}
.swiper-slide .text .h3-work span {
  font-size: 12px;
  font-weight: normal;
  opacity: 0.8;
  margin-left: 10px;
}

@media print, screen and (min-width: 968px) {
  .swiper-slide {
    height: auto !important;
  }
  .swiper-slide .text {
    font-size: 16px !important;
  }
  .swiper-slide .text .h3-work {
    font-size: 22px;
  }
  .swiper-slide .text .h3-work span {
    font-size: 13px;
  }
}
@-webkit-keyframes scroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.work {
  position: relative;
  margin: 30px 0 0;
  padding-bottom: 200px;
}
.work .head-wrap {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.work .head-wrap .h2-side {
  font-size: 26px;
  margin-bottom: 10px;
  color: var(--main-color);
}
.work .head-wrap .h2-side span {
  display: block;
  font-size: 20px;
  color: var(--main-light-color);
}
.work .head-wrap .pagination {
  margin-bottom: 20px;
}
.work .head-wrap .pagination .bullet {
  width: 40px;
  height: 20px;
  border-radius: 10px;
  display: inline-block;
  background-color: #e1e7ef;
  cursor: pointer;
}
.work .head-wrap .pagination .bullet.active {
  background-color: var(--main-light-color);
}
.work .scroll-text {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  font-size: 200px;
  opacity: 0.1;
  width: 100%;
  height: 250px;
  overflow: hidden;
}
.work .scroll-text::before, .work .scroll-text::after {
  content: "/ Electrical Work / Management Work";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--main-light-color);
  white-space: nowrap;
  transform: translateX(100%);
  -webkit-animation: scroll 60s linear infinite forwards;
          animation: scroll 60s linear infinite forwards;
}
.work .scroll-text::after {
  -webkit-animation-delay: -30s;
          animation-delay: -30s;
}

@media print, screen and (min-width: 968px) {
  .work {
    margin: 0 0;
    padding-bottom: 100px;
  }
  .work .head-wrap {
    width: auto;
    height: 500px;
    align-items: start;
  }
  .work .head-wrap .h2-side {
    font-size: 40px;
    margin-bottom: 30px;
  }
  .work .head-wrap .h2-side span {
    font-size: 26px;
  }
}
.swiper {
  max-width: 1000px;
}

.slider-wrap {
  display: flex;
  justify-content: flex-end;
}

@media print, screen and (min-width: 968px) {
  .swiper {
    width: 100%;
  }
  .slider-wrap {
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
  }
  .swiper-slide-active {
    transform: scale(1) !important;
  }
  .swiper-slide-active .text {
    opacity: 1 !important;
  }
}
.swiper-slide-active {
  transform: scale(1) !important;
}
.swiper-slide-active .text {
  opacity: 1 !important;
}

.swiper-container {
  border-radius: 30px;
  position: relative;
  font-size: 0;
  width: 100%;
}
.swiper-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.swiper-container .swiper-button-prev, .swiper-container .swiper-button-next {
  background-color: var(--main-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.swiper-container .swiper-button-prev::after, .swiper-container .swiper-button-next::after {
  font-size: 20px !important;
  font-weight: bold;
  color: #fff !important;
}
.swiper-container .swiper-button-prev {
  left: 15px;
  z-index: 10;
}
.swiper-container .swiper-button-prev::after {
  transform: translateX(-2px);
}
.swiper-container .swiper-button-next {
  right: 15px;
  z-index: 10;
}
.swiper-container .swiper-button-next::after {
  transform: translateX(2px);
}

@media print, screen and (min-width: 968px) {
  .swiper-container {
    width: auto;
  }
  .swiper-container .swiper-button-prev {
    left: -30px;
  }
  .swiper-container .swiper-button-next {
    right: 310px;
  }
}
.grid-flow {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-auto-rows: 1fr;
  gap: 5px;
  margin-bottom: 130px;
}
.grid-flow .sub {
  display: grid;
  grid-template-columns: 100px 1fr;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 5px;
  font-weight: bold;
}
.grid-flow .sub:nth-of-type(1) li {
  background-color: rgba(0, 186, 255, 0.2);
  color: #0066B7;
}
.grid-flow .sub:nth-of-type(1) li::before {
  display: none;
}
.grid-flow .sub:nth-of-type(1) li::after {
  border-color: #00BAFF transparent transparent transparent !important;
}
.grid-flow .sub:nth-of-type(1) li:nth-of-type(1) {
  background-color: #00BAFF;
  color: #fff;
}
.grid-flow .sub:nth-of-type(2) li {
  background-color: rgba(0, 136, 255, 0.2);
  color: #0066B7;
}
.grid-flow .sub:nth-of-type(2) li::after {
  border-color: #0088FF transparent transparent transparent !important;
}
.grid-flow .sub:nth-of-type(2) li:nth-of-type(1) {
  background-color: #0088FF;
  color: #fff;
}
.grid-flow .sub:nth-of-type(3) li {
  background-color: rgba(103, 113, 249, 0.2);
  color: #000CAB;
}
.grid-flow .sub:nth-of-type(3) li::after {
  border-color: #6771F9 transparent transparent transparent !important;
}
.grid-flow .sub:nth-of-type(3) li:nth-of-type(1) {
  background-color: #6771F9;
  color: #fff;
}
.grid-flow .sub:nth-of-type(4) li {
  background-color: rgba(198, 112, 255, 0.2);
  color: #8013C8;
}
.grid-flow .sub:nth-of-type(4) li::after {
  border-color: #C670FF transparent transparent transparent !important;
}
.grid-flow .sub:nth-of-type(4) li:nth-of-type(1) {
  background-color: #C670FF;
  color: #fff;
}
.grid-flow .sub:nth-of-type(5) li {
  background-color: rgba(255, 129, 247, 0.2);
  color: #A500A0;
}
.grid-flow .sub:nth-of-type(5) li::after {
  border-color: #FF81F7 transparent transparent transparent !important;
}
.grid-flow .sub:nth-of-type(5) li:nth-of-type(1) {
  background-color: #FF81F7;
  color: #fff;
}
.grid-flow .sub li {
  display: grid;
  place-items: center;
  padding: 5px;
  position: relative;
  white-space: nowrap;
}
.grid-flow .sub li:nth-of-type(1)::before {
  content: "";
  width: 100%;
  height: 0;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  border-width: 10px 50px 0 50px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.grid-flow .sub li:nth-of-type(1)::after {
  content: "";
  width: 100%;
  height: 0;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  border-width: 10px 50px 0 50px;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 3;
}
.grid-flow .sub .head {
  grid-row: span 3;
}
.grid-flow .sub .row-2 {
  grid-row: span 2;
}
.grid-flow .sub .row-3 {
  grid-row: span 3;
}

@media print, screen and (min-width: 1200px) {
  .grid-flow {
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: auto;
  }
  .grid-flow .sub {
    grid-template-columns: auto;
    grid-row: span 5;
  }
  .grid-flow .sub:nth-of-type(1) li {
    background-color: rgba(0, 186, 255, 0.2);
    color: #0066B7;
  }
  .grid-flow .sub:nth-of-type(1) li::before {
    display: none;
  }
  .grid-flow .sub:nth-of-type(1) li::after {
    border-color: transparent transparent transparent #00BAFF !important;
  }
  .grid-flow .sub:nth-of-type(1) li:nth-of-type(1) {
    background-color: #00BAFF;
    color: #fff;
  }
  .grid-flow .sub:nth-of-type(2) li {
    background-color: rgba(0, 136, 255, 0.2);
    color: #0066B7;
  }
  .grid-flow .sub:nth-of-type(2) li::after {
    border-color: transparent transparent transparent #0088FF !important;
  }
  .grid-flow .sub:nth-of-type(2) li:nth-of-type(1) {
    background-color: #0088FF;
    color: #fff;
  }
  .grid-flow .sub:nth-of-type(3) li {
    background-color: rgba(103, 113, 249, 0.2);
    color: #000CAB;
  }
  .grid-flow .sub:nth-of-type(3) li::after {
    border-color: transparent transparent transparent #6771F9 !important;
  }
  .grid-flow .sub:nth-of-type(3) li:nth-of-type(1) {
    background-color: #6771F9;
    color: #fff;
  }
  .grid-flow .sub:nth-of-type(4) li {
    background-color: rgba(198, 112, 255, 0.2);
    color: #8013C8;
  }
  .grid-flow .sub:nth-of-type(4) li::after {
    border-color: transparent transparent transparent #C670FF !important;
  }
  .grid-flow .sub:nth-of-type(4) li:nth-of-type(1) {
    background-color: #C670FF;
    color: #fff;
  }
  .grid-flow .sub:nth-of-type(5) li {
    background-color: rgba(255, 129, 247, 0.2);
    color: #A500A0;
  }
  .grid-flow .sub:nth-of-type(5) li::after {
    border-color: transparent transparent transparent #FF81F7 !important;
  }
  .grid-flow .sub:nth-of-type(5) li:nth-of-type(1) {
    background-color: #FF81F7;
    color: #fff;
  }
  .grid-flow .sub:nth-of-type(5) li:nth-of-type(1)::after {
    display: none;
  }
  .grid-flow .sub li:nth-of-type(1)::before {
    content: "";
    width: 20px;
    height: 100%;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
    border-width: 20px 0 20px 20px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
  }
  .grid-flow .sub li:nth-of-type(1)::after {
    content: "";
    width: 20px;
    height: 100%;
    border-style: solid;
    border-color: transparent transparent transparent #f00;
    border-width: 20px 0 20px 20px;
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 3;
  }
  .grid-flow .sub .head {
    grid-row: span 2;
    height: 40px;
  }
}
@-webkit-keyframes jump-shake {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  10% {
    transform: translateY(-30px) translateX(-5px) rotate(-5deg);
  }
  20% {
    transform: translateY(-40px) translateX(5px) rotate(5deg);
  }
  30% {
    transform: translateY(-30px) translateX(-5px) rotate(-5deg);
  }
  40% {
    transform: translateY(-40px) translateX(5px) rotate(5deg);
  }
  50% {
    transform: translateY(-30px) translateX(-5px) rotate(-5deg);
  }
  60% {
    transform: translateY(-20px) translateX(5px) rotate(5deg);
  }
  70% {
    transform: translateY(-10px) translateX(-5px) rotate(-5deg);
  }
  80% {
    transform: translateY(0) translateX(5px) rotate(5deg);
  }
  90% {
    transform: translateY(0) translateX(-2px) rotate(-2deg);
  }
  100% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
}
@keyframes jump-shake {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  10% {
    transform: translateY(-30px) translateX(-5px) rotate(-5deg);
  }
  20% {
    transform: translateY(-40px) translateX(5px) rotate(5deg);
  }
  30% {
    transform: translateY(-30px) translateX(-5px) rotate(-5deg);
  }
  40% {
    transform: translateY(-40px) translateX(5px) rotate(5deg);
  }
  50% {
    transform: translateY(-30px) translateX(-5px) rotate(-5deg);
  }
  60% {
    transform: translateY(-20px) translateX(5px) rotate(5deg);
  }
  70% {
    transform: translateY(-10px) translateX(-5px) rotate(-5deg);
  }
  80% {
    transform: translateY(0) translateX(5px) rotate(5deg);
  }
  90% {
    transform: translateY(0) translateX(-2px) rotate(-2deg);
  }
  100% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
}
@-webkit-keyframes wave {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes wave {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.job-draft {
  position: fixed;
  right: 120px;
  bottom: 20px;
  z-index: 10020;
  cursor: pointer;
}
.job-draft img {
  width: 150px;
}
.job-draft.active {
  -webkit-animation: wave 0.5s ease-in-out;
          animation: wave 0.5s ease-in-out;
}

@media print, screen and (min-width: 968px) {
  .job-draft {
    right: 145px;
    bottom: 25px;
  }
  .job-draft img {
    width: 172px;
  }
}
.page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  font-size: 0;
  z-index: 10020;
  cursor: pointer;
}
.page-top img {
  width: 70px;
  height: auto;
}

@media print, screen and (min-width: 968px) {
  .page-top img {
    width: 92px;
  }
}
.contact {
  padding: 0 25px 15px;
  position: relative;
  height: 275px;
  overflow: hidden;
}
.contact .absolute {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(20px);
}
.contact .absolute img {
  width: 100%;
  height: auto;
  max-width: 230px;
  position: absolute;
}
.contact .absolute img:nth-of-type(1) {
  top: -10%;
  left: 0;
}
.contact .absolute img:nth-of-type(2) {
  top: -10%;
  right: 0;
}
.contact::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: calc(100% - 20px);
  height: 110%;
  z-index: 100;
  outline-style: solid;
  outline-color: var(--main-color);
  outline-width: 60px;
  border-radius: 0 0 30px 30px;
  transform: translateX(-50%);
  pointer-events: none;
}
.contact > .inner {
  height: 100%;
  position: relative;
  z-index: 2;
  border-radius: 200px;
  color: #fff;
}
.contact > .inner::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  background-image: url(../img/f_contact.webp);
  background-size: cover;
  background-position: center;
  border-radius: 30px;
  z-index: -1;
  pointer-events: none;
}
.contact > .inner::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(61, 181, 255, 0.8941176471);
  border-radius: 30px;
  z-index: -1;
}
.contact .content {
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contact .content h2 {
  font-size: 20px;
  display: grid;
  place-items: center start;
}
.contact .content .inquiry {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  gap: 10px;
}
.contact .content .inquiry .tel, .contact .content .inquiry .mail {
  width: 100%;
}
.contact .content .inquiry .tel {
  display: grid;
  gap: 10px;
}
.contact .content .inquiry .tel .head {
  font-size: 24px;
  font-weight: bold;
  background-image: url(../img/tel.png);
  background-repeat: no-repeat;
  background-position: 10% center;
  background-size: 1em;
  padding-left: 50px;
  text-align: center;
}
.contact .content .inquiry .tel .text {
  font-size: 14px;
  padding: 0 10px;
  text-align: center;
}
.contact .content .inquiry .mail {
  text-align: center;
}
.contact .content .inquiry .mail a {
  display: inline-flex;
  align-items: center;
  padding-left: 60px;
  padding-right: 20px;
  height: 60px;
  background-color: #fff;
  border-radius: 20px;
  color: #00BAFF;
  font-weight: bold;
  font-size: 20px;
  background-image: url(../img/mail.png);
  background-repeat: no-repeat;
  background-position: 10% center;
  background-size: 26px;
  text-decoration: none;
  font-size: 16px;
}

@media print, screen and (min-width: 968px) {
  .contact .content {
    display: grid;
    grid-template-columns: 2fr 3fr;
  }
  .contact .content h2 {
    font-size: 40px;
    padding-left: 40px;
  }
  .contact .content .inquiry {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .contact .content .inquiry .tel {
    gap: 20px;
  }
  .contact .content .inquiry .tel .head {
    font-size: 30px;
    background-size: 30px;
  }
  .contact .content .inquiry .mail a {
    background-repeat: no-repeat;
    background-position: center 30%;
    padding: 70px 40px 40px !important;
  }
  .contact > .inner::before {
    border-radius: 200px;
  }
  .contact > .inner::after {
    border-radius: 200px;
  }
  .contact::before {
    border-radius: 0 0 137.5px 137.5px;
  }
}
.break {
  display: inline-block;
}

footer {
  background-color: var(--main-color);
  text-align: center;
  padding: 50px 50px 120px 50px;
  color: #fff;
}
footer .jump {
  color: #fff;
  background-image: url(../img/o_new.svg);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: center right;
  padding-right: 25px;
}
footer .copy {
  font-size: 12px;
  margin-top: 10px;
}

@media print, screen and (min-width: 968px) {
  footer {
    padding: 50px;
  }
}