/* ===============================================
# Reset CSS
=============================================== */
/* Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Margin reset */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
figure,
blockquote {
  margin: 0;
  padding: 0;
}

/* Body */
body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
  -webkit-text-size-adjust: 100%;
  color: #333;
  background: #fff;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

/* List */
ul,
ol {
  list-style: none;
}

/* Link */
a {
  color: inherit;
  text-decoration: none;
}

/* Image */
img {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* Form */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  border: none;
  background: transparent;
  appearance: none;
}

/* Button */
button {
  cursor: pointer;
}

/* Table */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Textarea */
textarea {
  resize: vertical;
}

/* Address */
address {
  font-style: normal;
}

/* Hidden */
[hidden] {
  display: none !important;
}

i {
  font-style: normal;
}

em {
  font-style: normal;
}

@media (min-width: 769px) {
  a {
    cursor: pointer;
    transition: opacity 0.25s;
  }
  a:hover {
    opacity: 0.7;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 4.2666666667vw;
  }
}
.l-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem 0;
  width: 100%;
  background-color: transparent;
  z-index: 100;
  transition: background-color 0.5s;
}
.l-header__top, .l-header__form {
  position: fixed;
  background-color: #fff;
}
.l-header__top .l-header__link, .l-header__form .l-header__link {
  color: #355968;
}
.l-header + .l-main {
  padding-top: 4.875rem;
}
@media (max-width: 768px) {
  .l-header + .l-main {
    padding-top: 3.1875rem;
  }
}
.l-header.is-fixed {
  position: fixed;
  opacity: 0;
  transition: background-color 0.5s, top 0.3s ease;
}
.l-header.is-fixed.is-show {
  opacity: 1;
  background-color: #fff;
}
.l-header.is-fixed.is-show .l-header__logo-scroll {
  opacity: 1;
}
.l-header.is-fixed.is-show .l-header__link {
  color: #333;
}
.l-header.is-fixed.is-show .l-header__toggle i {
  background-color: #355968;
}
.l-header.is-active .l-header__nav {
  opacity: 1;
  visibility: visible;
}
.l-header.is-active .l-header__toggle i:nth-child(1) {
  top: 0.5rem;
  transform: rotate(45deg);
}
.l-header.is-active .l-header__toggle i:nth-child(2) {
  left: 25%;
  opacity: 0;
}
.l-header.is-active .l-header__toggle i:nth-child(3) {
  bottom: 0.5rem;
  width: 1.25rem;
  transform: rotate(-45deg);
}
.l-header__inner {
  margin: auto;
  padding: 0 clamp(1rem, 2.5vw, 2.25rem) 0 clamp(2rem, 3.4722222222vw, 3.125rem);
  max-width: 1440px;
}
.l-header__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-header__logo {
  position: relative;
  width: clamp(8.1875rem, 13.1944444444vw, 11.875rem);
}
.l-header__logo-scroll {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
}
.l-header__nav {
  display: flex;
  gap: clamp(1.25rem, 2.7777777778vw, 2.5rem);
  align-items: center;
  font-weight: bold;
  font-family: "Barlow Condensed", sans-serif;
}
.l-header__link {
  display: flex;
  gap: clamp(1.25rem, 2.7777777778vw, 2.5rem);
  color: #fff;
  font-size: 1rem;
}
.l-header__cta {
  gap: 0.625rem;
}
@media (max-width: 768px) {
  .l-header {
    padding: 0.75rem 0;
  }
  .l-header__top .l-header__toggle i {
    background-color: #355968;
  }
  .l-header__inner {
    padding: 0 1.25rem;
  }
  .l-header__logo {
    width: 8.25rem;
  }
  .l-header__nav {
    position: fixed;
    top: 3.1875rem;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    gap: unset;
    padding-bottom: 2.25rem;
    overflow: scroll;
    background-color: #5BD5EE;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
  }
  .l-header__link {
    flex-direction: column;
    gap: unset;
    margin-bottom: 5.625rem;
    width: 100%;
    font-size: 1.375rem;
  }
  .l-header__link a {
    position: relative;
    display: block;
    padding: 2.5rem 1.25rem;
    color: #fff;
    border-bottom: 1px solid #fff;
  }
  .l-header__link a::after {
    content: "";
    position: absolute;
    top: 0;
    right: 1.25rem;
    bottom: 0;
    margin: auto;
    width: 1.78125rem;
    height: 0.34375rem;
    background-image: url(../img/icon-arrow.png);
    background-size: 100% 100%;
  }
  .l-header__cta {
    align-items: center;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
  }
  .l-header__cta a {
    display: block;
    padding: 0.5625rem 2rem;
    width: 18.375rem;
    font-size: 1.25rem;
    color: #333;
    text-align: center;
    border-radius: 6.25rem;
    background-color: #fff;
  }
  .l-header__sns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
  }
  .l-header__sns a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.625rem;
    height: 2.625rem;
    border-radius: 50%;
    background-color: #fff;
  }
  .l-header__sns a span {
    width: 1.75rem;
    height: 1.75rem;
  }
  .l-header__sns-tictoc span {
    transform: translateY(-0.125rem);
  }
  .l-header__toggle {
    position: relative;
    width: 1.25rem;
    height: 1.125rem;
  }
  .l-header__toggle i {
    position: absolute;
    left: 0;
    right: 0;
    display: block;
    width: 1.25rem;
    height: 0.125rem;
    background-color: #fff;
    transition: all 0.5s;
  }
  .l-header__toggle i:nth-child(1) {
    top: 0;
  }
  .l-header__toggle i:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .l-header__toggle i:nth-child(3) {
    bottom: 0;
    width: 0.875rem;
  }
}

