@charset "UTF-8";
body {
  background-color: #FBFCFE;
}

/* common
---------------------------------------------------------------------------- */
.m-ttl-speechBubble {
  font-family: "Zen Maru Gothic", serif;
  font-size: 4rem;
  line-height: 1.32;
  letter-spacing: 0.08em;
  font-weight: 900;
  margin-block: calc((1em - 1lh) / 2);
  background-image: linear-gradient(135deg, #2AA6F5 0, #002C98 100%);
  background-repeat: no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
  margin-inline: auto;
  position: relative;
}

.m-ttl-speechBubble::before {
  content: "";
  position: absolute;
  bottom: -3.7rem;
  left: 50%;
  transform: translateX(-50%);
  width: 25.5rem;
  aspect-ratio: 247/24;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(./../../../images/recruit/icn_speech_bubble.svg);
}

@media screen and (max-width: 767px) {
  .m-ttl-speechBubble {
    font-size: 6.6666666667vw;
  }
  .m-ttl-speechBubble::before {
    bottom: -8vw;
    width: 59.4666666667vw;
    aspect-ratio: 185/18;
  }
}
/* p-bg
---------------------------------------------------------------------------- */
.p-bg {
  position: relative;
}

.p-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(./../../../images/recruit/careers/bg_bg_pc.png);
  background-color: #FBFCFE;
}

@media screen and (max-width: 767px) {
  .p-bg::after {
    content: none;
  }
}
/* p-person
---------------------------------------------------------------------------- */
.p-person {
  padding-block: 6rem 8rem;
}

.p-person-wrapper > :first-child {
  margin-bottom: 9.1rem;
}

.p-person-lead-wrap {
  text-align: center;
  margin-bottom: 3.9rem;
}

.p-person-lead {
  display: inline;
  font-size: 3.2rem;
  line-height: 1.8;
  font-weight: 400;
  line-height: 1.8;
  font-family: "hanatotyoutyo";
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background-color: #C6E9FE;
  padding: 0.3em;
}
.p-person-lead ._blue {
  color: #0A3190;
}

.p-person-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  justify-content: center;
  gap: 0 3.5rem;
  margin-bottom: 3.5rem;
}

