@charset "UTF-8";
/* Break point
---------------------------------------------------------- */
/* Font
---------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Sans+JP:wght@100..900&display=swap");
/* Mixin
---------------------------------------------------------- */
/* Animation
---------------------------------------------------------- */
.a-fadeIn {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.a-fadeIn.-start {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* ==========================================================================//
//
//　変数
//
// ========================================================================== */
:root {
  /* Color
  ---------------------------------------------------------- */
  --color-main: #052275;
  --color-sub: #12B9E0;
  --color-bg: #E8F0F2;
  --color-bg2: #F1F5F6;
  --color-line: #B3B3B3;
  --color-line2: #CCCCCC;
  --color-point: #FFEE00;
  --color-font: #000000;
  --color-link: #12B9E0;
  --color-red: #D32929;
  --color-visited:#666666;
  /* font
  ---------------------------------------------------------- */
  --font-en: "Lato", sans-serif;
  --font-l: 300;
  --font-r: 400;
  --font-m: 500;
  --font-b: 700;
  --font-bl: 900;
  --lhS: 1.2;
  --lhM: 1.5;
  --lhL: 1.8;
  --lhLL: 2.3;
  /* width
  ---------------------------------------------------------- */
  --maxWidth: 1300px;
  --sidePadding: 1.2rem;
  --marginTop: 1.5rem;
  --header: 4.25rem;
}
@media screen and (min-width: 768px) {
  :root {
    --sidePadding: 1.4rem;
  }
}
@media screen and (min-width: 960px) {
  :root {
    --sidePadding: 4.37rem;
  }
}
@media screen and (min-width: 768px) {
  :root {
    --header: 5rem;
  }
}

@media screen and (max-width: 767px) {
  .l-second__mainTtl .c-ttl-1 .-main {
    font-size: 1.5rem;
  }
}

.p-company__txtBox {
  display: block;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 900;
  border: 5.8px solid #005392;
  background: #fff;
  border-radius: 15px;
  padding: 1.33rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-company__txtBox {
    max-width: 550px;
  }
}
@media screen and (min-width: 960px) {
  .p-company__txtBox {
    width: 42.44vw;
    max-width: 680px;
    font-size: clamp(1rem, 0.063rem + 1.56vw, 1.625rem);
    border-width: 10px;
    border-radius: 27px;
    padding: calc(3rem - 10px) 1.33rem;
  }
}
.p-company__txtBox > span {
  display: block;
}
.p-company__txtBox .-strong {
  font-weight: 900;
  color: #005392;
  font-size: 1.8rem;
}
@media screen and (min-width: 960px) {
  .p-company__txtBox .-strong {
    font-size: clamp(1.8rem, 0.75rem + 1.75vw, 2.5rem);
  }
}
.p-company__txtBox.js-scroll {
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.p-company__txtBox.js-scroll.-start {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.p-company__circleTxtBox {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.27rem;
  width: 177px;
  aspect-ratio: 1/1;
  color: #fff;
  font-weight: 900;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 960px) {
  .p-company__circleTxtBox {
    width: 19.38vw;
    max-width: 310px;
    font-size: clamp(1rem, 0.063rem + 1.56vw, 1.4rem);
  }
}
.p-company__circleTxtBox::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  background: -webkit-linear-gradient(305deg, #18A6DE 14.68%, #005392 85%);
  background: linear-gradient(145deg, #18A6DE 14.68%, #005392 85%);
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-company__circleTxtBox > * {
  position: relative;
  z-index: 1;
}
.p-company__circleTxtBox .-strong {
  font-size: 3.158rem;
  line-height: 1;
}
@media screen and (min-width: 960px) {
  .p-company__circleTxtBox .-strong {
    font-size: clamp(3.158rem, 0.245rem + 4.85vw, 5.1rem);
  }
}
.p-company__circleTxtBox .-note {
  font-weight: var(--font-m);
  font-size: 0.5409rem;
}
@media screen and (min-width: 960px) {
  .p-company__circleTxtBox .-note {
    font-size: clamp(0.7rem, 0.25rem + 0.75vw, 1rem);
  }
}
.p-company__circleTxtBox.js-scroll {
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.p-company__circleTxtBox.js-scroll.-start {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.p-company__mainLogo {
  width: 80%;
  max-width: 315px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-company__mainLogo {
    width: 60%;
    max-width: 656px;
  }
}
.p-company__mainLead {
  margin-top: 1.5rem;
  text-align: center;
  font-weight: var(--font-r);
  line-height: 1.6;
  letter-spacing: 0.035rem;
}
@media screen and (min-width: 768px) {
  .p-company__mainLead {
    margin-top: 4.16rem;
  }
}

.p-company__sec.-sec1 {
  padding-bottom: 5.94rem;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .p-company__sec-inner {
    padding: 0 var(--sidePadding);
  }
}
.p-company__sec.-sec1 .-sec1-box-1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2.11rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-company__sec.-sec1 .-sec1-box-1 {
    overflow: visible;
  }
}
@media screen and (min-width: 768px) {
  .p-company__sec.-sec1 .-sec1-box-1 {
    max-width: var(--maxWidth);
    margin-right: auto;
    margin-left: auto;
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 0;
    position: relative;
  }
}
.p-company__sec.-sec1 .-sec1-box-1 .p-company__txtBox {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 1.49rem;
}
@media screen and (min-width: 768px) {
  .p-company__sec.-sec1 .-sec1-box-1 .p-company__txtBox {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 0;
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-1 .p-company__txtBox {
    max-width: 590px;
  }
}
.p-company__sec.-sec1 .-sec1-box-1 figure:nth-of-type(1) {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
  width: 184px;
}
@media screen and (min-width: 768px) {
  .p-company__sec.-sec1 .-sec1-box-1 figure:nth-of-type(1) {
    position: absolute;
    bottom: 0;
    left: 10%;
  }
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-1 figure:nth-of-type(1) {
    width: 20.81vw;
    max-width: 333px;
    bottom: -10%;
  }
}
.p-company__sec.-sec1 .-sec1-box-1 figure:nth-of-type(2) {
  margin-top: 1.06rem;
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
      -ms-flex-order: 3;
          order: 3;
  padding-bottom: 1.35rem;
  padding-left: 2.82rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-company__sec.-sec1 .-sec1-box-1 figure:nth-of-type(2) {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-1 figure:nth-of-type(2) {
    padding-left: 4.5rem;
  }
}
.p-company__sec.-sec1 .-sec1-box-1 figure:nth-of-type(2) img:nth-child(1) {
  max-width: 301px;
}
@media screen and (min-width: 768px) {
  .p-company__sec.-sec1 .-sec1-box-1 figure:nth-of-type(2) img:nth-child(1) {
    width: 100%;
    max-width: 616px;
  }
}
.p-company__sec.-sec1 .-sec1-box-1 figure:nth-of-type(2) img:nth-child(2) {
  width: 58px;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-1 figure:nth-of-type(2) img:nth-child(2) {
    width: 6.88vw;
    max-width: 110px;
  }
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 {
    background: url(/recruit/company/images/bg-sec1-rail-pc.webp) no-repeat center center/100% auto;
    width: 100%;
    max-width: 1319px;
    aspect-ratio: 1/0.7665;
    margin: 381px auto 0;
    position: relative;
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-item {
  --itemColor: #4B8EF8;
  position: absolute;
  z-index: 1;
}
.p-company__sec.-sec1 .-sec1-box-2 .-item .-ttl > * {
  display: block;
}
.p-company__sec.-sec1 .-sec1-box-2 .-item .-ttl .-year {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--itemColor);
  padding-bottom: calc(0.5rem + 5.8px);
  position: relative;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-item .-ttl .-year {
    font-size: clamp(2.125rem, -0.549rem + 4.46vw, 3.125rem);
    line-height: 1;
    padding-bottom: calc(0.8rem + 10px);
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-item .-ttl .-year::before {
  content: "";
  display: block;
  width: 41px;
  height: 5.8px;
  background: var(--itemColor);
  opacity: 0.3;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-item .-ttl .-year::before {
    width: 71px;
    height: 10px;
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-item .-ttl .-year + span {
  margin-top: 0.5rem;
  font-size: 0.869rem;
  font-weight: 900;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-item .-ttl .-year + span {
    margin-top: 0.8rem;
    font-size: clamp(1rem, -0.337rem + 2.23vw, 1.5rem);
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-item .-ttl .-note {
  font-size: 0.58rem;
  font-weight: var(--font-m);
  color: #666;
  margin-top: 0.5rem;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-item .-ttl .-note {
    font-size: clamp(0.7rem, -0.102rem + 1.34vw, 1rem);
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-item .-logoBox {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1.16rem;
  position: relative;
}
.p-company__sec.-sec1 .-sec1-box-2 .-item .-logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 9999px;
  padding: 1rem 0.6rem;
  background: var(--itemColor);
  -webkit-box-shadow: 0 0 11.6px var(--itemColor);
          box-shadow: 0 0 11.6px var(--itemColor);
  position: relative;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-item .-logo {
    -webkit-box-shadow: 0 0 clamp(0.625rem, -1.046rem + 2.79vw, 1.25rem) var(--itemColor);
            box-shadow: 0 0 clamp(0.625rem, -1.046rem + 2.79vw, 1.25rem) var(--itemColor);
    width: calc((100vw - var(--sidePadding) * 2) * 0.094);
    height: calc((100vw - var(--sidePadding) * 2) * 0.094);
    max-width: 124px;
    max-height: 124px;
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-item .-logo .-th {
  color: #fff;
  font-weight: 900;
  font-size: 1.5rem;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-item .-logo .-th {
    font-size: 2.3rem;
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-item .-dot {
  width: 120.9px;
  position: absolute;
  top: -1.16rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-item .-dot {
    width: calc((100vw - var(--sidePadding) * 2) * 0.158);
    max-width: 209px;
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-item .-table {
  margin-top: 4.6px;
  width: 88.78px;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-item .-table {
    width: calc((100vw - var(--sidePadding) * 2) * 0.117);
    max-width: 154px;
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-item.js-scroll {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-company__sec.-sec1 .-sec1-box-2 .-item.js-scroll .-logo {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  opacity: 0;
  -webkit-transition: all 0.6s ease 0.35s;
  transition: all 0.6s ease 0.35s;
}
.p-company__sec.-sec1 .-sec1-box-2 .-item.js-scroll .-dot {
  -webkit-transform: translateX(-50%) scale(0.8);
          transform: translateX(-50%) scale(0.8);
  opacity: 0;
  -webkit-transition: all 0.25s ease 0.6s;
  transition: all 0.25s ease 0.6s;
}
.p-company__sec.-sec1 .-sec1-box-2 .-item.js-scroll.-start {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.p-company__sec.-sec1 .-sec1-box-2 .-item.js-scroll.-start .-logo {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.p-company__sec.-sec1 .-sec1-box-2 .-item.js-scroll.-start .-dot {
  -webkit-transform: translateX(-50%) scale(1);
          transform: translateX(-50%) scale(1);
  opacity: 1;
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-1 {
  margin-top: 330px;
  height: 208px;
  background: url(/recruit/company/images/bg-sec1-rail-sp-01.webp) no-repeat center center/auto 100%;
  position: relative;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-area-1 {
    margin-top: 0;
    background: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-1 .-photo {
  width: 160px;
  position: absolute;
  top: -249px;
  right: calc(50% - 2rem);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-area-1 .-photo {
    width: calc((100vw - var(--sidePadding) * 2) * 0.403);
    max-width: 531px;
  }
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-area-1 .-photo {
    top: auto;
    bottom: 100%;
    right: auto;
    left: 53.6%;
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-1 .-photo::before {
  content: "";
  display: block;
  width: 24px;
  height: 84px;
  background: url(/recruit/company/images/img-sec1-photo-human.webp) no-repeat center center/cover;
  position: absolute;
  top: -71px;
  right: 30px;
  z-index: -1;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-area-1 .-photo::before {
    content: none;
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-1 .-photo img {
  border-radius: 4.3px;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-area-1 .-photo img {
    border-radius: 12px;
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-1 .-photo figcaption {
  font-size: 0.56rem;
  color: #666;
  font-weight: var(--font-m);
  margin-top: 0.21rem;
  text-align: right;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-area-1 .-photo figcaption {
    font-size: 0.875rem;
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-1 .-item:nth-of-type(1) {
  bottom: 12.3rem;
  left: calc(50% + 2rem);
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-area-1 .-item:nth-of-type(1) {
    bottom: 93.5%;
    left: 23.1%;
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-1 .-item:nth-of-type(1) .-ttl {
  margin-left: 0.94rem;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-area-1 .-item:nth-of-type(1) .-ttl {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    position: absolute;
    bottom: 25%;
    left: 100%;
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-1 .-item:nth-of-type(1) .-logo img {
  width: 38.28px;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-area-1 .-item:nth-of-type(1) .-logo img {
    width: 70%;
    max-width: 66px;
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-1 .-item:nth-of-type(2) {
  --itemColor: #18D0C6;
  bottom: 5.5rem;
  right: calc(50% + 3.2rem);
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-area-1 .-item:nth-of-type(2) {
    bottom: 77.5%;
    right: auto;
    left: 1.7%;
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-1 .-item:nth-of-type(2) .-ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  bottom: calc(100% - 0.4rem);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-1 .-item:nth-of-type(2) .-ttl .-year::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-1 .-item:nth-of-type(2) .-logo img {
  width: 49.99px;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-area-1 .-item:nth-of-type(2) .-logo img {
    width: 100%;
    max-width: 95px;
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-1 .-item:nth-of-type(3) {
  --itemColor: #F6B560;
  top: 0.8rem;
  left: calc(50% - 1.8rem);
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-area-1 .-item:nth-of-type(3) {
    top: auto;
    bottom: 66.5%;
    left: 15.7%;
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-1 .-item:nth-of-type(3) .-ttl {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  top: calc(100% - 2rem);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-1 .-item:nth-of-type(3) .-logo img {
  width: 49.12px;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-area-1 .-item:nth-of-type(3) .-logo img {
    width: 100%;
    max-width: 95px;
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-1 .-gears {
  width: 31px;
  position: absolute;
  bottom: 1rem;
  right: calc(50% + 9rem);
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-area-1 .-gears {
    width: calc((100vw - var(--sidePadding) * 2) * 0.0409);
    max-width: 36px;
    bottom: 69%;
    right: 97.5%;
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-1 .-light {
  width: 49.7px;
  position: absolute;
  bottom: 6rem;
  left: calc(50% + 7.4rem);
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-area-1 .-light {
    width: calc((100vw - var(--sidePadding) * 2) * 0.0652);
    max-width: 86px;
    bottom: 78.5%;
    left: 32.5%;
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-2 {
  margin-top: 177px;
  height: 429px;
  background: url(/recruit/company/images/bg-sec1-rail-sp-02.webp) no-repeat center center/auto 100%;
  position: relative;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-area-2 {
    margin-top: 0;
    width: 100%;
    height: 100%;
    background: none;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-2 .-item:nth-of-type(1) {
  --itemColor: #FFA96B;
  top: -5.8rem;
  right: calc(50% + 4.5rem);
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-area-2 .-item:nth-of-type(1) {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    top: auto;
    bottom: 66.5%;
    left: 44.3%;
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-2 .-item:nth-of-type(1) .-ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 366px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-area-2 .-item:nth-of-type(1) .-ttl {
    left: calc(50% + 0.4rem);
  }
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-area-2 .-item:nth-of-type(1) .-ttl {
    top: 110%;
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-2 .-item:nth-of-type(1) .-ttl .-year::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-2 .-item:nth-of-type(1) .-logo img {
  width: 52.2px;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-area-2 .-item:nth-of-type(1) .-logo img {
    width: 100%;
    max-width: 95px;
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-2 .-item:nth-of-type(1) .-dot {
  width: 117px;
  top: 1.01rem;
  left: calc(50% - 0.6rem);
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-area-2 .-item:nth-of-type(1) .-dot {
    width: calc((100vw - var(--sidePadding) * 2) * 0.1531);
    max-width: 202px;
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-2 .-item:nth-of-type(2) {
  --itemColor: #FF7D6B;
  top: 3.2rem;
  left: calc(50% + 4.8rem);
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-area-2 .-item:nth-of-type(2) {
    top: auto;
    bottom: 45%;
    left: auto;
    right: 15.7%;
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-2 .-item:nth-of-type(2) .-ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 366px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-area-2 .-item:nth-of-type(2) .-ttl {
    left: calc(50% - 1.5rem);
  }
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-area-2 .-item:nth-of-type(2) .-ttl {
    left: 50%;
    top: 110%;
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-2 .-item:nth-of-type(2) .-ttl .-year::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-2 .-item:nth-of-type(2) .-logo img {
  width: 49px;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-area-2 .-item:nth-of-type(2) .-logo img {
    width: 100%;
    max-width: 95px;
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-2 .-plant {
  position: absolute;
  width: 21.4px;
  top: -47px;
  left: calc(50% + 7rem);
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-area-2 .-plant {
    width: calc((100vw - var(--sidePadding) * 2) * 0.0281);
    max-width: 25px;
    top: 4%;
    left: 80%;
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-2 .-plant2 {
  position: absolute;
  width: 21.3px;
  top: 259px;
  right: calc(50% + 9.1rem);
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-area-2 .-plant2 {
    width: calc((100vw - var(--sidePadding) * 2) * 0.0281);
    max-width: 25px;
    top: 60%;
    right: 80%;
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-2 .-gears {
  width: 31px;
  position: absolute;
  top: 137px;
  left: calc(50% + 11.2rem);
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-area-2 .-gears {
    width: calc((100vw - var(--sidePadding) * 2) * 0.0409);
    max-width: 36px;
    top: 52%;
    left: 90%;
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-2 .-human {
  position: absolute;
  width: 79px;
  top: -58px;
  left: calc(50% - 1rem);
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-area-2 .-human {
    width: calc((100vw - var(--sidePadding) * 2) * 0.1031);
    max-width: 136px;
    top: 2%;
    left: 61%;
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-2 .-human2 {
  position: absolute;
  width: 73px;
  bottom: -28.7px;
  right: calc(50% - 0.72rem);
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-area-2 .-human2 {
    width: calc((100vw - var(--sidePadding) * 2) * 0.0963);
    max-width: 126px;
    bottom: 24%;
    right: 90%;
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-2 .-car {
  position: absolute;
  width: 106px;
  top: 241px;
  right: calc(50% - 1.9rem);
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-area-2 .-car {
    width: calc((100vw - var(--sidePadding) * 2) * 0.1395);
    max-width: 184px;
    top: auto;
    bottom: 30.5%;
    right: 31.5%;
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-3 {
  margin-top: 153px;
  height: 177px;
  background: url(/recruit/company/images/bg-sec1-rail-sp-03.webp) no-repeat center center/auto 100%;
  position: relative;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-area-3 {
    margin-top: 0;
    width: 100%;
    height: 100%;
    background: none;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-3 .-item:nth-of-type(1) {
  --itemColor: #CD7CD7;
  bottom: 80.55px;
  right: calc(50% + 4.07rem);
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-area-3 .-item:nth-of-type(1) {
    bottom: 12.7%;
    right: 58.5%;
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-3 .-item:nth-of-type(1) .-ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-area-3 .-item:nth-of-type(1) .-ttl {
    bottom: -10%;
    left: auto;
    right: 110%;
    -webkit-transform: none;
            transform: none;
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-3 .-item:nth-of-type(1) .-ttl .-year::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-3 .-item:nth-of-type(1) .-logo img {
  width: 54.9px;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-area-3 .-item:nth-of-type(1) .-logo img {
    width: 100%;
    max-width: 95px;
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-3 .-item:nth-of-type(1) .-dot {
  width: 104.55px;
  top: 0.8rem;
  left: 0.14rem;
  -webkit-transform: none;
          transform: none;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-area-3 .-item:nth-of-type(1) .-dot {
    width: calc((100vw - var(--sidePadding) * 2) * 0.1372);
    max-width: 181px;
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-3 .-item:nth-of-type(1).js-scroll .-dot {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-3 .-item:nth-of-type(1).js-scroll.-start .-dot {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-3 .-item:nth-of-type(2) {
  --itemColor: #268FE6;
  bottom: 16.2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-3 .-item:nth-of-type(2).js-scroll {
  -webkit-transform: translateX(-50%) translateY(-10px);
          transform: translateX(-50%) translateY(-10px);
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-3 .-item:nth-of-type(2).js-scroll.-start {
  -webkit-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-area-3 .-item:nth-of-type(2) {
    bottom: 2%;
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-3 .-item:nth-of-type(2) .-logo img {
  width: 54.9px;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-area-3 .-item:nth-of-type(2) .-logo img {
    width: 100%;
    max-width: 95px;
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-3 .-item:nth-of-type(2) .-dot {
  width: 99.2px;
  top: 2.4rem;
  left: 0.25rem;
  -webkit-transform: none;
          transform: none;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-area-3 .-item:nth-of-type(2) .-dot {
    width: calc((100vw - var(--sidePadding) * 2) * 0.1296);
    max-width: 171px;
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-3 .-item:nth-of-type(2).js-scroll .-dot {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-3 .-item:nth-of-type(2).js-scroll.-start .-dot {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-3 .-gears {
  width: 31px;
  position: absolute;
  bottom: calc(100% + 4.9rem);
  left: calc(50% + 1.7rem);
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-area-3 .-gears {
    width: calc((100vw - var(--sidePadding) * 2) * 0.0409);
    max-width: 36px;
    bottom: 11%;
    left: 62%;
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-3 .-human {
  position: absolute;
  width: 106.1px;
  top: -100px;
  left: calc(50% + 62.27px);
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-area-3 .-human {
    width: calc((100vw - var(--sidePadding) * 2) * 0.1387);
    max-width: 183px;
    top: auto;
    bottom: -6%;
    left: 74%;
  }
}
.p-company__sec.-sec1 .-sec1-box-2 .-area-3 .-plant {
  display: none;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-2 .-area-3 .-plant {
    display: block;
    width: calc((100vw - var(--sidePadding) * 2) * 0.0281);
    max-width: 25px;
    position: absolute;
    bottom: -6%;
    left: 3%;
  }
}
.p-company__sec.-sec1 .-sec1-box-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1.62rem;
  position: relative;
  overflow: hidden;
}
.p-company__sec.-sec1 .-sec1-box-3::before, .p-company__sec.-sec1 .-sec1-box-3::after {
  content: "";
  display: block;
  width: 167px;
  aspect-ratio: 1/0.706;
  background: url(/recruit/company/images/img-confetti.webp) no-repeat center center/cover;
  position: absolute;
  top: 1.89rem;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-3::before, .p-company__sec.-sec1 .-sec1-box-3::after {
    width: 18.31vw;
    max-width: 293px;
  }
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-3::before, .p-company__sec.-sec1 .-sec1-box-3::after {
    top: 12%;
  }
}
.p-company__sec.-sec1 .-sec1-box-3::before {
  right: calc(50% + 5.81rem);
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-3::before {
    right: 62%;
  }
}
.p-company__sec.-sec1 .-sec1-box-3::after {
  left: calc(50% + 5.81rem);
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-3::after {
    left: 62%;
  }
}
.p-company__sec.-sec1 .-sec1-box-3 .-year {
  color: #268FE6;
  font-size: 1.78575rem;
  font-weight: 900;
  letter-spacing: 0.07144rem;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-3 .-year {
    font-size: clamp(1.786rem, -0.222rem + 3.35vw, 3.125rem);
  }
}
.p-company__sec.-sec1 .-sec1-box-3 .-circleBox {
  position: relative;
  z-index: 1;
}
.p-company__sec.-sec1 .-sec1-box-3 .p-company__circleTxtBox {
  margin-top: 1.15rem;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-3 .p-company__circleTxtBox {
    gap: 0;
  }
}
.p-company__sec.-sec1 .-sec1-box-3 .p-company__circleTxtBox .-strong {
  font-size: 6.158rem;
  line-height: 1;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-3 .p-company__circleTxtBox .-strong {
    font-size: clamp(6.158rem, 1.332rem + 8.04vw, 9.375rem);
  }
}
.p-company__sec.-sec1 .-sec1-box-3 .-img {
  width: 100%;
  height: calc(100% + 2.08rem);
  position: absolute;
  top: 0;
  left: 0;
}
.p-company__sec.-sec1 .-sec1-box-3 .-img figure {
  position: absolute;
  bottom: 0;
}
.p-company__sec.-sec1 .-sec1-box-3 .-img figure:nth-child(1) {
  width: 134.67px;
  right: calc(50% + 4.08rem);
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-3 .-img figure:nth-child(1) {
    width: 14.75vw;
    max-width: 236px;
    right: 88%;
  }
}
.p-company__sec.-sec1 .-sec1-box-3 .-img figure:nth-child(2) {
  width: 117.67px;
  left: calc(50% + 4.29rem);
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec1 .-sec1-box-3 .-img figure:nth-child(2) {
    width: 12.94vw;
    max-width: 207px;
    left: 91%;
  }
}
.p-company__sec.-sec1 .-sec1-box-3 .-link {
  margin-top: 4.03rem;
}

.p-company__bg-white {
  background: #fff;
  position: relative;
}
.p-company__bg-white > *:not(.l-header) {
  position: relative;
  z-index: 1;
}
.p-company__bg-white::before {
  content: "";
  display: block;
  width: 100%;
  height: 100vh;
  background: url(/recruit/company/images/bg-company-photo.webp) no-repeat center center/cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

.p-company__bg-photo {
  padding: 0 var(--sidePadding);
  height: 400px;
  position: relative;
}
@media screen and (min-width: 960px) {
  .p-company__bg-photo {
    height: 560px;
    max-height: 80vh;
  }
}
.p-company__bg-photo .p-company__circleTxtBox {
  position: absolute;
  top: -33px;
  right: var(--sidePadding);
}
.p-company__bg-photo .p-company__circleTxtBox .-strong {
  font-size: 2.4774rem;
}
@media screen and (min-width: 960px) {
  .p-company__bg-photo .p-company__circleTxtBox .-strong {
    font-size: clamp(2.477rem, 0.193rem + 3.81vw, 4rem);
  }
}
.p-company__bg-photo .p-company__circleTxtBox .-note {
  margin-top: 0.5rem;
}
@media screen and (min-width: 960px) {
  .p-company__bg-photo .p-company__circleTxtBox .-note {
    margin-top: 1.2rem;
  }
}

.p-company__bg-white:has(.p-company__sec.-sec2) {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(1.6rem, transparent), color-stop(1.61rem, #fff), to(#fff));
  background: -webkit-linear-gradient(top, transparent 0%, transparent 1.6rem, #fff 1.61rem, #fff 100%);
  background: linear-gradient(to bottom, transparent 0%, transparent 1.6rem, #fff 1.61rem, #fff 100%);
}

.p-company__sec.-sec2 {
  z-index: 2;
}
.p-company__sec.-sec2 .-sec2-box-1 {
  padding: 0 var(--sidePadding);
}
.p-company__sec.-sec2 .-sec2-box-1 .p-company__txtBox {
  margin-top: -1.6rem;
  position: relative;
}
.p-company__sec.-sec2 .-sec2-box-1 .p-company__txtBox::after {
  content: "";
  display: block;
  width: 58.33px;
  aspect-ratio: 1/2.227;
  background: url(/recruit/company/images/img-human-01.webp) no-repeat center center/cover;
  position: absolute;
  bottom: -48.6px;
  left: 4px;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec2 .-sec2-box-1 .p-company__txtBox::after {
    width: 6.88vw;
    max-width: 110px;
  }
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec2 .-sec2-box-1 .p-company__txtBox::after {
    bottom: -37%;
    left: -22%;
  }
}
.p-company__sec.-sec2 .-sec2-box-1 .-product-list {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 var(--sidePadding);
  position: relative;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec2 .-sec2-box-1 .-product-list {
    max-width: var(--maxWidth);
    margin: 1.2rem auto 0;
    grid-template-columns: 1fr;
    padding-bottom: 3rem;
  }
}
.p-company__sec.-sec2 .-sec2-box-1 .-product-list li figure {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 0.5rem;
  text-align: center;
}
.p-company__sec.-sec2 .-sec2-box-1 .-product-list li figure figcaption {
  margin-top: 0.37rem;
  font-weight: 900;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec2 .-sec2-box-1 .-product-list li figure figcaption {
    margin-top: 0;
    font-size: clamp(1rem, 0.25rem + 1.25vw, 1.5rem);
  }
}
.p-company__sec.-sec2 .-sec2-box-1 .-product-list li:nth-child(1) {
  grid-column: 1/-1;
}
.p-company__sec.-sec2 .-sec2-box-1 .-product-list li:nth-child(1) figure img {
  max-width: 65px;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec2 .-sec2-box-1 .-product-list li:nth-child(1) figure img {
    width: 9.81vw;
    max-width: 157px;
  }
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec2 .-sec2-box-1 .-product-list li:nth-child(2) {
    position: absolute;
    bottom: 0;
    right: 68%;
  }
}
.p-company__sec.-sec2 .-sec2-box-1 .-product-list li:nth-child(2) figure img {
  max-width: 139px;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec2 .-sec2-box-1 .-product-list li:nth-child(2) figure img {
    width: 20.94vw;
    max-width: 328px;
  }
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec2 .-sec2-box-1 .-product-list li:nth-child(3) {
    position: absolute;
    bottom: 0;
    left: 68%;
  }
}
.p-company__sec.-sec2 .-sec2-box-1 .-product-list li:nth-child(3) figure img {
  max-width: 154px;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec2 .-sec2-box-1 .-product-list li:nth-child(3) figure img {
    width: 23.28vw;
    max-width: 372px;
  }
}
.p-company__sec.-sec2 .-sec2-box-2 {
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec2 .-sec2-box-2 {
    overflow: visible;
  }
}
.p-company__sec.-sec2 .-sec2-box-2 .-circleBox {
  margin-top: 2.6rem;
  display: grid;
  grid-template-columns: auto auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.85rem;
  padding: 0 0.8rem;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec2 .-sec2-box-2 .-circleBox {
    max-width: var(--maxWidth);
    margin: 0 auto;
    position: relative;
    width: 100%;
    height: 1px;
    display: block;
  }
}
.p-company__sec.-sec2 .-sec2-box-2 .-circleBox .p-company__circleTxtBox {
  min-width: auto;
}
.p-company__sec.-sec2 .-sec2-box-2 .-circleBox .p-company__circleTxtBox .-strong {
  line-height: 1;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec2 .-sec2-box-2 .-circleBox .p-company__circleTxtBox .-note {
    font-size: clamp(0.6rem, 0.3rem + 0.5vw, 0.8rem);
  }
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec2 .-sec2-box-2 .-circleBox .p-company__circleTxtBox {
    gap: 0;
    position: absolute;
    top: 220px;
    right: 75%;
  }
  .p-company__sec.-sec2 .-sec2-box-2 .-circleBox .p-company__circleTxtBox:nth-child(2) {
    left: 75%;
  }
}
.p-company__sec.-sec2 .-sec2-box-2 .-video {
  margin: -3rem auto -0.5rem;
  width: 100%;
  height: 272px;
  max-width: 1078px;
}
@media screen and (min-width: 768px) {
  .p-company__sec.-sec2 .-sec2-box-2 .-video {
    height: 606px;
  }
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec2 .-sec2-box-2 .-video {
    margin: -9rem auto -7.6rem;
    max-width: 1078px;
  }
}
.p-company__sec.-sec2 .-sec2-box-2 .-video video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.p-company__sec.-sec2 .-sec2-box-2 > .-strong {
  text-align: center;
  color: #005392;
  font-weight: 900;
  font-size: 1.8rem;
  position: relative;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec2 .-sec2-box-2 > .-strong {
    font-size: clamp(2rem, 0.313rem + 2.81vw, 3.125rem);
  }
}
.p-company__sec.-sec2 .-sec2-box-2 > .-link {
  margin-top: 1.75rem;
  text-align: center;
}

.p-company__sec.-sec3 .-sec3-box-1 {
  padding: 8rem 0 3.31rem;
  position: relative;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec3 .-sec3-box-1 {
    padding: 17rem var(--sidePadding) 6.5rem;
  }
}
.p-company__sec.-sec3 .-sec3-box-1 > * {
  position: relative;
  z-index: 1;
}
.p-company__sec.-sec3 .-sec3-box-1::before {
  content: "";
  display: block;
  width: 100%;
  height: 253px;
  background: url(/recruit/company/images/bg-earth.webp) no-repeat center center/auto 100%;
  position: absolute;
  top: -1.72rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec3 .-sec3-box-1::before {
    width: 100%;
    height: auto;
    max-width: 1540px;
    aspect-ratio: 1/0.4474;
  }
}
.p-company__sec.-sec3 .-sec3-box-1 .-area-1 {
  padding: 0 var(--sidePadding);
}
.p-company__sec.-sec3 .-sec3-box-1 .-area-1 .p-company__txtBox::after {
  content: "";
  display: block;
  width: 58.33px;
  aspect-ratio: 1/2.227;
  background: url(/recruit/company/images/img-human-01.webp) no-repeat center center/cover;
  position: absolute;
  bottom: -48.6px;
  left: 4px;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec3 .-sec3-box-1 .-area-1 .p-company__txtBox::after {
    width: 6.88vw;
    max-width: 110px;
  }
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec3 .-sec3-box-1 .-area-1 .p-company__txtBox::after {
    bottom: -37%;
    left: -22%;
  }
}
.p-company__sec.-sec3 .-sec3-box-1 .-area-2 {
  margin-top: 142px;
  height: 1190px;
  background: url(/recruit/company/images/bg-sec2-humans-sp.webp) no-repeat center center/auto 100%;
  position: relative;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec3 .-sec3-box-1 .-area-2 {
    margin: 77px auto 0;
    height: auto;
    width: 100%;
    max-width: 1320px;
    aspect-ratio: 1/0.9932;
    background: url(/recruit/company/images/bg-sec2-humans-pc.webp) no-repeat center center/cover;
  }
}
.p-company__sec.-sec3 .-sec3-box-1 .-area-2 .p-company__circleTxtBox {
  position: absolute;
}
.p-company__sec.-sec3 .-sec3-box-1 .-area-2 .p-company__circleTxtBox:nth-child(1) {
  bottom: calc(100% - 1.42rem);
  left: calc(50% - 0.11rem);
}
@media screen and (max-width: 366px) {
  .p-company__sec.-sec3 .-sec3-box-1 .-area-2 .p-company__circleTxtBox:nth-child(1) {
    left: auto;
    right: 0.71rem;
  }
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec3 .-sec3-box-1 .-area-2 .p-company__circleTxtBox:nth-child(1) {
    bottom: auto;
    top: -158px;
    left: 65%;
  }
}
.p-company__sec.-sec3 .-sec3-box-1 .-area-2 .p-company__circleTxtBox:nth-child(2) {
  top: 9.63rem;
  right: calc(50% - 0.81rem);
}
@media screen and (max-width: 366px) {
  .p-company__sec.-sec3 .-sec3-box-1 .-area-2 .p-company__circleTxtBox:nth-child(2) {
    right: auto;
    left: 1.44rem;
  }
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec3 .-sec3-box-1 .-area-2 .p-company__circleTxtBox:nth-child(2) {
    top: 2%;
    right: auto;
    left: 10%;
  }
}
.p-company__sec.-sec3 .-sec3-box-1 .-area-2 .p-company__circleTxtBox:nth-child(3) {
  top: 526px;
  left: calc(50% - 0.6rem);
}
@media screen and (max-width: 366px) {
  .p-company__sec.-sec3 .-sec3-box-1 .-area-2 .p-company__circleTxtBox:nth-child(3) {
    left: auto;
    right: var(--sidePadding);
  }
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec3 .-sec3-box-1 .-area-2 .p-company__circleTxtBox:nth-child(3) {
    top: 48%;
    left: 26%;
  }
}
.p-company__sec.-sec3 .-sec3-box-1 .-area-2 .p-company__circleTxtBox:nth-child(4) {
  bottom: 4.44rem;
  right: calc(50% - 1.03rem);
}
@media screen and (max-width: 366px) {
  .p-company__sec.-sec3 .-sec3-box-1 .-area-2 .p-company__circleTxtBox:nth-child(4) {
    right: auto;
    left: 1.56rem;
  }
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec3 .-sec3-box-1 .-area-2 .p-company__circleTxtBox:nth-child(4) {
    bottom: 11%;
    right: 22%;
  }
}

.p-company__sec.-sec4 .-area-1 {
  padding: 0 var(--sidePadding);
  position: relative;
}
.p-company__sec.-sec4 .-area-1 .p-company__txtBox {
  position: relative;
  z-index: 1;
}
.p-company__sec.-sec4 .-area-1 .p-company__txtBox::after {
  content: "";
  display: block;
  width: 58.33px;
  aspect-ratio: 1/2.227;
  background: url(/recruit/company/images/img-human-01.webp) no-repeat center center/cover;
  position: absolute;
  bottom: -48.6px;
  right: 4px;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec4 .-area-1 .p-company__txtBox::after {
    width: 6.88vw;
    max-width: 110px;
  }
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec4 .-area-1 .p-company__txtBox::after {
    bottom: -22%;
    right: -22%;
  }
}
.p-company__sec.-sec4 .-area-2 {
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec4 .-area-2 {
    overflow: visible;
    max-width: 1320px;
    margin: auto;
    padding: 0 var(--sidePadding);
    position: relative;
  }
}
.p-company__sec.-sec4 .-area-2 .-imgs .-medal {
  position: relative;
}
.p-company__sec.-sec4 .-area-2 .-imgs .-medal img {
  width: 106px;
  margin: auto;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec4 .-area-2 .-imgs .-medal img {
    width: calc((100vw - var(--sidePadding) * 2) * 0.1424);
    max-width: 188px;
  }
}
.p-company__sec.-sec4 .-area-2 .-imgs .-medal::before, .p-company__sec.-sec4 .-area-2 .-imgs .-medal::after {
  content: "";
  display: block;
  width: 167px;
  aspect-ratio: 1/0.706;
  background: url(/recruit/company/images/img-confetti.webp) no-repeat center center/cover;
  position: absolute;
  top: 1.38rem;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec4 .-area-2 .-imgs .-medal::before, .p-company__sec.-sec4 .-area-2 .-imgs .-medal::after {
    width: 18.31vw;
    max-width: 293px;
  }
}
.p-company__sec.-sec4 .-area-2 .-imgs .-medal::before {
  right: calc(50% + 6.55rem);
}
.p-company__sec.-sec4 .-area-2 .-imgs .-medal::after {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  left: calc(50% + 6.55rem);
}
.p-company__sec.-sec4 .-area-2 .-imgs .-human {
  margin-top: -2.04rem;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec4 .-area-2 .-imgs .-human {
    margin-top: -2.51rem;
  }
}
.p-company__sec.-sec4 .-area-2 .-imgs .-human img {
  width: 143px;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec4 .-area-2 .-imgs .-human img {
    width: calc((100vw - var(--sidePadding) * 2) * 0.1924);
    max-width: 254px;
  }
}
.p-company__sec.-sec4 .-area-2 .-circleArea {
  max-width: 390px;
  margin: auto;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec4 .-area-2 .-circleArea {
    margin-top: 90px;
    display: grid;
    grid-template-columns: 32.5% 32.5%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: absolute;
    width: calc(100% - var(--sidePadding) * 2);
    max-width: none;
    height: 100%;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.p-company__sec.-sec4 .-area-2 .-circleBox {
  margin-top: 0.75rem;
  min-height: 246px;
  padding: 0 var(--sidePadding);
  position: relative;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec4 .-area-2 .-circleBox {
    padding: 0;
  }
}
.p-company__sec.-sec4 .-area-2 .-circleBox::before {
  content: "";
  display: block;
  width: 167px;
  aspect-ratio: 1/0.706;
  background: url(/recruit/company/images/img-confetti.webp) no-repeat center center/cover;
  position: absolute;
  top: 1rem;
  right: calc(50% + 0rem);
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec4 .-area-2 .-circleBox::before {
    width: 18.31vw;
    max-width: 293px;
  }
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec4 .-area-2 .-circleBox::before {
    content: none;
  }
}
.p-company__sec.-sec4 .-area-2 .-circleBox .p-company__circleTxtBox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 0 auto;
  position: relative;
}
.p-company__sec.-sec4 .-area-2 .-circleBox .-note {
  width: 177px;
  font-size: 0.625rem;
  color: #666;
  font-weight: var(--font-m);
  margin: 0 0 0 auto;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec4 .-area-2 .-circleBox .-note {
    margin-top: 1.5rem;
    font-size: clamp(0.7rem, 0.25rem + 0.75vw, 1rem);
    width: 19.38vw;
    max-width: 310px;
  }
}
.p-company__sec.-sec4 .-area-2 .-circleBox .-human {
  width: 66px;
  position: absolute;
  top: 5px;
  right: calc(50% + 3rem);
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec4 .-area-2 .-circleBox .-human {
    width: calc((100vw - var(--sidePadding) * 2) * 0.0894);
    max-width: 118px;
    top: 57px;
    right: 78%;
  }
}
.p-company__sec.-sec4 .-area-2 .-circleBox.-box2::before {
  right: auto;
  left: calc(50% + 0rem);
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.p-company__sec.-sec4 .-area-2 .-circleBox.-box2 .p-company__circleTxtBox {
  margin: 0 auto 0 0;
}
.p-company__sec.-sec4 .-area-2 .-circleBox.-box2 .-note {
  margin: 0 auto 0 0;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec4 .-area-2 .-circleBox.-box2 .-note {
    margin-top: 1.5rem;
  }
}
.p-company__sec.-sec4 .-area-2 .-circleBox.-box2 .-human {
  right: auto;
  left: calc(50% + 3rem);
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec4 .-area-2 .-circleBox.-box2 .-human {
    left: 78%;
  }
}

.p-company__sec.-sec5 {
  margin-top: 4rem;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec5 {
    margin-top: 9rem;
  }
}
.p-company__sec.-sec5 .-sec5-box-1 {
  padding: 0 var(--sidePadding);
}
.p-company__sec.-sec5 .-sec5-box-1 .p-company__txtBox {
  position: relative;
}
.p-company__sec.-sec5 .-sec5-box-1 .p-company__txtBox::after {
  content: "";
  display: block;
  width: 58.33px;
  aspect-ratio: 1/2.227;
  background: url(/recruit/company/images/img-human-01.webp) no-repeat center center/cover;
  position: absolute;
  bottom: -48.6px;
  left: 4px;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec5 .-sec5-box-1 .p-company__txtBox::after {
    width: 6.88vw;
    max-width: 110px;
  }
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec5 .-sec5-box-1 .p-company__txtBox::after {
    bottom: -27%;
    left: -22%;
  }
}
.p-company__sec.-sec5 .-sec5-box-1 .-txtBox {
  margin-top: 5.57rem;
  background: #EFF6FC;
  border-radius: 10px;
  padding: 2.56rem 1.37rem 4.56rem;
  font-weight: var(--font-b);
  position: relative;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec5 .-sec5-box-1 .-txtBox {
    margin-top: 4.19rem;
    padding: 3.19rem 2.75rem 3.06rem;
    font-size: clamp(1rem, 0.813rem + 0.31vw, 1.125rem);
    width: 98%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-company__sec.-sec5 .-sec5-box-1 .-txtBox p {
  position: relative;
  z-index: 1;
}
.p-company__sec.-sec5 .-sec5-box-1 .-txtBox p > span {
  display: block;
}
.p-company__sec.-sec5 .-sec5-box-1 .-txtBox p span + span {
  margin-top: 1rem;
}
.p-company__sec.-sec5 .-sec5-box-1 .-txtBox p .-mark {
  display: inline-block;
  padding: 0.1rem 0.1rem;
  position: relative;
}
.p-company__sec.-sec5 .-sec5-box-1 .-txtBox p .-mark::before {
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  background: #ffff9a;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.p-company__sec.-sec5 .-sec5-box-1 .-txtBox p .-strong {
  font-size: 1.375rem;
  font-weight: 900;
  color: #005392;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec5 .-sec5-box-1 .-txtBox p .-strong {
    font-size: clamp(1.4rem, 1.062rem + 0.56vw, 1.625rem);
  }
}
.p-company__sec.-sec5 .-sec5-box-1 .-txtBox p .-note {
  font-size: 0.8rem;
  color: #666;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec5 .-sec5-box-1 .-txtBox p .-note {
    font-size: clamp(0.8rem, 0.5rem + 0.5vw, 1rem);
  }
}
.p-company__sec.-sec5 .-sec5-box-1 .-txtBox figure {
  width: 172px;
  position: absolute;
  top: calc(100% - 3.62rem);
  right: 0;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec5 .-sec5-box-1 .-txtBox figure {
    width: calc((100vw - var(--sidePadding) * 2) * 0.2136);
    max-width: 282px;
    top: -3%;
    right: 3%;
  }
}
.p-company__sec.-sec5 .-sec5-box-2 {
  margin-top: 12.88rem;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec5 .-sec5-box-2 {
    max-width: var(--maxWidth);
    margin: 5.06rem auto 0;
    padding: 0 var(--sidePadding);
  }
}
.p-company__sec.-sec5 .-sec5-box-2 > .-ttl {
  text-align: center;
  font-size: 1.38394rem;
  font-weight: 900;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec5 .-sec5-box-2 > .-ttl {
    font-size: clamp(1.4rem, 1.062rem + 0.56vw, 1.625rem);
  }
}
.p-company__sec.-sec5 .-sec5-box-2 > .-note {
  display: block;
  text-align: center;
  margin-top: 0.85rem;
  font-size: 0.85163rem;
  color: #666;
  font-weight: var(--font-b);
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec5 .-sec5-box-2 > .-note {
    font-size: clamp(0.8rem, 0.5rem + 0.5vw, 1rem);
  }
}
.p-company__sec.-sec5 .-sec5-box-2 .-circleBox {
  margin-top: 3.09rem;
  height: 900px;
  background: url(/recruit/company/images/bg-sec5-humans.webp) no-repeat center center/auto 100%;
  position: relative;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec5 .-sec5-box-2 .-circleBox {
    margin-top: 135px;
    max-width: 1300px;
    height: auto;
    aspect-ratio: 1/1.1509;
  }
}
.p-company__sec.-sec5 .-sec5-box-2 .-circleBox .p-company__circleTxtBox {
  min-width: auto;
  width: 168px;
  position: absolute;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec5 .-sec5-box-2 .-circleBox .p-company__circleTxtBox {
    width: 19.38vw;
    max-width: 310px;
  }
}
.p-company__sec.-sec5 .-sec5-box-2 .-circleBox .p-company__circleTxtBox:nth-of-type(1), .p-company__sec.-sec5 .-sec5-box-2 .-circleBox .p-company__circleTxtBox:nth-of-type(2) {
  padding-bottom: 1.3rem;
}
.p-company__sec.-sec5 .-sec5-box-2 .-circleBox .p-company__circleTxtBox:nth-of-type(1) .-note, .p-company__sec.-sec5 .-sec5-box-2 .-circleBox .p-company__circleTxtBox:nth-of-type(2) .-note {
  text-align: right;
  padding-right: 13%;
}
.p-company__sec.-sec5 .-sec5-box-2 .-circleBox .p-company__circleTxtBox:nth-of-type(1)::after, .p-company__sec.-sec5 .-sec5-box-2 .-circleBox .p-company__circleTxtBox:nth-of-type(2)::after {
  content: "";
  display: block;
  width: 38px;
  background: url(/recruit/company/images/img-sec5-woman.webp) no-repeat center center/cover;
  position: absolute;
  bottom: -49px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec5 .-sec5-box-2 .-circleBox .p-company__circleTxtBox:nth-of-type(1)::after, .p-company__sec.-sec5 .-sec5-box-2 .-circleBox .p-company__circleTxtBox:nth-of-type(2)::after {
    bottom: -25%;
  }
}
.p-company__sec.-sec5 .-sec5-box-2 .-circleBox .p-company__circleTxtBox:nth-of-type(1) {
  top: -30px;
  right: calc(50% + 7px);
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec5 .-sec5-box-2 .-circleBox .p-company__circleTxtBox:nth-of-type(1) {
    top: -135px;
    right: 54.43%;
  }
}
.p-company__sec.-sec5 .-sec5-box-2 .-circleBox .p-company__circleTxtBox:nth-of-type(1)::after {
  aspect-ratio: 1/2.524;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec5 .-sec5-box-2 .-circleBox .p-company__circleTxtBox:nth-of-type(1)::after {
    width: 3.94vw;
    max-width: 63px;
  }
}
.p-company__sec.-sec5 .-sec5-box-2 .-circleBox .p-company__circleTxtBox:nth-of-type(2) {
  top: -30px;
  left: calc(50% + 7px);
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec5 .-sec5-box-2 .-circleBox .p-company__circleTxtBox:nth-of-type(2) {
    top: -135px;
    left: 54.43%;
  }
}
.p-company__sec.-sec5 .-sec5-box-2 .-circleBox .p-company__circleTxtBox:nth-of-type(2)::after {
  width: 40px;
  aspect-ratio: 1/2.493;
  background-image: url(/recruit/company/images/img-sec5-man.webp);
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec5 .-sec5-box-2 .-circleBox .p-company__circleTxtBox:nth-of-type(2)::after {
    width: 4.19vw;
    max-width: 67px;
  }
}
.p-company__sec.-sec5 .-sec5-box-2 .-circleBox .p-company__circleTxtBox:nth-of-type(3) {
  width: 177px;
  top: 173px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec5 .-sec5-box-2 .-circleBox .p-company__circleTxtBox:nth-of-type(3) {
    width: 19.38vw;
    max-width: 310px;
    top: 14%;
  }
}
.p-company__sec.-sec5 .-sec5-box-2 .-circleBox .p-company__circleTxtBox:nth-of-type(4) {
  top: 412px;
  right: calc(50% + 7px);
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec5 .-sec5-box-2 .-circleBox .p-company__circleTxtBox:nth-of-type(4) {
    top: auto;
    bottom: 36%;
    right: 62%;
  }
}
.p-company__sec.-sec5 .-sec5-box-2 .-circleBox .p-company__circleTxtBox:nth-of-type(5) {
  top: 412px;
  left: calc(50% + 7px);
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec5 .-sec5-box-2 .-circleBox .p-company__circleTxtBox:nth-of-type(5) {
    top: auto;
    bottom: 36%;
    left: 62%;
  }
}
.p-company__sec.-sec5 .-sec5-box-2 .-circleBox .p-company__circleTxtBox:nth-of-type(6) {
  width: 177px;
  top: 609px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec5 .-sec5-box-2 .-circleBox .p-company__circleTxtBox:nth-of-type(6) {
    width: 19.38vw;
    max-width: 310px;
    top: auto;
    bottom: 11%;
  }
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec5 .-sec5-box-2 .-circleBox .p-company__circleTxtBox:nth-of-type(6) .-note {
    font-size: clamp(0.6rem, 1vw, 0.8rem);
  }
}
.p-company__sec.-sec5 .-sec5-box-3 {
  margin-top: 2.72rem;
  margin-bottom: 26px;
  padding: 246px var(--sidePadding) 275px;
  position: relative;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec5 .-sec5-box-3 {
    margin-top: 6rem;
    padding: 0 var(--sidePadding) 0;
    margin-bottom: 15rem;
  }
}
.p-company__sec.-sec5 .-sec5-box-3::before, .p-company__sec.-sec5 .-sec5-box-3::after {
  content: "";
  display: block;
  width: 167px;
  aspect-ratio: 1/0.706;
  background: url(/recruit/company/images/img-confetti.webp) no-repeat center center/cover;
  position: absolute;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec5 .-sec5-box-3::before, .p-company__sec.-sec5 .-sec5-box-3::after {
    width: 18.31vw;
    max-width: 293px;
  }
}
.p-company__sec.-sec5 .-sec5-box-3::before {
  top: 0;
  right: calc(50% + 15px);
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec5 .-sec5-box-3::before {
    top: -85%;
    right: 68%;
  }
}
.p-company__sec.-sec5 .-sec5-box-3::after {
  bottom: 123px;
  left: calc(50% - 28px);
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec5 .-sec5-box-3::after {
    top: -85%;
    bottom: auto;
    left: 68%;
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
  }
}
.p-company__sec.-sec5 .-sec5-box-3 .-ttl {
  font-size: 1.66rem;
  font-weight: 900;
  color: #005392;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec5 .-sec5-box-3 .-ttl {
    font-size: clamp(1.8rem, -0.188rem + 3.31vw, 3.125rem);
  }
}
.p-company__sec.-sec5 .-sec5-box-3 figure {
  position: absolute;
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec5 .-sec5-box-3 figure {
    z-index: 1;
  }
}
.p-company__sec.-sec5 .-sec5-box-3 figure:nth-of-type(1) {
  width: 220px;
  top: 0;
  right: calc(50% - 90px);
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec5 .-sec5-box-3 figure:nth-of-type(1) {
    width: 21.94vw;
    max-width: 351px;
    top: auto;
    bottom: 50%;
    right: 68%;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
}
.p-company__sec.-sec5 .-sec5-box-3 figure:nth-of-type(2) {
  width: 212px;
  bottom: 0;
  right: calc(50% - 74px);
}
@media screen and (min-width: 960px) {
  .p-company__sec.-sec5 .-sec5-box-3 figure:nth-of-type(2) {
    width: 23.5vw;
    max-width: 376px;
    bottom: 50%;
    left: 68%;
    right: auto;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
}