.l-content-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-content-header__bg {
  width: 100%;
  height: 28.25rem;
}
.l-content-header__bg img {
  max-width: unset;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.l-content-header__title {
  position: absolute;
  top: 10.625rem;
  left: 0;
  right: 0;
  margin: auto;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: clamp(5rem, 6.9444444444vw, 6.25rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  z-index: 10;
  font-family: "Barlow Condensed", sans-serif;
}
.l-content-header__title i {
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  font-weight: bold;
}
@media (max-width: 768px) {
  .l-content-header {
    height: 18.5625rem;
  }
  .l-content-header__bg {
    height: 18.5625rem;
  }
  .l-content-header__title {
    top: 6.625rem;
    font-size: 3.125rem;
  }
  .l-content-header__title i {
    font-size: 0.36em;
  }
}

.l-content-lead {
  margin-bottom: 5.1875rem;
}
.l-content-lead__inner {
  margin: auto;
  padding: 0 2rem;
  max-width: 1040px;
  box-sizing: content-box;
}
.l-content-lead__head {
  position: relative;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  font-size: clamp(1.75rem, 2.0833333333vw, 1.875rem);
  font-weight: 700;
  text-align: center;
}
.l-content-lead__head::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  margin: auto;
  width: 2.375rem;
  height: 0.125rem;
  background: linear-gradient(to right, #5BD5EE 0, #5BD5EE 14px, #99A9B0 14px, #99A9B0 100%);
}
.l-content-lead__text {
  font-size: clamp(0.875rem, 1.1111111111vw, 1rem);
  text-align: center;
  font-weight: 400;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .l-content-lead {
    margin-bottom: 5.25rem;
  }
  .l-content-lead__inner {
    padding: 0 1rem;
  }
  .l-content-lead__head {
    font-size: 1.25rem;
  }
  .l-content-lead__text {
    font-size: 0.9375rem;
  }
}

.l-recruit-banner {
  position: relative;
  background-color: #20B8D7;
}
.l-recruit-banner::before, .l-recruit-banner::after {
  content: "";
  position: absolute;
  width: 246px;
  width: clamp(123px, 17.0833333333vw, 246px);
  height: clamp(148px, 20.625vw, 297px);
  background-size: contain;
  background-position: center;
  z-index: 10;
}
.l-recruit-banner::before {
  left: max(10px, 50% - 520px - clamp(20px, 2vw, 40px));
  bottom: clamp(32px, 3.8194444444vw, 55px);
  background-image: url(../img/recruit-banner-01.webp);
}
.l-recruit-banner::after {
  top: clamp(32px, 4.7222222222vw, 68px);
  right: max(10px, 50% - 520px - clamp(24px, 3vw, 32px));
  background-image: url(../img/recruit-banner-02.webp);
}
.l-recruit-banner__bg {
  padding: 156px 0 114px;
}
.l-recruit-banner__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.5;
  background-image: url(../img/recruit-banner-bg-pc.webp);
  background-size: contain;
  background-position: center;
}
.l-recruit-banner__inner {
  position: relative;
  margin: auto;
  max-width: 1040px;
  z-index: 10;
}
.l-recruit-banner__wrap {
  margin: auto;
  width: fit-content;
}
.l-recruit-banner__head {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 37px;
  color: #fff;
  font-weight: 600;
  font-size: 60px;
  line-height: 1.2;
}
.l-recruit-banner__head span {
  font-family: "Barlow Condensed", sans-serif;
}
.l-recruit-banner__head i {
  font-size: 0.3em;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}
.l-recruit-banner p {
  margin-bottom: 37px;
  color: #fff;
  text-align: center;
  font-size: 16px;
}
.l-recruit-banner a {
  display: block;
  margin: auto;
  padding: 15px 0;
  width: 215px;
  font-size: 20px;
  border-radius: 10px;
  text-align: center;
  color: #5BD5EE;
  font-weight: 400;
  background-color: #fff;
  font-family: "Doppio One", sans-serif;
}
@media (max-width: 768px) {
  .l-recruit-banner::before, .l-recruit-banner::after {
    content: "";
    width: 7.6875rem;
    height: 9.25rem;
  }
  .l-recruit-banner::before {
    left: 0.625rem;
    bottom: 2rem;
  }
  .l-recruit-banner::after {
    top: 2rem;
    right: 0.625rem;
  }
  .l-recruit-banner__bg {
    padding: 14rem 0;
  }
  .l-recruit-banner__bg::before {
    background-image: url(../img/recruit-banner-bg-sp.webp);
  }
  .l-recruit-banner__inner {
    padding: 0 1rem;
  }
  .l-recruit-banner__head {
    margin-bottom: 2rem;
    font-size: 3.375rem;
  }
  .l-recruit-banner__head i {
    font-size: 0.33333333em;
  }
  .l-recruit-banner p {
    margin-bottom: 2rem;
    font-size: 1rem;
  }
  .l-recruit-banner a {
    padding: 1rem 0;
    width: 13.5rem;
    font-size: 1.25rem;
    border-radius: 0.625rem;
  }
}

.l-footer {
  position: relative;
  padding: 32px 0 45px;
  background-color: #fff;
}
.l-footer__inner {
  margin: auto;
  padding: 0 2rem;
  max-width: 86rem;
  box-sizing: content-box;
}
.l-footer__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-footer__text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.l-footer__text h2 {
  width: 11.875rem;
}
.l-footer__text p {
  font-size: clamp(0.75rem, 1.1111111111vw, 1rem);
  line-height: 1.8;
  font-weight: 400;
}
.l-footer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.l-footer__link {
  display: flex;
  gap: clamp(1.25rem, 2.7777777778vw, 2.5rem);
  margin-bottom: 1.25rem;
  font-size: 1rem;
  font-weight: bold;
  font-family: "Barlow Condensed", sans-serif;
}
.l-footer__row {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  margin: 0 auto 0.875rem;
}
.l-footer__cta {
  gap: 0.625rem;
}
.l-footer__cta a {
  padding: clamp(0.8rem, 0.7638888889vw, 0.6875rem) clamp(1.25rem, 2.4305555556vw, 2.1875rem);
}
.l-footer__sns {
  display: flex;
  gap: 0.625rem;
}
.l-footer__sns a {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
}
.l-footer__copy {
  font-size: 0.625rem;
}
@media (max-width: 768px) {
  .l-footer {
    padding: 1.5rem 0 2rem;
  }
  .l-footer__inner {
    padding: 0 2.5rem;
  }
  .l-footer__wrap {
    gap: 2.25rem;
    align-items: flex-start;
    flex-direction: column;
  }
  .l-footer__text p {
    font-size: 1rem;
  }
  .l-footer__nav {
    margin: auto;
  }
  .l-footer__link {
    gap: 2.5rem;
  }
  .l-footer__row {
    gap: 1.25rem;
    flex-direction: column;
  }
  .l-footer__cta a {
    padding: 0.6875rem 2.1875rem;
  }
  .l-footer__copy {
    align-self: center;
  }
}

.c-bg-gradient {
  padding-top: 4.5625rem;
  background-image: linear-gradient(to bottom, #f0f7ff, #fff);
}
@media (max-width: 768px) {
  .c-bg-gradient {
    padding-top: 2.3125rem;
  }
}

.c-cta {
  display: block;
  padding: 0.6875rem 2.1875rem;
  color: #fff;
  font-weight: bold;
  font-size: 1.125rem;
  border-radius: 100px;
  background-color: #5BD5EE;
  font-family: "Barlow Condensed", sans-serif;
}
.c-cta__wrap {
  display: flex;
}

.c-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 2.5rem;
  width: 12.75rem;
  height: 3.625rem;
  font-size: 1.25rem;
  color: #fff;
  font-weight: normal;
  border-radius: 0.625rem;
  background-color: #5BD5EE;
  font-family: "Doppio One", sans-serif;
}
.c-button::after {
  content: "";
  position: absolute;
  top: 0;
  right: 1.5rem;
  bottom: 0;
  margin: auto;
  width: 1.75rem;
  height: 0.375rem;
  background-image: url(../img/icon-arrow.png);
  background-size: 100% 100%;
  background-position: 100%;
  background-repeat: no-repeat;
}

.c-error {
  font-size: 0.875rem;
  color: #FF2F0A;
  font-weight: bold;
}

.p-company {
  padding: 4rem 0 6rem;
}
.p-company__inner {
  margin: auto;
  padding: 0 2rem;
  max-width: 65rem;
  box-sizing: content-box;
}
.p-company__table {
  margin: auto;
  max-width: 64.8125rem;
}
.p-company__table th {
  padding: 1.75rem 0;
  width: 7.25rem;
  font-size: 1rem;
  text-align: left;
  font-weight: bold;
  vertical-align: top;
  border-bottom: 0.125rem solid #5BD5EE;
}
.p-company__table td {
  padding: 1.75rem 1rem;
  font-size: 1rem;
  border-bottom: 0.125rem solid #D9D9D9;
  line-height: 1.8;
  text-align: justify;
}
@media (max-width: 768px) {
  .p-company {
    padding: 1.25rem 0 5rem;
  }
  .p-company__inner {
    padding: 0 1.25rem;
  }
}

.p-contact {
  padding: 3.25rem 0 9rem;
  background: #F1FAFF;
}
.p-contact__inner {
  margin: auto;
  padding: 0 2rem;
  max-width: 53.125rem;
  box-sizing: content-box;
}
.p-contact__title {
  display: flex;
  gap: 0.75rem;
  flex-direction: column;
  margin-bottom: clamp(1.5rem, 3.6111111111vw, 3.25rem);
  font-size: clamp(4rem, 6.9444444444vw, 6.25rem);
  color: #20B8D7;
  line-height: 1.1;
}
.p-contact__title span {
  font-weight: 600;
  font-family: "Barlow Condensed";
}
.p-contact__title i {
  font-size: clamp(1rem, 1.25vw, 1.125rem);
}
.p-contact__lead {
  margin: 2.5rem 0;
  font-size: 1rem;
}
.p-contact__wrap {
  padding: 2.5rem;
  border-radius: 0.375rem;
  background-color: #fff;
}
.p-contact__table {
  display: block;
}
.p-contact__table tbody {
  display: flex;
  gap: 2rem;
  flex-direction: column;
}
.p-contact__table tr {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
}
.p-contact__table th {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 1rem;
  text-align: left;
}
.p-contact__table th i {
  font-size: 0.75em;
  color: #FF2F0A;
  font-weight: 400;
}
.p-contact__table td {
  display: block;
}
.p-contact__table td input {
  display: block;
  padding: 0.5rem;
  width: 100%;
  height: 3.75rem;
  font-size: 1rem;
  border-radius: 0.375rem;
  background: #F5FDFF;
  border: unset;
}
.p-contact__table td input::placeholder {
  color: #C4E0E7;
}
.p-contact__table td textarea {
  display: block;
  padding: 0.5rem;
  width: 100%;
  height: 15rem;
  font-size: 1rem;
  border-radius: 0.375rem;
  background: #F5FDFF;
  border: unset;
}
.p-contact__table-complete tr {
  gap: 0;
  flex-direction: row;
}
.p-contact__table-complete th {
  flex: 1 1 11.5rem;
  color: #7F8082;
  font-weight: 400;
}
.p-contact__table-complete:last-child th {
  align-self: flex-start;
}
.p-contact__table-complete td {
  flex: 1 1 36.625rem;
}
.p-contact__privacy {
  margin-top: 2rem;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
}
.p-contact__privacy a {
  text-decoration: underline;
}
.p-contact__button {
  display: block;
  margin: auto;
  max-width: 20rem;
  width: 100%;
  height: 3.625rem;
  font-size: 1.125rem;
  color: #fff;
  font-weight: bold;
  border-radius: 0.375rem;
  background-color: #00B1DD;
}
.p-contact__button:disabled {
  background-color: #ccc;
}
.p-contact__button-wrap {
  margin-top: 2rem;
}
.p-contact__complete {
  padding: 9rem 0;
}
.p-contact__complete .p-contact__wrap {
  padding: 3.75rem 2.5rem;
  text-align: center;
}
.p-contact__complete .p-contact__wrap h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #20B8D7;
}
.p-contact__complete .p-contact__wrap p {
  margin: 2rem 0;
  font-size: 1rem;
  line-height: 2;
}
.p-contact__complete-text h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.p-contact__complete-text dl {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}
.p-contact__complete-text dt {
  font-weight: bold;
}
.p-contact__complete-text dd {
  margin: 0;
}
@media (max-width: 768px) {
  .p-contact {
    padding: 1.25rem 0 4.375rem;
  }
  .p-contact__inner {
    padding: 0 1.5rem;
  }
  .p-contact__title {
    margin-bottom: 1.25rem;
    padding-left: 0.75rem;
    font-size: 3.125rem;
  }
  .p-contact__title i {
    font-size: 0.36em;
  }
  .p-contact__wrap {
    padding: 2.5rem 1.25rem;
  }
  .p-contact__table-complete tbody {
    gap: 1rem;
  }
  .p-contact__table-complete tr {
    flex-direction: column;
  }
  .p-contact__table-complete tr th {
    flex: 1 1 auto;
  }
  .p-contact__table-complete tr td {
    flex: 1 1 auto;
  }
  .p-contact__complete {
    padding: 3.75rem 0;
  }
  .p-contact__complete .p-contact__wrap {
    padding: 2.5rem 1rem;
  }
  .p-contact__complete .p-contact__wrap h2 {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
  }
  .p-contact__complete .p-contact__wrap p {
    margin: 1.25rem 0;
    font-size: 0.875rem;
  }
}