.p-person-img {
  display: block;
  width: 57.6rem;
  aspect-ratio: 576/382;
}
.p-person-img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.p-person-list-wrap {
  background: linear-gradient(to right, #002C98, #2AA6F5);
  border-radius: 2rem;
  padding: 0.5rem;
}

.p-person-list {
  counter-reset: num;
  display: grid;
  grid-template-columns: repeat(1, auto);
  background-color: #fff;
  border-radius: 1.6rem;
  padding-block: 2.9rem 3.8rem;
  padding-inline: 4.4rem;
}

.p-person-item:not(:first-of-type):not(:last-of-type) {
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.03em;
  font-weight: 700;
  color: #0081D9;
  padding-bottom: 1.1rem;
  background-repeat: repeat-x;
  background-size: 0.8em 0.2em;
  background-image: radial-gradient(0.08em 0.08em at center center, currentColor, currentColor 100%, transparent, transparent);
  background-position: left bottom;
  position: relative;
  margin-left: 6.3rem;
  margin-bottom: 2.4rem;
}
.p-person-item:not(:first-of-type):not(:last-of-type)::before {
  content: "";
  width: 4.8rem;
  aspect-ratio: 45/48;
  background-image: url(./../../../images/recruit/careers/icn_q.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -0.4rem;
  left: -6.3rem;
}
.p-person-item:not(:first-of-type):not(:last-of-type)::after {
  counter-increment: num;
  content: "0" counter(num);
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 900;
  font-family: "Zen Maru Gothic";
  position: absolute;
  top: 0.5rem;
  left: -5.4rem;
}
.p-person-item:first-of-type, .p-person-item:last-of-type {
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.03em;
  font-weight: 400;
}
.p-person-item:first-of-type {
  margin-bottom: 2rem;
}
.p-person-item:last-of-type {
  text-align: right;
}

.p-person-txt {
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.03em;
  font-weight: 400;
  width: max-content;
  margin-inline: auto;
}

@media screen and (max-width: 767px) {
  .p-person {
    padding-block: 8vw 16vw;
  }
  .p-person-wrapper > :first-child {
    margin-bottom: 14.9333333333vw;
  }
  .p-person-lead-wrap {
    margin-bottom: 5.3333333333vw;
  }
  .p-person-lead {
    font-size: 4.8vw;
    line-height: 1.7777777778;
  }
  .p-person-inner {
    grid-template-columns: 1fr;
    gap: 5.3333333333vw 0;
    margin-bottom: 6.9333333333vw;
  }
  .p-person-img {
    width: 100%;
  }
  .p-person-list-wrap {
    border-radius: 5.3333333333vw;
    padding: 1.3333333333vw;
  }
  .p-person-list {
    border-radius: 4.2666666667vw;
    padding-block: 6.6666666667vw;
    padding-inline: 4vw;
  }
  .p-person-item:not(:first-of-type):not(:last-of-type) {
    font-size: 4.2666666667vw;
    line-height: 1.5;
    padding-bottom: 2.4vw;
    margin-left: calc(12vw + 4vw);
    margin-bottom: 5.3333333333vw;
  }
  .p-person-item:not(:first-of-type):not(:last-of-type)::before {
    width: 12.8vw;
    left: calc(-12vw + -4vw);
  }
  .p-person-item:not(:first-of-type):not(:last-of-type)::after {
    font-size: 5.8666666667vw;
    top: 1.3333333333vw;
    left: calc(-12vw + -4vw + 2.4vw);
  }
  .p-person-item:first-of-type, .p-person-item:last-of-type {
    font-size: 4vw;
    line-height: 1;
  }
  .p-person-item:first-of-type {
    margin-bottom: 5.3333333333vw;
  }
  .p-person-txt {
    font-size: 4vw;
    line-height: 1.8;
    width: 100%;
  }
}
/* p-flow
---------------------------------------------------------------------------- */
.p-flow {
  padding-bottom: 16rem;
}

.p-flow-wrapper > :first-child {
  margin-bottom: 11rem;
}

.p-flow-item-wrap:not(:first-of-type):not(:last-of-type) {
  border: 0.1rem solid #0081D9;
  border-radius: 1rem;
  background-color: #fff;
  padding-inline: 5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0 5rem;
  padding-block: 1.9rem;
  margin-bottom: 6rem;
  position: relative;
}
.p-flow-item-wrap:not(:first-of-type):not(:last-of-type)::before {
  content: "";
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  width: 10rem;
  height: 2.8867513459rem;
  background-color: #289FEF;
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, 100%);
}
.p-flow-item-wrap:not(:first-of-type):not(:last-of-type) .p-flow-item-desc {
  padding-left: 3.9rem;
  background-repeat: repeat-y;
  background-size: 0.2em 0.5em;
  background-image: radial-gradient(0.08em 0.08em at center center, #0081D9, #0081D9 100%, transparent, transparent);
}
.p-flow-item-wrap:first-of-type {
  margin-bottom: 9rem;
  position: relative;
}
.p-flow-item-wrap:first-of-type::before {
  content: "";
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  width: 10rem;
  height: 2.8867513459rem;
  background-color: #289FEF;
  position: absolute;
  bottom: -3rem;
  left: 50%;
  transform: translate(-50%, 100%);
}
.p-flow-item-wrap:first-of-type .p-flow-item-term {
  width: 100%;
  height: 6rem;
}
.p-flow-item-wrap:first-of-type .p-flow-item-desc {
  display: none;
}
.p-flow-item-wrap:last-of-type {
  border: 0.1rem solid #0081D9;
  border-radius: 1rem;
  background-color: #fff;
  padding-inline: 5rem;
  padding-block: 3rem 2.5rem;
}
.p-flow-item-wrap:last-of-type .p-flow-item-term {
  margin-inline: auto;
}
.p-flow-item-wrap:last-of-type .p-flow-item-desc {
  text-align: center;
  background-repeat: repeat-x;
  background-size: 0.8em 0.2em;
  background-image: radial-gradient(0.08em 0.08em at center center, currentColor, currentColor 100%, transparent, transparent);
  background-position: left top;
  padding-top: 2.1rem;
  margin-top: 1.7rem;
}

.p-flow-item-term {
  display: grid;
  place-content: center;
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.03em;
  font-weight: 900;
  color: #fff;
  font-family: "Zen Maru Gothic";
  width: 15rem;
  height: 3.6rem;
  background: linear-gradient(45deg, rgb(0, 44, 152) 0%, rgb(42, 166, 245) 100%);
  border-radius: 0.2rem;
}

.p-flow-item-desc {
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.03em;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .p-flow {
    padding-bottom: 22.4vw;
  }
  .p-flow-wrapper > :first-child {
    margin-bottom: 14.9333333333vw;
  }
  .p-flow-item-wrap:not(:first-of-type):not(:last-of-type) {
    border: 0.2666666667vw solid #0081D9;
    border-radius: 2.6666666667vw;
    padding-inline: 5.3333333333vw;
    grid-template-columns: 1fr;
    gap: 0;
    padding-block: 5.3333333333vw 5.3333333333vw;
    margin-bottom: 9.3333333333vw;
  }
  .p-flow-item-wrap:not(:first-of-type):not(:last-of-type)::before {
    width: 20.2666666667vw;
    height: calc(20.2666666667vw / 2 * 0.5773502692);
  }
  .p-flow-item-wrap:not(:first-of-type):not(:last-of-type) .p-flow-item-desc {
    padding-left: 0;
    background-repeat: repeat-x;
    background-size: 0.7em 0.2em;
    background-image: radial-gradient(0.08em 0.08em at center center, currentColor, currentColor 100%, transparent, transparent);
    background-position: left top;
    padding-top: 4.2666666667vw;
    margin-top: 3.2vw;
  }
  .p-flow-item-wrap:first-of-type {
    margin-bottom: 18.9333333333vw;
  }
  .p-flow-item-wrap:first-of-type::before {
    width: 20.2666666667vw;
    height: calc(20.2666666667vw / 2 * 0.5773502692);
    bottom: -7.2vw;
  }
  .p-flow-item-wrap:first-of-type .p-flow-item-term {
    width: 78.6666666667vw;
    height: 10.6666666667vw;
  }
  .p-flow-item-wrap:last-of-type {
    border: 0.2666666667vw solid #0081D9;
    border-radius: 2.6666666667vw;
    padding-inline: 5.3333333333vw;
    padding-block: 5.3333333333vw 4.2666666667vw;
  }
  .p-flow-item-wrap:last-of-type .p-flow-item-desc {
    text-align: left;
    background-size: 0.7em 0.2em;
    padding-top: 4.2666666667vw;
    margin-top: 3.2vw;
  }
  .p-flow-item-term {
    margin-inline: auto;
    font-size: 4.8vw;
    width: 40vw;
    height: 9.6vw;
    border-radius: 0.5333333333vw;
  }
  .p-flow-item-desc {
    font-size: 4vw;
    line-height: 1.8;
  }
}
/* p-guideline
---------------------------------------------------------------------------- */
.p-guideline {
  padding-bottom: 6rem;
}

.p-guideline-wrapper {
  display: flex;
  align-items: center;
  gap: 0 8rem;
}

.p-guideline-wrapper-img {
  width: 52rem;
  aspect-ratio: 520/348;
  border-radius: 3rem;
  overflow: hidden;
}

.p-guideline-wrapper-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.p-guideline-wrap {
  flex: 1;
  padding-top: 4rem;
}

.p-guideline-wrap-txt {
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.03em;
  font-weight: 400;
  margin-top: 3.5rem;
}

.p-guideline-wrap-button {
  width: fit-content;
  margin-left: auto;
  margin-top: 5.5rem;
}

@media screen and (max-width: 767px) {
  .p-guideline {
    padding-bottom: 6.6666666667vw;
  }
  .p-guideline-wrapper {
    flex-direction: column;
    gap: 7.2vw;
  }
  .p-guideline-wrapper-img {
    width: 100%;
    border-radius: 5.3333333333vw;
  }
  .p-guideline-wrap {
    padding-top: initial;
  }
  .p-guideline-wrap-txt {
    font-size: 4vw;
    line-height: 1.8;
    margin-top: 4.5333333333vw;
  }
  .p-guideline-wrap-button {
    margin-left: initial;
    margin-right: auto;
    margin-top: 7.4666666667vw;
  }
}
/* p-experience
---------------------------------------------------------------------------- */
.p-experience {
  padding-block: 6rem 23.4rem;
}

.p-experience-wrapper {
  display: grid;
  grid-template: "body ." 1rem "body img" auto "body ." 1fr/auto auto;
  gap: 0 8rem;
}

.p-experience-wrapper-img {
  grid-area: img;
  width: 52rem;
  aspect-ratio: 520/348;
  border-radius: 3rem;
  overflow: hidden;
}

.p-experience-wrapper-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.p-experience-wrap {
  grid-area: body;
  flex: 1;
}

.p-experience-wrap-txt {
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.03em;
  font-weight: 400;
  margin-top: 3.5rem;
}

.p-experience-wrap-link {
  margin-top: 5.4rem;
}
.p-experience-wrap-link > :first-child {
  margin-bottom: 2rem;
}

.p-experience-link {
  display: grid;
  place-items: center;
  width: 41rem;
  aspect-ratio: 410/103;
  background-color: #fff;
  border: 1px solid #07479F;
  position: relative;
}
.p-experience-link::before {
  content: "";
  width: 3.6rem;
  aspect-ratio: 36/37;
  background-image: url(../../../images/recruit/icn_target_blank_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0.9rem;
  right: 0.9rem;
}

.p-experience-link-img._mynavi {
  width: 23.7rem;
  aspect-ratio: 237/72;
}
.p-experience-link-img._oneCareer {
  width: 24.6rem;
  aspect-ratio: 246/65;
}
.p-experience-link-img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

@media screen and (max-width: 767px) {
  .p-experience {
    padding-block: 6.6666666667vw 20.5333333333vw;
  }
  .p-experience-wrapper {
    grid-template: "img" auto "body" auto/auto;
    gap: 7.2vw;
  }
  .p-experience-wrapper-img {
    width: 100%;
    border-radius: 8vw;
  }
  .p-experience-wrap-txt {
    font-size: 4vw;
    line-height: 1.8;
    margin-top: 3.7333333333vw;
  }
  .p-experience-wrap-link {
    margin-top: 6.9333333333vw;
  }
  .p-experience-wrap-link > :first-child {
    margin-bottom: 5.3333333333vw;
  }
  .p-experience-link {
    width: 100%;
  }
  .p-experience-link::before {
    width: 8vw;
    aspect-ratio: 30/30;
    bottom: 1.8666666667vw;
    right: 1.8666666667vw;
  }
  .p-experience-link-img._mynavi {
    width: 46.1333333333vw;
    aspect-ratio: 173/53;
  }
  .p-experience-link-img._oneCareer {
    width: 49.6vw;
    aspect-ratio: 186/49;
  }
}
/* p-faq
---------------------------------------------------------------------------- */
.p-faq {
  padding-bottom: 25.5rem;
}

.p-faq-wrapper > :first-child {
  margin-bottom: 8.5rem;
}

.p-faq-btn {
  margin-top: 12rem;
  width: max-content;
  margin-inline: auto;
}

@media screen and (max-width: 767px) {
  .p-faq {
    padding-bottom: 39.2vw;
  }
  .p-faq-wrapper > :first-child {
    margin-bottom: 15.7333333333vw;
  }
  .p-faq-btn {
    margin-top: 18.6666666667vw;
  }
}
/* アコーディオン
---------------------------------------------------------------------------- */
.p-accordion {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.p-accordion-item {
  border: 0.6rem solid #C6E9FE;
  border-radius: 0.6rem;
}

.p-accordion-title {
  cursor: pointer;
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 900;
  line-height: 1.5;
  font-family: "Zen Maru Gothic";
  color: #0081D9;
  width: 100%;
  display: flex;
  align-items: center;
  padding-block: 1.9rem;
  padding-inline: 8.5rem 18.5rem;
  background-color: #C6E9FE;
  position: relative;
}
.p-accordion-title::before, .p-accordion-title::after {
  position: absolute;
}
.p-accordion-title::before {
  content: "";
  width: 4.5rem;
  aspect-ratio: 45/48;
  background-image: url(./../../../images/recruit/careers/icn_q.png);
  background-repeat: no-repeat;
  background-size: contain;
  top: 1.6rem;
  left: 2.4rem;
}
.p-accordion-title::after {
  content: "Q";
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 900;
  font-family: "Zen Maru Gothic";
  color: currentColor;
  top: 2rem;
  left: 3.45rem;
}

.p-accordion-title.open .p-accordion-icon::after {
  transform: translateY(-50%) rotate(0deg);
}

.p-accordion-icon {
  display: inline-block;
  position: absolute;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 50%;
  background-color: #fff;
}

.p-accordion-icon::before,
.p-accordion-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50%;
  width: 2rem;
  height: 0.3rem;
  background-color: #0062B4;
  transition: transform 0.3s ease 0s;
}

.p-accordion-icon::before {
  transform: translateY(-50%);
}

.p-accordion-icon::after {
  transform: translateY(-50%) rotate(90deg);
}

.p-accordion-content {
  display: none;
  padding-block: 2.2rem 3.2rem;
  padding-inline: 8.5rem 9rem;
  position: relative;
  background-color: #fff;
}

.p-accordion-content-txt {
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.03em;
  font-weight: 400;
}
.p-accordion-content-txt::before, .p-accordion-content-txt::after {
  position: absolute;
  transition: all 0.3s ease-in-out;
}
.p-accordion-content-txt::before {
  content: "";
  width: 4.5rem;
  aspect-ratio: 45/48;
  background-image: url(./../../../images/recruit/careers/icn_q.png);
  background-repeat: no-repeat;
  background-size: contain;
  top: 2.5rem;
  left: 2.4rem;
  translate: 0 -2rem;
}
.p-accordion-content-txt::after {
  content: "A";
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 900;
  font-family: "Zen Maru Gothic";
  color: #0081D9;
  top: 2.9rem;
  left: 3.6rem;
  translate: 0 -2rem;
}
.open .p-accordion-content-txt::before, .open .p-accordion-content-txt::after {
  translate: 0 0;
}

@media screen and (max-width: 767px) {
  .p-accordion {
    gap: 2.6666666667vw;
  }
  .p-accordion-item {
    border: 1.6vw solid #C6E9FE;
    border-radius: 1.6vw;
  }
  .p-accordion-title {
    font-size: 4.8vw;
    line-height: 1.5;
    padding-block: 3.2vw;
    padding-inline: 17.3333333333vw 14.1333333333vw;
  }
  .p-accordion-title::before {
    width: 10.1333333333vw;
    top: 50%;
    left: calc(5.3333333333vw - 1.6vw);
    translate: 0 -50%;
  }
  .p-accordion-title::after {
    font-size: 6.6666666667vw;
    top: 50%;
    left: calc(3.7333333333vw + 2.5333333333vw);
    translate: 0 -66%;
  }
  .p-accordion-icon {
    right: 3.4666666667vw;
    width: 8vw;
    height: 8vw;
  }
  .p-accordion-icon::before,
  .p-accordion-icon::after {
    width: 3.7333333333vw;
    height: 0.5333333333vw;
  }
  .p-accordion-content {
    padding-block: 4.5333333333vw 5.3333333333vw;
    padding-inline: 17.3333333333vw 3.7333333333vw;
  }
  .p-accordion-content-txt {
    font-size: 4vw;
    line-height: 1.8;
  }
  .p-accordion-content-txt::before {
    width: 10.1333333333vw;
    top: 3.7333333333vw;
    left: calc(5.3333333333vw - 1.6vw);
    translate: 0 -2.6666666667vw;
  }
  .p-accordion-content-txt::after {
    font-size: 6.6666666667vw;
    top: 5.0666666667vw;
    left: calc(3.7333333333vw + 2.5333333333vw);
    translate: 0 -2.6666666667vw;
  }
}