.p-entry__complete {
  padding-top: 2rem;
}
.p-entry__complete-title {
  margin-bottom: 2rem;
  font-size: 5rem;
  color: #20B8D7;
  text-align: center;
  font-weight: 600;
  font-family: "Barlow Condensed";
}
.p-entry__complete .p-contact__wrap {
  position: relative;
  margin: auto;
  padding: 3.75rem 0;
  width: clamp(28.125rem, 59.0277777778vw, 53.125rem);
  text-align: center;
  z-index: 10;
}
.p-entry__complete .p-contact__wrap::before, .p-entry__complete .p-contact__wrap::after {
  content: "";
  position: absolute;
  display: block;
  background-size: contain;
}
.p-entry__complete .p-contact__wrap::before {
  top: 9rem;
  right: -12.375rem;
  width: 18.75rem;
  height: 15.75rem;
  background-image: url(../img/entry-complete-01-pc.webp);
}
.p-entry__complete .p-contact__wrap::after {
  left: -12rem;
  bottom: 13.125rem;
  width: 18.75rem;
  height: 15.625rem;
  background-image: url(../img/entry-complete-02-pc.webp);
}
.p-entry__complete .p-contact__wrap h3 {
  display: flex;
  flex-direction: column;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #20B8D7;
}
.p-entry__complete .p-contact__wrap h3 span {
  position: relative;
  margin: auto;
  font-size: 0.625em;
  width: fit-content;
}
.p-entry__complete .p-contact__wrap h3 span::before, .p-entry__complete .p-contact__wrap h3 span::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  margin: auto;
  width: 0.75rem;
  height: 1.25rem;
  background-image: url(../img/entry-complete-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.p-entry__complete .p-contact__wrap h3 span::before {
  right: calc(100% + 0.625rem);
}
.p-entry__complete .p-contact__wrap h3 span::after {
  left: calc(100% + 0.625rem);
  transform: scaleX(-1);
}
.p-entry__complete .p-contact__wrap p {
  margin: 2rem 0;
  line-height: 2;
}
.p-entry__complete .p-contact__wrap p span {
  display: block;
  font-size: 1rem;
  color: #20B8D7;
}
.p-entry__complete .p-contact__wrap p strong {
  display: block;
  font-size: 1.25rem;
  color: #20B8D7;
}
.p-entry__complete-bg {
  position: relative;
  background-color: #fff;
  z-index: 10;
}
.p-entry__complete-list {
  display: flex;
}
@media (max-width: 768px) {
  .p-entry__complete {
    margin-bottom: -5rem;
    padding: 1.75rem 0 0;
  }
  .p-entry__complete-title {
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    line-height: normal;
  }
  .p-entry__complete .p-contact__wrap {
    width: auto;
    padding: 2.5rem 1rem;
  }
  .p-entry__complete .p-contact__wrap::before, .p-entry__complete .p-contact__wrap::after {
    display: none;
  }
  .p-entry__complete .p-contact__wrap h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
  .p-entry__complete .p-contact__wrap h3 span {
    font-size: 0.58333em;
  }
  .p-entry__complete .p-contact__wrap p {
    margin: 1.25rem 0;
    font-size: 0.875rem;
  }
  .p-entry__complete .p-contact__wrap p span {
    font-size: 1rem;
  }
  .p-entry__complete .p-contact__wrap p strong {
    font-size: 1.25rem;
  }
  .p-entry__complete-list {
    display: flex;
    flex-wrap: wrap;
  }
  .p-entry__complete-list li {
    width: 50%;
  }
  .p-entry__complete-wrap {
    display: flex;
    margin-top: 0.625rem;
  }
}

.p-privacy {
  padding: 3.125rem 0 6.25rem;
  background-color: #F1FAFF;
}
.p-privacy__inner {
  margin: auto;
  padding: 0 2rem;
  max-width: 52rem;
  box-sizing: content-box;
}
.p-privacy h2 {
  display: flex;
  flex-direction: column;
  margin-bottom: 3.25rem;
  font-size: 3rem;
  color: #20B8D7;
  font-weight: bold;
}
.p-privacy h2 span {
  font-weight: 600;
  font-family: "Barlow Condensed";
}
.p-privacy h2 i {
  font-size: 0.375em;
}
.p-privacy__wrap {
  padding: 2.25rem 4rem;
  font-size: 1rem;
  background-color: #fff;
}
.p-privacy__indent {
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
}
.p-privacy__lead {
  margin-bottom: 2.25rem;
  font-size: 0.75em;
}
.p-privacy__item {
  text-align: justify;
}
.p-privacy__item:not(:last-child) {
  margin-bottom: 2rem;
}
.p-privacy__item h3 {
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  font-size: 1em;
  border-bottom: solid 0.0625rem #D9D9D9;
}
.p-privacy__item p {
  font-size: 0.75em;
}
.p-privacy__item p:not(:last-child) {
  margin-bottom: 1em;
}
.p-privacy__item ul {
  padding-left: 1em;
  font-size: 0.75em;
  text-indent: -1em;
}
@media (max-width: 768px) {
  .p-privacy {
    padding: 1.25rem 0 4.375rem;
  }
  .p-privacy__inner {
    padding: 0 1.25rem;
  }
  .p-privacy h2 {
    margin-bottom: 1.5rem;
    font-size: 2.25rem;
    line-height: 1.4;
  }
  .p-privacy h2 i {
    font-size: 0.5em;
  }
  .p-privacy__wrap {
    padding: 2rem 1.125rem;
    font-size: 1rem;
  }
  .p-privacy__item h3 {
    font-size: 0.875em;
  }
}

.p-top__inner {
  margin: auto;
  max-width: 65rem;
  padding: 0 2rem;
  box-sizing: content-box;
}
.p-top__title {
  display: flex;
  gap: 1.25rem;
  flex-direction: column;
  align-items: flex-start;
  font-size: 3.75rem;
  line-height: 1;
}
.p-top__title span {
  position: relative;
  font-weight: 600;
  font-family: "Barlow Condensed";
}
.p-top__title span em {
  color: #5bd5ee;
}
.p-top__title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.625rem;
  width: 2.375rem;
  height: 0.0625rem;
  background: linear-gradient(to right, #5BD5EE 0, #5BD5EE 0.625rem, #99A9B0 0.625rem, #99A9B0 100%);
}
.p-top__title i {
  font-size: 0.3em;
}
.p-top-mv {
  position: relative;
  background-image: url(../img/top-mv-bg-01.webp);
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
.p-top-mv__wrap {
  position: relative;
  margin: auto;
  padding: clamp(1rem, 1.5277777778vw, 1.375rem) 0 0 clamp(1.25rem, 3.125vw, 2.8125rem);
  max-width: 90rem;
  height: clamp(32.1875rem, 58.3333333333vw, 52.5rem);
}
.p-top-mv__wrap::before, .p-top-mv__wrap::after {
  content: "";
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
}
.p-top-mv__wrap::before {
  top: 0;
  right: clamp(1rem, 1.5277777778vw, 6.625rem);
  width: clamp(30rem, 46.875vw, 42.1875rem);
  height: clamp(21.333333rem, 33.3333333333vw, 30rem);
  background-image: url(../img/top-mv-bg-02.svg);
}
.p-top-mv__wrap::after {
  left: clamp(2rem, 4.4444444444vw, 4rem);
  bottom: 0;
  width: clamp(12.5rem, 21.6666666667vw, 19.5rem);
  height: clamp(11.79839rem, 23.4722222222vw, 21.125rem);
  background-image: url(../img/top-mv-bg-01.svg);
}
.p-top-mv h2 {
  font-size: clamp(5rem, 11.1111111111vw, 10rem);
  color: #5bd5ee;
  font-weight: 600;
  font-family: "Barlow Condensed";
  line-height: 1;
}
.p-top-mv h2 p {
  display: flex;
  align-items: center;
}
.p-top-mv h2 p:last-child {
  gap: clamp(1rem, 2.2222222222vw, 2rem);
}
.p-top-mv h2 i {
  font-size: clamp(1.125rem, 1.9444444444vw, 1.75rem);
  color: #333;
  transform: translateY(1.25rem);
  font-family: "Noto Sans JP", sans-serif;
}
.p-top-mv__img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  max-width: 90rem;
  width: 100%;
  height: fit-content;
}
.p-top-value {
  padding: 9.5rem 0;
}
.p-top-value__wrap {
  display: flex;
  justify-content: space-between;
}
.p-top-value__title {
  flex: 1 1 15.375rem;
  max-width: 15.375rem;
  transform: translateY(0.75rem);
}
.p-top-value__text {
  flex: 1 1 32.375rem;
  max-width: 32.375rem;
}
.p-top-value__text h3 {
  margin-bottom: 2rem;
  font-size: 1.875rem;
}
.p-top-value__text p {
  margin-bottom: 2rem;
  font-size: 1rem;
  text-align: justify;
  line-height: 1.8;
}
.p-top-service {
  padding: 10.5rem 0 8.4375rem;
  color: #fff;
  background-image: url(../img/top-servive-pc.webp);
  background-size: cover;
  background-repeat: no-repeat;
}
.p-top-service__wrap {
  display: flex;
  gap: 1.25rem;
  flex-direction: column;
  width: fit-content;
}
.p-top-service__title {
  display: flex;
  flex-direction: column;
  font-size: 3.75rem;
  line-height: 1.2;
}
.p-top-service__title span {
  font-weight: 600;
  font-family: "Barlow Condensed";
}
.p-top-service__title i {
  font-size: 0.33333333em;
}
.p-top-service__text {
  max-width: 18.125rem;
  font-size: 1rem;
  text-align: justify;
  line-height: 1.8;
}
.p-top-company {
  padding: 12rem 0 12.5rem;
  overflow: hidden;
}
.p-top-company__text {
  position: relative;
  display: flex;
  gap: 2rem;
  flex-direction: column;
  width: fit-content;
  line-height: 1.8;
  text-align: justify;
}
.p-top-company__text::after {
  content: "";
  position: absolute;
  top: -2.375rem;
  left: calc(100% + 1.125rem);
  width: clamp(24.25rem, 53.8888888889vw, 48.5rem);
  height: clamp(19.375rem, 43.0555555556vw, 38.5rem);
  background-image: url(../img/top-company-pc.webp);
  background-size: contain;
  background-repeat: no-repeat;
}
.p-top-company__text strong {
  font-size: 2rem;
}
.p-top-company__text p {
  max-width: 28rem;
  width: 100%;
  font-size: 1rem;
  text-align: justify;
}
@media (max-width: 768px) {
  .p-top__inner {
    padding: 0 1.25rem;
  }
  .p-top__title {
    flex: 1 1 auto;
    font-size: 2.5rem;
    transform: translateY(0);
  }
  .p-top__title i {
    font-size: 0.45em;
  }
  .p-top-mv {
    background-size: cover;
    background-position: bottom;
  }
  .p-top-mv__wrap {
    padding: 1.5rem 0 0 1rem;
    height: 32.1875rem;
  }
  .p-top-mv__wrap::before {
    top: 4.5rem;
    right: -2.25rem;
    width: 19rem;
    height: 17.875rem;
    background-size: 100% 100%;
  }
  .p-top-mv__wrap::after {
    left: -2rem;
    bottom: 0;
    width: 10rem;
    height: 11.625rem;
  }
  .p-top-mv h2 {
    position: relative;
    font-size: 4.5rem;
    line-height: 0.9;
  }
  .p-top-mv h2 p {
    flex-direction: column;
    align-items: flex-start;
  }
  .p-top-mv h2 p:last-child {
    gap: 1rem;
  }
  .p-top-mv h2 p i {
    font-size: 1.25rem;
    transform: translateY(0);
  }
  .p-top-mv__img img {
    max-width: unset;
    width: 100%;
  }
  .p-top-value {
    padding: 3.25rem 0;
  }
  .p-top-value__wrap {
    gap: 2rem;
    flex-direction: column;
  }
  .p-top-value__text {
    flex: 1 1 auto;
  }
  .p-top-value__text h3 {
    font-size: 1.25rem;
  }
  .p-top-service {
    padding: 2.5rem 0 3rem;
    background-image: url(../img/top-servive-sp.webp);
  }
  .p-top-service__title {
    gap: 0.25rem;
    font-size: 2.5rem;
  }
  .p-top-service__title i {
    font-size: 1.25rem;
    line-height: normal;
  }
  .p-top-service__text {
    max-width: unset;
  }
  .p-top-company {
    position: relative;
    padding: 3.625rem 0 4.625rem;
  }
  .p-top-company__text {
    position: static;
    width: auto;
  }
  .p-top-company__text::after {
    position: relative;
    top: unset;
    left: unset;
    right: unset;
    width: 22.25rem;
    height: 17.75rem;
    background-image: url(../img/top-company-sp.webp);
  }
  .p-top-company__text strong {
    font-size: 1.125rem;
  }
  .p-top-company__text p {
    width: auto;
  }
}

.p-service {
  margin: 5.1875rem 0 8.75rem;
}
.p-service__inner {
  margin: auto;
  padding: 0 2rem;
  max-width: 65rem;
  box-sizing: content-box;
}
.p-service__container {
  display: flex;
  gap: 7.125rem;
  flex-direction: column;
  margin-top: 5rem;
}
.p-service__wrap {
  display: flex;
  gap: 2.375rem;
  align-items: center;
  justify-content: space-between;
}
.p-service__wrap:nth-child(even) {
  flex-direction: row-reverse;
}
.p-service__img {
  flex: 1 1 29.875rem;
}
.p-service__text {
  flex: 1 1 32.1875rem;
}
.p-service__text-head {
  display: flex;
  gap: 0.375rem;
  align-items: center;
  margin-bottom: clamp(0.5rem, 1.9444444444vw, 1.75rem);
  font-size: clamp(1.875rem, 2.5694444444vw, 2.3125rem);
  line-height: 1.2;
}
.p-service__text-head i {
  font-weight: 600;
  color: #5BD5EE;
  font-family: "Barlow Condensed", sans-serif;
}
.p-service__text-head span {
  font-size: 0.837837em;
  font-weight: 700;
}
.p-service__text-main {
  font-size: clamp(0.875rem, 1.1111111111vw, 1rem);
  text-align: justify;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .p-service {
    margin: 5.25rem 0 5.875rem;
  }
  .p-service__inner {
    padding: 0 1.125rem;
  }
  .p-service__container {
    gap: 3.75rem;
  }
  .p-service__wrap {
    gap: 1.875rem;
    flex-direction: column;
  }
  .p-service__wrap:nth-child(even) {
    flex-direction: column;
  }
  .p-service__img {
    flex: 1 1 auto;
  }
  .p-service__text {
    flex: 1 1 auto;
  }
  .p-service__text-head {
    margin-bottom: 1.25rem;
    font-size: 1.625rem;
  }
  .p-service__text-head span {
    font-size: 0.875em;
  }
  .p-service__text-main {
    font-size: 1rem;
  }
}

.p-value {
  overflow: hidden;
}
.p-value__img {
  display: flex;
}
.p-value__inner {
  margin: auto;
  padding: 0 2rem;
  max-width: 1440px;
  box-sizing: content-box;
}
.p-value__container {
  padding: 6.25rem 0 7rem;
}
.p-value__wrap {
  position: relative;
  margin: auto;
  max-width: 69.875rem;
  border: 0.0625rem solid #D9F7FF;
  box-shadow: 0 0 2rem 0 #DDF8FF;
}
.p-value__wrap::before, .p-value__wrap::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
}
.p-value__wrap::before {
  left: -9rem;
  bottom: -3.75rem;
  width: 36.875rem;
  height: 27.25rem;
  background-image: url(../img/value-bg-02.webp);
}
.p-value__wrap::after {
  top: -2.3125rem;
  right: -19.625rem;
  width: 42.1875rem;
  height: 36.3125rem;
  background-image: url(../img/value-bg-01.webp);
  z-index: 1;
}
.p-value__bg {
  position: relative;
  padding: clamp(2.25rem, 5vw, 4.5rem) clamp(2rem, 4.4444444444vw, 4rem) clamp(2.25rem, 5vw, 4.5rem) clamp(2rem, 6.5277777778vw, 5.875rem);
  background-color: #fff;
  z-index: 10;
}
.p-value__title {
  display: flex;
  flex-direction: column;
  margin-bottom: clamp(3rem, 6.6666666667vw, 6rem);
  font-size: clamp(3rem, 4.1666666667vw, 3.75rem);
  text-align: center;
  line-height: 1.2;
}
.p-value__title span {
  color: #5BD5EE;
  font-weight: 600;
  font-family: "Barlow Condensed";
}
.p-value__title i {
  font-size: 0.3em;
  font-weight: 700;
}
.p-value__text {
  display: flex;
  gap: 4.5625rem;
  flex-direction: column;
}
.p-value__text dl {
  display: flex;
  align-items: center;
}
.p-value__text dl dt {
  display: flex;
  flex: 1 1 clamp(16rem, 16.0416666667vw, 23.75rem);
  align-items: flex-end;
  padding-right: clamp(1rem, 4.1666666667vw, 3.75rem);
  font-size: clamp(1.5rem, 2.2222222222vw, 2rem);
  border-right: 1px solid #D9D9D9;
}
.p-value__text dl dt i {
  margin-right: 0.25rem;
  color: #5BD5EE;
  font-weight: 600;
  font-family: "Barlow Condensed";
}
.p-value__text dl dt span {
  font-weight: 600;
  font-family: "Barlow Condensed";
}
.p-value__text dl dt small {
  font-size: 0.625em;
  font-weight: 700;
  transform: translateY(-0.4375rem);
}
.p-value__text dl dd {
  flex: 1 1 clamp(1rem, 55.5555555556vw, 32.1875rem);
  margin: 0;
  padding-left: clamp(1rem, 4.1666666667vw, 3.75rem);
  font-size: clamp(0.875rem, 1.1111111111vw, 1rem);
  text-align: justify;
  font-weight: 400;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .p-value__img {
    flex-wrap: wrap;
  }
  .p-value__img li {
    width: 50%;
  }
  .p-value__inner {
    padding: 0 1.25rem;
  }
  .p-value__container {
    padding: 3.625rem 0 4rem;
  }
  .p-value__wrap::before {
    left: -1.25rem;
    bottom: -1.75rem;
    width: 12.8125rem;
    height: 9.375rem;
    z-index: 12;
  }
  .p-value__wrap::after {
    top: -4rem;
    right: -8rem;
    width: 20.425rem;
    height: 15.22rem;
  }
  .p-value__bg {
    padding: 2.25rem 2rem;
  }
  .p-value__title {
    margin-bottom: 2rem;
    font-size: 2.5rem;
  }
  .p-value__title i {
    font-size: 0.45em;
  }
  .p-value__text {
    gap: 1.25rem;
  }
  .p-value__text dl {
    gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .p-value__text dl dt {
    flex: 1 1 auto;
    padding: 0;
    font-size: 1.625rem;
    border: unset;
  }
  .p-value__text dl dt small {
    font-size: 0.76923em;
    transform: translateY(-0.1875rem);
  }
  .p-value__text dl dd {
    flex: 1 1 auto;
    padding: 0;
    line-height: 1.8;
    font-size: 1rem;
  }
}

.p-recruit__header-entry {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  width: 13.375rem;
  font-size: 2rem;
  color: #fff;
  font-weight: 600;
  font-family: "Barlow Condensed";
  background-color: #FFC21F;
}
.p-recruit__header-entry i {
  width: 1.375rem;
}
.p-recruit__inner {
  margin: auto;
  padding: 0 clamp(1rem, 2.2222222222vw, 2rem);
  max-width: 65rem;
  box-sizing: content-box;
}
.p-recruit__title {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 3.75rem;
  font-size: 6.25rem;
  line-height: 1.2;
}
.p-recruit__title span {
  font-weight: 600;
  font-family: "Barlow Condensed";
}
.p-recruit__title i {
  font-size: 0.3em;
}
.p-recruit__title-voice span {
  position: relative;
}
.p-recruit__title-voice span::after {
  content: "";
  position: absolute;
  top: -0.4rem;
  left: -3.25rem;
  width: 10rem;
  height: 3rem;
  background-image: url(../img/recruit-voice-title.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transform: rotate(-13.254deg);
}
.p-recruit-lead {
  overflow: hidden;
  padding: 9.25rem 0 11.125rem;
}
.p-recruit-lead__wrap {
  position: relative;
  margin: auto;
  width: fit-content;
}
.p-recruit-lead h2 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-direction: column;
  margin-bottom: 2.5rem;
  font-size: 4.5rem;
  text-align: center;
  line-height: 1.1;
}
.p-recruit-lead h2 span {
  width: fit-content;
  font-size: 0.611111111em;
  border-bottom: 0.0625rem solid #333;
}
.p-recruit-lead h3 {
  margin-bottom: 2.5rem;
  font-size: 2.5rem;
  font-weight: 600;
  color: #88969D;
  text-align: center;
  font-family: "Barlow Condensed";
}
.p-recruit-lead p {
  font-size: 1rem;
  text-align: center;
  line-height: 2.2;
}
.p-recruit-lead__list li {
  position: absolute;
  width: 18.75rem;
  border-radius: 0.625rem;
  overflow: hidden;
}
.p-recruit-lead__list li:first-child {
  left: -15rem;
  bottom: -4rem;
}
.p-recruit-lead__list li:last-child {
  right: -15rem;
  bottom: 8.75rem;
}
.p-recruit-data {
  padding: 2.5rem 0 4.625rem;
  background-color: #20B8D7;
  background-image: url(../img/recruit-data-bg-pc.webp);
  background-size: contain;
  background-repeat: no-repeat;
}
.p-recruit-data__title {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  margin-bottom: 2rem;
  font-size: 6.25rem;
  color: #fff;
  line-height: 1.1;
}
.p-recruit-data__title span {
  font-weight: 600;
  font-family: "Barlow Condensed";
}
.p-recruit-data__title i {
  font-size: 0.3em;
}
.p-recruit-data__wrap {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.p-recruit-data__item {
  padding: 1.75rem 1.5rem 3.5rem;
  flex: 1 1 calc(50% - 0.625rem);
  border-radius: 0.625rem;
  background-color: #fff;
}
.p-recruit-data__item:nth-child(2) {
  padding-bottom: 2.125rem;
}
.p-recruit-data__item:nth-child(3) {
  padding-bottom: 6rem;
}
.p-recruit-data__item h4 {
  padding: 0.125rem 0;
  font-size: clamp(1.5rem, 2.2222222222vw, 2rem);
  color: #fff;
  font-weight: bold;
  text-align: center;
  background-color: #555;
}
.p-recruit-data__gender {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4.625rem;
}
.p-recruit-data__gender-item {
  position: relative;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-direction: column;
}
.p-recruit-data__gender-item:first-child {
  padding-right: clamp(1.25rem, 2.7777777778vw, 2.5rem);
}
.p-recruit-data__gender-item:first-child::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 0.125rem;
  height: 110%;
  background-image: linear-gradient(to bottom, #d9d9d9 0px, #d9d9d9 0.5rem, transparent 0.5rem, transparent 0.75rem);
  background-size: 100% 0.75rem;
  background-repeat: repeat-y;
}
.p-recruit-data__gender-item:last-child {
  padding-left: clamp(1.25rem, 2.7777777778vw, 2.5rem);
}
.p-recruit-data__gender-item:last-child > i {
  width: 2.315rem;
}
.p-recruit-data__gender-item > i {
  width: 2rem;
}
.p-recruit-data__gender-item span {
  font-size: 1.75rem;
  font-weight: bold;
}
.p-recruit-data__gender-item p {
  display: flex;
  gap: 0.25rem;
  align-items: flex-end;
  line-height: 1;
  font-size: clamp(5rem, 6.9444444444vw, 6.25rem);
}
.p-recruit-data__gender-item p strong {
  color: #5BD5EE;
  font-weight: 600;
  font-family: "Barlow Condensed";
}
.p-recruit-data__gender-item p i {
  font-size: 0.28em;
  color: #333;
  font-weight: bold;
  transform: translateY(-0.625rem);
}
.p-recruit-data__age {
  margin-top: 3.25rem;
}
.p-recruit-data__age-text {
  display: flex;
  gap: 0.5rem;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 3.25rem;
  font-size: clamp(5rem, 6.9444444444vw, 6.25rem);
  line-height: 1;
}
.p-recruit-data__age-text strong {
  color: #5BD5EE;
  font-weight: 600;
  font-family: "Barlow Condensed";
}
.p-recruit-data__age-text span {
  font-size: 0.28em;
  font-weight: bold;
  transform: translateY(-0.75rem);
}
.p-recruit-data__wear-img {
  margin: 4.625rem auto 3.5rem;
  max-width: 16.25rem;
}
.p-recruit-data__wear-text {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: clamp(4rem, 6.9444444444vw, 6.25rem);
  line-height: 1;
}
.p-recruit-data__wear-text span {
  transform: translateY(-0.75rem);
  font-size: 0.28em;
  font-weight: bold;
}
.p-recruit-data__wear-text strong {
  margin: 0 0.25rem 0 0.5rem;
  color: #5BD5EE;
  font-weight: 600;
  font-family: "Barlow Condensed";
}
.p-recruit-data__mbti {
  margin-top: 2rem;
}
.p-recruit-data__top {
  display: flex;
  justify-content: center;
  margin-top: 3.25rem;
}
.p-recruit-data__top li {
  position: relative;
  padding: 0 clamp(1rem, 4.4444444444vw, 4rem);
}
.p-recruit-data__top li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0.125rem;
  height: 100%;
  background-image: linear-gradient(to bottom, #d9d9d9 0px, #d9d9d9 0.5rem, transparent 0.5rem, transparent 0.75rem);
  background-size: 100% 0.75rem;
  background-repeat: repeat-y;
}
.p-recruit-data__top li:nth-child(1) {
  padding-left: 0;
}
.p-recruit-data__top li:nth-child(1) h5::before, .p-recruit-data__top li:nth-child(1) h5::after {
  background-color: #ffd461;
}
.p-recruit-data__top li:nth-child(1) h5 span {
  color: #ffd461;
}
.p-recruit-data__top li:nth-child(1) p {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 5.25rem;
  font-size: 2.125rem;
  font-size: clamp(1.25rem, 2.3611111111vw, 2.125rem);
  transform: translateY(-1rem);
}
.p-recruit-data__top li:nth-child(2) h5::before, .p-recruit-data__top li:nth-child(2) h5::after {
  background-color: #5294b0;
}
.p-recruit-data__top li:nth-child(2) h5 span {
  color: #5294b0;
}
.p-recruit-data__top li:nth-child(3) {
  padding-right: 0;
}
.p-recruit-data__top li:nth-child(3) h5::before, .p-recruit-data__top li:nth-child(3) h5::after {
  background-color: #dc6955;
}
.p-recruit-data__top li:nth-child(3) h5 span {
  color: #dc6955;
}
.p-recruit-data__top h5 {
  position: relative;
  display: flex;
  gap: 0.5rem;
  align-items: flex-end;
  justify-content: center;
  margin: 0 auto 1.5rem;
  padding: 0 3.55rem;
  width: fit-content;
  font-size: 6.25rem;
  font-size: clamp(5rem, 6.9444444444vw, 6.25rem);
  font-weight: bold;
  line-height: 1;
}
.p-recruit-data__top h5 span {
  font-weight: 600;
  font-family: "Barlow Condensed";
}
.p-recruit-data__top h5 i {
  font-size: 0.28em;
  transform: translateY(-0.75rem);
}
.p-recruit-data__top h5::before, .p-recruit-data__top h5::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 2.4rem;
  height: 5.75rem;
  mask-image: url(../img/recruit-data-top.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: #ffd461;
}
.p-recruit-data__top h5::before {
  left: 0;
}
.p-recruit-data__top h5::after {
  right: 0;
  transform: scaleX(-1);
}
.p-recruit-data__top p {
  font-size: 1.75rem;
  font-size: clamp(1.25rem, 1.9444444444vw, 1.75rem);
  font-weight: bold;
  text-align: center;
}
.p-recruit-voice {
  margin: 6.25rem 0 8.75rem;
}
.p-recruit-voice__item-01 h4 {
  width: clamp(20rem, 37.5vw, 33.75rem);
}
.p-recruit-voice__item-01 .p-recruit-voice__header-wrap {
  padding: 8.875rem 0 6rem;
}
.p-recruit-voice__item-01 .p-recruit-voice__header-wrap::after {
  right: 0;
  background-image: url(../img/recuit-voice-bg-01-pc.webp);
}
.p-recruit-voice__item-02 h4 {
  width: clamp(20rem, 38.75vw, 34.875rem);
}
.p-recruit-voice__item-02 .p-recruit-voice__header-wrap {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  padding: 6.25rem 0 4.625rem;
  margin-left: auto;
}
.p-recruit-voice__item-02 .p-recruit-voice__header-wrap::after {
  left: -4rem;
  width: clamp(20rem, 43.1944444444vw, 38.875rem);
  height: clamp(14.919rem, 32.2222222222vw, 29rem);
  background-image: url(../img/recuit-voice-bg-02-pc.webp);
}
.p-recruit-voice__item-02 .p-recruit-voice__header-wrap span {
  display: block;
  max-width: 33rem;
  max-width: clamp(20rem, 38.75vw, 34.875rem);
  width: 100%;
  text-align: left;
}
.p-recruit-voice__item-03 h4 {
  width: clamp(20rem, 38.125vw, 34.375rem);
}
.p-recruit-voice__item-03 .p-recruit-voice__header-wrap {
  padding: 9.1875rem 0 6rem;
}
.p-recruit-voice__item-03 .p-recruit-voice__header-wrap::after {
  right: -5rem;
  right: clamp(-1rem, 5.5555555556vw, -5rem);
  width: clamp(20rem, 43.1944444444vw, 38.875rem);
  height: clamp(14.919rem, 32.2222222222vw, 29rem);
  background-image: url(../img/recuit-voice-bg-03-pc.webp);
}
.p-recruit-voice__item-03 .p-recruit-voice__header-wrap h4 {
  margin-bottom: 0.75rem;
}
.p-recruit-voice__item-03 .p-recruit-voice__header-wrap span {
  display: block;
  margin: 0;
  max-width: clamp(20rem, 37.7777777778vw, 34rem);
  width: 100%;
  text-align: right;
}
.p-recruit-voice__item-03 .p-recruit-voice__content {
  padding-bottom: 0;
}
.p-recruit-voice__header {
  background-color: #F2F2F4;
}
.p-recruit-voice__header-wrap {
  position: relative;
}
.p-recruit-voice__header-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: clamp(20rem, 44.4444444444vw, 40rem);
  height: clamp(14.375rem, 31.9444444444vw, 28.75rem);
  background-size: cover;
  background-repeat: no-repeat;
}
.p-recruit-voice__header-wrap h4 {
  margin-bottom: 2rem;
}
.p-recruit-voice__header-wrap span {
  display: block;
  font-size: 1.25rem;
}
.p-recruit-voice__content {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  padding: 3rem 0 6.25rem;
}
.p-recruit-voice__content-reverse {
  flex-direction: row-reverse;
}
.p-recruit-voice__content-img {
  flex: 1 1 27.375rem;
}
.p-recruit-voice__content-text {
  flex: 1 1 35.75rem;
}
.p-recruit-voice__content-text em {
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background: linear-gradient(110deg, transparent 0.25em, rgba(91, 213, 238, 0.4) 0.25em, rgba(91, 213, 238, 0.4) calc(100% - 0.25em), transparent calc(100% - 0.25em)) bottom/100% 0.5em no-repeat;
  width: fit-content;
  font-size: 1.25rem;
  font-weight: bold;
  font-style: italic;
  z-index: 10;
}
.p-recruit-voice__content-text p {
  margin: 1rem 0 2.5rem;
  font-size: 1rem;
  line-height: 1.8;
  text-align: justify;
}
.p-recruit-voice__content-text p:last-child {
  margin-bottom: 0;
}
.p-recruit-detail {
  margin: 8.75rem 0;
}
.p-recruit-detail dl {
  display: flex;
}
.p-recruit-detail dt {
  padding: 1.75rem 0;
  width: 8em;
  font-weight: bold;
  border-bottom: solid 0.125rem #5BD5EE;
}
.p-recruit-detail dd {
  margin: 0;
  padding: 1.75rem 0 1.75rem 1rem;
  flex: 1 1 0;
  border-bottom: solid 0.125rem #D9D9D9;
}
.p-recruit-link {
  padding: 3rem 0 3.75rem;
  background-color: #20B8D7;
}
.p-recruit-link__item {
  margin: auto;
  width: fit-content;
}
.p-recruit-link__item h4 {
  position: relative;
  width: fit-content;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.p-recruit-link__item h4::before, .p-recruit-link__item h4::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  width: 0.75rem;
  height: 1.125rem;
  margin: auto;
  background-image: url(../img/recruit-link-head.png);
  background-size: 100%;
  background-repeat: no-repeat;
}
.p-recruit-link__item h4::before {
  right: calc(100% + 0.5rem);
}
.p-recruit-link__item h4::after {
  left: calc(100% + 0.5rem);
  transform: scaleX(-1);
}
.p-recruit-link__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40.5rem;
  height: 10rem;
  color: #0165AC;
  font-size: 2.25rem;
  font-weight: bold;
  background-color: #D7F0FF;
  border-radius: 0.625rem;
}
.p-recruit-link__button::before {
  content: "";
  position: absolute;
  top: 0;
  right: 3.75rem;
  bottom: 0;
  display: block;
  margin: auto;
  width: 2.625rem;
  height: 2.625rem;
  background-image: url(../img/recruit-link-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 50%;
  transform: translateY(0.125rem);
}
.p-recruit-link__button-entry {
  gap: 1.5rem;
  justify-content: flex-start;
  padding-left: 5.25rem;
}
.p-recruit-link__button-entry i {
  width: 4.375rem;
}
.p-recruit-footer {
  padding: 1.5rem 0;
}
.p-recruit-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 3rem;
}
.p-recruit-footer__text {
  display: flex;
  gap: 1.25rem;
  flex-direction: column;
}
.p-recruit-footer__logo {
  width: 11.75rem;
}
.p-recruit-footer__address {
  font-size: 1rem;
}
.p-recruit-footer__item {
  display: flex;
  gap: 1.25rem;
  flex-direction: column;
}
.p-recruit-footer__sns {
  display: flex;
  gap: 0.625rem;
  justify-content: flex-end;
}
.p-recruit-footer__sns li {
  width: 2.5rem;
  height: 2.5rem;
}
.p-recruit-footer__copy {
  font-size: 0.625rem;
}
@media (max-width: 768px) {
  .p-recruit {
    margin: 3.25rem 0 5.75rem;
  }
  .p-recruit__header-entry {
    gap: 0.5rem;
    width: 6.625rem;
    font-size: 1.125rem;
  }
  .p-recruit__header-entry i {
    width: 1.375rem;
  }
  .p-recruit__inner {
    padding: 0 1.25rem;
  }
  .p-recruit__title {
    gap: 0.125rem;
    margin-bottom: 2rem;
    font-size: 3rem;
  }
  .p-recruit__title i {
    font-size: 0.375em;
  }
  .p-recruit__title-voice span::after {
    top: -0.5rem;
    left: -1.75rem;
    width: 6rem;
    height: 2rem;
    background-size: contain;
    transform: rotate(-2deg);
  }
  .p-recruit-lead {
    padding: 4rem 0;
  }
  .p-recruit-lead h2 {
    gap: 1rem;
    font-size: 2.25rem;
  }
  .p-recruit-lead h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
  }
  .p-recruit-lead p {
    margin-bottom: 2rem;
    font-size: 0.9375rem;
    line-height: 2;
  }
  .p-recruit-lead__list {
    display: flex;
    gap: 0.5rem;
  }
  .p-recruit-lead__list li {
    position: relative;
    width: 50%;
  }
  .p-recruit-lead__list li:first-child {
    left: auto;
    bottom: auto;
  }
  .p-recruit-lead__list li:last-child {
    right: auto;
    bottom: auto;
  }
  .p-recruit-lead__list li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .p-recruit-data {
    padding: 3rem 0;
    background-image: url(../img/recruit-data-bg-sp.webp);
  }
  .p-recruit-data__wrap {
    gap: 2rem;
  }
  .p-recruit-data__title {
    gap: 0.5rem;
    font-size: 3rem;
  }
  .p-recruit-data__title i {
    font-size: 0.375em;
  }
  .p-recruit-data__item {
    padding: 1.375rem 1.25rem 1.5rem;
  }
  .p-recruit-data__item:nth-child(3) {
    padding-bottom: 2.25rem;
  }
  .p-recruit-data__item:nth-child(4) {
    padding-bottom: 2.5rem;
  }
  .p-recruit-data__item:nth-child(4) h4 {
    margin-bottom: 1.75rem;
  }
  .p-recruit-data__item:nth-child(5) {
    padding-bottom: 2.5rem;
  }
  .p-recruit-data__item:nth-child(5) h4 {
    margin-bottom: 1.75rem;
    padding: 0.5rem 0;
    line-height: normal;
  }
  .p-recruit-data__item h4 {
    margin-bottom: 2rem;
    line-height: 1.625;
  }
  .p-recruit-data__gender {
    margin-top: 0;
  }
  .p-recruit-data__gender-item {
    width: 100%;
  }
  .p-recruit-data__gender-item span {
    font-size: 1.375rem;
  }
  .p-recruit-data__gender-item p {
    line-height: 0.8;
    font-size: 3.75rem;
  }
  .p-recruit-data__age {
    margin-top: 0;
  }
  .p-recruit-data__age-text {
    margin-bottom: 2rem;
    font-size: 3.75rem;
  }
  .p-recruit-data__age-text span {
    font-size: 0.3666666em;
  }
  .p-recruit-data__age-img {
    margin: auto;
    width: 16.25rem;
  }
  .p-recruit-data__wear-img {
    margin: 0 auto 1.5rem;
    width: 10.875rem;
  }
  .p-recruit-data__wear-text {
    flex-wrap: wrap;
    justify-content: center;
    font-size: 3.75rem;
  }
  .p-recruit-data__wear-text span {
    font-size: 0.3666666em;
  }
  .p-recruit-data__wear-text span:first-child {
    margin-bottom: 1.5rem;
    text-align: center;
    width: 100%;
    transform: translateY(0);
  }
  .p-recruit-data__wear-text span:last-child {
    transform: translateY(-0.25rem);
  }
  .p-recruit-data__wear-text strong {
    margin-left: 0;
    line-height: 0.8;
  }
  .p-recruit-data__top {
    flex-direction: column;
  }
  .p-recruit-data__top li {
    padding: 2rem 0;
  }
  .p-recruit-data__top li:nth-child(1) {
    padding-top: 0;
  }
  .p-recruit-data__top li:nth-child(1) p {
    height: auto;
  }
  .p-recruit-data__top li:nth-child(1) p {
    font-size: 1.75rem;
    transform: translateY(0);
  }
  .p-recruit-data__top li:nth-child(3) {
    padding-bottom: 0;
  }
  .p-recruit-data__top li:not(:last-child)::after {
    top: unset;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 0.125rem;
    background-image: linear-gradient(to right, #d9d9d9 0px, #d9d9d9 0.5rem, transparent 0.5rem, transparent 0.75rem);
    background-size: 0.75rem 100%;
    background-repeat: repeat-x;
  }
  .p-recruit-data__top h5 {
    font-size: 6.25rem;
  }
  .p-recruit-data__top p {
    font-size: 1.375rem;
  }
  .p-recruit-voice {
    margin: 3.25rem 0 5.75rem;
  }
  .p-recruit-voice__item-01 h4 {
    margin-bottom: 1rem;
    width: 13.75rem;
  }
  .p-recruit-voice__item-01 .p-recruit-voice__header-wrap {
    padding: 3.75rem 0 1rem;
  }
  .p-recruit-voice__item-01 .p-recruit-voice__header-wrap::after {
    right: -1.25rem;
    width: 12.75rem;
    height: 11.375rem;
    background-image: url(../img/recuit-voice-bg-01-sp.webp);
  }
  .p-recruit-voice__item-02 h4 {
    margin-right: -1.25rem;
    width: 13.75rem;
    margin-bottom: 0.5rem;
  }
  .p-recruit-voice__item-02 .p-recruit-voice__header-wrap {
    padding: 2.5rem 0 1.25rem;
  }
  .p-recruit-voice__item-02 .p-recruit-voice__header-wrap::after {
    left: -1.25rem;
    width: 12.875rem;
    height: 11.375rem;
    background-position: right;
    background-image: url(../img/recuit-voice-bg-02-sp.webp);
  }
  .p-recruit-voice__item-02 .p-recruit-voice__header-wrap span {
    max-width: 12.5rem;
    text-align: right;
  }
  .p-recruit-voice__item-03 h4 {
    width: 13rem;
  }
  .p-recruit-voice__item-03 .p-recruit-voice__header-wrap {
    padding: 3.25rem 0 1.25rem;
  }
  .p-recruit-voice__item-03 .p-recruit-voice__header-wrap::after {
    right: -1.25rem;
    width: 12.75rem;
    height: 11.375rem;
    background-image: url(../img/recuit-voice-bg-03-sp.webp);
  }
  .p-recruit-voice__item-03 .p-recruit-voice__header-wrap h4 {
    margin-bottom: 1.225rem;
  }
  .p-recruit-voice__item-03 .p-recruit-voice__header-wrap span {
    text-align: left;
  }
  .p-recruit-voice__header-wrap span {
    font-size: 1rem;
  }
  .p-recruit-voice__content {
    display: flex;
    flex-direction: column;
    padding: 3rem 0;
  }
  .p-recruit-voice__content-img {
    flex: 1 1 auto;
  }
  .p-recruit-voice__content-text {
    flex: 1 1 auto;
  }
  .p-recruit-voice__content-text em {
    width: auto;
    font-size: 1.125rem;
  }
  .p-recruit-voice__content-text em:first-child {
    margin-top: 0;
  }
  .p-recruit-voice__content-text em::after {
    content: "";
    display: none;
  }
  .p-recruit-voice__content-text-img {
    margin: 2.5rem 0;
  }
  .p-recruit-voice__content-text p {
    margin: 1.25rem 0 2.5rem;
  }
  .p-recruit-detail {
    margin: 5.75rem 0 3.375rem;
  }
  .p-recruit-detail dd {
    line-height: 2.2;
  }
  .p-recruit-link {
    padding: 2.25rem 0;
  }
  .p-recruit-link__item {
    width: 100%;
  }
  .p-recruit-link__item h4 {
    margin-bottom: 0.625rem;
    font-size: 1.375rem;
  }
  .p-recruit-link__item h4::before, .p-recruit-link__item h4::after {
    width: 0.625rem;
    height: 1rem;
  }
  .p-recruit-link__button {
    margin: auto;
    max-width: 19.25rem;
    width: 100%;
    height: 6.25rem;
    font-size: 1.25rem;
  }
  .p-recruit-link__button::before {
    right: 2rem;
    width: 1.5rem;
    height: 1.5rem;
  }
  .p-recruit-link__button-entry {
    gap: 1rem;
    padding-left: 1.5rem;
  }
  .p-recruit-link__button-entry i {
    width: 1.75rem;
  }
  .p-recruit-footer__inner {
    gap: 1.5rem;
    flex-direction: column;
    margin: 0 2.5rem;
  }
  .p-recruit-footer__text {
    gap: 0.75rem;
  }
  .p-recruit-footer__item {
    gap: 0.875rem;
    align-items: center;
  }
}

@media screen and (min-width: 769px) {
  .u-hidden-pc {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .u-hidden-sp {
    display: none !important;
  }
}

/*# sourceMappingURL=style.css.map */
