/**
 * Responsive Styles
 */
/**
 * Required Variables
 */
/**
  * Root Media Query Variables
  */
:root {
  --responsive--spacing-horizontal: calc(
    2 * var(--global--spacing-horizontal) * 0.6
  );
  --responsive--aligndefault-width: calc(
    100vw - var(--responsive--spacing-horizontal)
  );
  --responsive--alignwide-width: calc(
    100vw - var(--responsive--spacing-horizontal)
  );
  --responsive--alignfull-width: 100%;
  --responsive--alignright-margin: var(--global--spacing-horizontal);
  --responsive--alignleft-margin: var(--global--spacing-horizontal);
}

@media only screen and (min-width: 481px) {
  :root {
    --responsive--aligndefault-width: min(
      calc(100vw - 4 * var(--global--spacing-horizontal)),
      610px
    );
    --responsive--alignwide-width: calc(
      100vw - 4 * var(--global--spacing-horizontal)
    );
    --responsive--alignright-margin: calc(
      0.5 * (100vw - var(--responsive--aligndefault-width))
    );
    --responsive--alignleft-margin: calc(
      0.5 * (100vw - var(--responsive--aligndefault-width))
    );
  }
}
@media only screen and (min-width: 951px) {
  :root {
    --responsive--aligndefault-width: min(
      calc(100vw - 8 * var(--global--spacing-horizontal)),
      610px
    );
    --responsive--alignwide-width: min(
      calc(100vw - 8 * var(--global--spacing-horizontal)),
      1240px
    );
  }
}
/**
  * Extends
  */
.default-max-width {
  max-width: var(--responsive--aligndefault-width);
  margin-left: auto;
  margin-right: auto;
}

.wide-max-width {
  max-width: var(--responsive--alignwide-width);
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (min-width: 481px) {
  .full-max-width {
    max-width: var(--responsive--alignfull-width);
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
.c-button {
  width: 100%;
  height: auto;
}
.c-button__link {
  color: #fff;
  font-size: 2.2em;
  font-weight: 500;
  width: 100%;
  max-width: 35rem;
  height: auto;
  background-color: #0065af;
  display: block;
  text-align: center;
  padding: 2.5rem 0;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .c-button__link {
    font-size: 2rem;
    max-width: 31rem;
  }
}
@media only screen and (max-width: 590px) {
  .c-button__link {
    font-size: 1.8rem;
    max-width: 27rem;
  }
}
@media only screen and (max-width: 480px) {
  .c-button__link {
    font-size: 1.6rem;
    max-width: 23rem;
    padding: 2rem 0;
  }
}
.c-button__link::before {
  content: "";
  width: 2.5rem;
  height: 2.5rem;
  background-image: url(../images/icon-arrow.svg);
  border: 1px solid #0065af;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
}

.c-commonButton {
  display: flex;
  justify-content: center;
  padding: 8rem 0;
}
@media only screen and (max-width: 590px) {
  .c-commonButton {
    padding: 5rem 0;
  }
}

.c-submitButton {
  width: 100%;
  max-width: 35rem;
  height: auto;
}
.c-submitButton-arrow {
  width: 100%;
  max-width: 35rem;
  height: auto;
  position: relative;
}
.c-submitButton-arrow::before {
  content: "";
  width: 2.5rem;
  height: 2.5rem;
  background-image: url(../images/icon-arrow.svg);
  border: 1px solid #0065af;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  z-index: 1;
}

.c-contactButton {
  width: 100%;
  max-width: 70rem;
  height: auto;
}
.c-contactButton-arrow {
  width: 100%;
  max-width: 35rem;
  height: auto;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.c-contactButton-arrow::before {
  content: "";
  width: 2.5rem;
  height: 2.5rem;
  background-image: url(../images/icon-arrow.svg);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .c-contactButton-arrow::before {
    right: 3.5rem;
  }
}
@media only screen and (max-width: 590px) {
  .c-contactButton-arrow::before {
    right: 5.5rem;
  }
}
@media only screen and (max-width: 480px) {
  .c-contactButton-arrow::before {
    right: 7rem;
  }
}

.c-commonPageButton {
  display: flex;
  justify-content: center;
  padding-bottom: 8rem;
}
@media only screen and (max-width: 590px) {
  .c-commonPageButton {
    padding-bottom: 5rem;
  }
}

.c-cta {
  padding-left: 7rem;
  position: relative;
}
@media only screen and (max-width: 590px) {
  .c-cta {
    padding-left: 5.5rem;
  }
}
@media only screen and (max-width: 480px) {
  .c-cta {
    padding-left: 4rem;
  }
}
.c-cta::before {
  content: "";
  width: 4.5rem;
  height: 4.5rem;
  background-image: url(../images/icon-arrow-blue.svg);
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .c-cta::before {
    width: 4rem;
    height: 4rem;
  }
}
@media only screen and (max-width: 590px) {
  .c-cta::before {
    width: 3.5rem;
    height: 3.5rem;
  }
}
@media only screen and (max-width: 480px) {
  .c-cta::before {
    width: 3rem;
    height: 3rem;
  }
}
.c-cta::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 7rem;
  width: calc(100% - 7rem);
  height: 2px;
  background: #0481A2;
  transition: all 0.3s;
  transform: scale(0, 1);
  transform-origin: left top;
}
@media only screen and (max-width: 590px) {
  .c-cta::after {
    left: 5.5rem;
    width: calc(100% - 5.5rem);
  }
}
@media only screen and (max-width: 480px) {
  .c-cta::after {
    left: 4rem;
    width: calc(100% - 4rem);
  }
}
.c-cta:hover::after {
  transform: scale(1, 1);
}

.c-commonForm {
  width: 100%;
  height: auto;
  background-color: #999;
  margin: 0 auto;
  padding: 28rem 0 0;
}
@media only screen and (max-width: 768px) {
  .c-commonForm {
    padding: 20rem 0 0;
    background: linear-gradient(0deg, transparent 0%, transparent 50%, #999 50%, #999 100%);
  }
}
@media only screen and (max-width: 590px) {
  .c-commonForm {
    padding: 10rem 0 0;
  }
}
.c-commonForm__title {
  color: #fff;
  font-size: 3.2rem;
  font-weight: 500;
  width: 100%;
  max-width: 100rem;
  height: auto;
  margin: 0 auto 8rem;
  padding: 0 3rem;
  display: block;
}
@media only screen and (max-width: 768px) {
  .c-commonForm__title {
    display: none;
  }
}
.c-commonForm__title-sp {
  color: #000;
  font-size: 3.2rem;
  font-weight: 500;
  margin-bottom: 5rem;
  display: none;
}
@media only screen and (max-width: 768px) {
  .c-commonForm__title-sp {
    display: block;
  }
}
@media only screen and (max-width: 590px) {
  .c-commonForm__title-sp {
    font-size: 2.7rem;
  }
}
@media only screen and (max-width: 480px) {
  .c-commonForm__title-sp {
    font-size: 2.2rem;
  }
}
.c-commonForm__text {
  font-size: 1.8rem;
  justify-content: center;
  margin-bottom: 3.5rem;
}
@media only screen and (max-width: 768px) {
  .c-commonForm__text {
    font-size: 1.6rem;
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width: 590px) {
  .c-commonForm__text {
    font-size: 1.4rem;
    justify-content: start;
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 480px) {
  .c-commonForm__text {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
}
.c-commonForm__block {
  font-size: 1.4rem;
  width: 100%;
  max-width: 100rem;
  height: auto;
  background-color: #fff;
  margin: 0 auto;
  padding: 6rem 3rem;
}
@media only screen and (max-width: 590px) {
  .c-commonForm__block {
    font-size: 1.2rem;
    padding: 6rem 3rem 0;
  }
}
.c-commonForm__input {
  width: 100%;
  max-width: 91rem;
  height: auto;
  border-top: 0.05rem solid #000;
  border-bottom: 0.05rem solid #000;
  margin: 0 auto;
}
.c-commonForm__main {
  width: 100%;
  max-width: 65.5rem;
  height: auto;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 6rem 0;
}
@media only screen and (max-width: 768px) {
  .c-commonForm__main {
    padding: 4rem 0;
  }
}
@media only screen and (max-width: 590px) {
  .c-commonForm__main {
    padding: 3rem 0;
  }
}
.c-commonForm__main p {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .c-commonForm__main p {
    align-items: start;
    gap: 0;
  }
}
.c-commonForm__main p:nth-child(6) input[type=text] {
  max-width: 20rem;
}
@media only screen and (max-width: 480px) {
  .c-commonForm__main p:nth-child(6) input[type=text] {
    max-width: 15rem;
  }
}
.c-commonForm__main label {
  flex: 1;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .c-commonForm__main label {
    text-align: left;
  }
}
.c-commonForm__message {
  width: 100%;
  max-width: 72rem;
  height: auto;
  margin: 0 auto;
}
.c-commonForm__textarea {
  margin-top: 5.5rem;
}
@media only screen and (max-width: 590px) {
  .c-commonForm__textarea {
    margin-top: 4rem;
  }
}
@media only screen and (max-width: 480px) {
  .c-commonForm__textarea {
    margin-top: 3rem;
  }
}
.c-commonForm__textarea-text {
  font-size: 1.1rem;
  display: block;
  margin-top: 2rem;
}
@media only screen and (max-width: 768px) {
  .c-commonForm__textarea-text {
    margin-top: 1rem;
  }
  .c-commonForm__textarea-text br {
    display: none;
  }
}
.c-commonForm__term {
  text-align: center;
}
@media only screen and (max-width: 590px) {
  .c-commonForm__term {
    text-align: left;
  }
}
.c-commonForm__term .wpcf7-form-control-wrap {
  margin: 4rem auto 0;
}
@media only screen and (max-width: 590px) {
  .c-commonForm__term .wpcf7-form-control-wrap {
    margin: 2rem auto 0;
  }
}
@media only screen and (max-width: 480px) {
  .c-commonForm__term .wpcf7-form-control-wrap {
    margin: 1.5rem auto 0;
  }
}
.c-commonForm__link {
  color: #00f;
}
.c-commonForm__confirm {
  padding: 2rem 0;
}
@media only screen and (max-width: 768px) {
  .c-commonForm__confirm {
    padding: 1.5rem 0 2rem;
  }
}
@media only screen and (max-width: 590px) {
  .c-commonForm__confirm {
    padding: 1rem 0 2rem;
  }
}

.wpcf7-form p {
  width: 100%;
  height: auto;
  display: flex;
  gap: 1rem;
}
@media only screen and (max-width: 768px) {
  .wpcf7-form p {
    flex-direction: column;
    gap: 0;
  }
}
.wpcf7-form p input[type=text], .wpcf7-form p input[type=email], .wpcf7-form p input[type=tel], .wpcf7-form p textarea {
  width: 100%;
  max-width: 53rem;
  height: auto;
  border: 0.1rem solid #ccc;
  padding: 2rem 1rem;
  letter-spacing: 0.03em;
}
@media only screen and (max-width: 768px) {
  .wpcf7-form p input[type=text], .wpcf7-form p input[type=email], .wpcf7-form p input[type=tel], .wpcf7-form p textarea {
    max-width: 100%;
    padding: 1.5rem 1rem;
  }
}
.wpcf7-form p input[type=checkbox] {
  width: 2rem;
  height: 2rem;
  background-color: #fff;
  border: 1px solid #5c5c5c;
  border-radius: 0.3rem;
  margin-right: 0.5rem;
  position: relative;
  top: -0.1rem;
  cursor: pointer;
}
.wpcf7-form p input[type=checkbox]:checked {
  position: relative;
}
.wpcf7-form p input[type=checkbox]:checked::before {
  content: "";
  width: 1rem;
  height: 0.8rem;
  border-left: 2px solid #0065af;
  border-bottom: 2px solid #0065af;
  position: absolute;
  top: 0.4rem;
  left: 0.4rem;
  transform: rotate(-45deg);
}
.wpcf7-form p input[type=submit], .wpcf7-form p input[type=button] {
  color: #fff;
  font-size: 2.2em;
  font-weight: 500;
  width: 100%;
  max-width: 350px;
  height: auto;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem 0;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .wpcf7-form p input[type=submit], .wpcf7-form p input[type=button] {
    font-size: 2rem;
    max-width: 31rem;
  }
}
@media only screen and (max-width: 590px) {
  .wpcf7-form p input[type=submit], .wpcf7-form p input[type=button] {
    font-size: 1.8rem;
    max-width: 27rem;
  }
}
@media only screen and (max-width: 480px) {
  .wpcf7-form p input[type=submit], .wpcf7-form p input[type=button] {
    font-size: 1.6rem;
    max-width: 23rem;
    padding: 2rem 0;
  }
}
.wpcf7-form p input[type=submit] {
  background-color: #0065af;
}
.wpcf7-form p input[type=button] {
  background-color: #b3b3b3;
}
.wpcf7-form p input[type=hidden] {
  display: none;
}
.wpcf7-form label {
  font-weight: 500;
  width: 100%;
  max-width: 13.5rem;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .wpcf7-form label {
    max-width: 100%;
    margin-bottom: 0.5rem;
  }
}
.wpcf7-form-control-wrap {
  width: 100%;
  max-width: 53rem;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .wpcf7-form-control-wrap {
    max-width: 100%;
  }
}
@media only screen and (max-width: 590px) {
  .wpcf7-list-item {
    margin: 0 !important;
  }
}
.wpcf7-spinner {
  display: none !important;
}

.required {
  color: #f00;
}

.c-commonHero {
  width: 100%;
  height: auto;
}
.c-commonHero__inner {
  width: 100%;
  height: 40rem;
  position: relative;
  background-size: cover;
}
.c-commonHero__inner.business {
  background-image: url("../images/business-bg.jpg");
}
@media only screen and (max-width: 768px) {
  .c-commonHero__inner.business {
    background-image: url("../images/business-bg-sp.jpg");
  }
}
.c-commonHero__inner.recruit {
  background-image: url("../images/recruit-bg.jpg");
}
@media only screen and (max-width: 768px) {
  .c-commonHero__inner.recruit {
    background-image: url("../images/recruit-bg-sp.jpg");
  }
}
.c-commonHero__inner.company {
  background-image: url("../images/company-bg.jpg");
}
@media only screen and (max-width: 768px) {
  .c-commonHero__inner.company {
    background-image: url("../images/company-bg-sp.jpg");
  }
}
@media only screen and (max-width: 590px) {
  .c-commonHero__inner {
    height: 31rem;
  }
}
@media only screen and (max-width: 480px) {
  .c-commonHero__inner {
    height: 22rem;
  }
}
.c-commonHero__title {
  color: #fff;
  font-size: 3.2rem;
  font-weight: 500;
  position: absolute;
  bottom: 20%;
  left: 14%;
}
@media only screen and (max-width: 590px) {
  .c-commonHero__title {
    font-size: 2.8rem;
    bottom: 15%;
    left: 12%;
  }
}
@media only screen and (max-width: 480px) {
  .c-commonHero__title {
    font-size: 2.2rem;
  }
}
.c-commonHero__subTitle {
  color: transparent;
  font-size: 10rem;
  font-weight: 500;
  -webkit-text-stroke: 0.2rem white;
  position: absolute;
  bottom: 10%;
  left: 10%;
  line-height: 1.2;
  opacity: 0.4;
}
@media only screen and (max-width: 590px) {
  .c-commonHero__subTitle {
    font-size: 8rem;
  }
}
@media only screen and (max-width: 480px) {
  .c-commonHero__subTitle {
    font-size: 6.5rem;
    bottom: 5%;
    left: 5%;
  }
}

.c-commonPage {
  width: 100%;
  height: auto;
  background-color: #999;
}
@media only screen and (max-width: 768px) {
  .c-commonPage {
    background: linear-gradient(0deg, transparent 0%, transparent 50%, #999 50%, #999 100%);
  }
}
.c-commonPage__inner {
  width: 100%;
  max-width: 100rem;
  height: auto;
  margin: 0 auto;
  padding: 28rem 0 8rem;
}
@media only screen and (max-width: 768px) {
  .c-commonPage__inner {
    padding: 20rem 0 0;
  }
}
@media only screen and (max-width: 590px) {
  .c-commonPage__inner {
    padding: 10rem 0 0;
  }
}
.c-commonPage__title {
  color: #fff;
  font-size: 3.2rem;
  font-weight: 500;
  margin-bottom: 8rem;
  padding: 0 3rem;
  display: block;
}
@media only screen and (max-width: 768px) {
  .c-commonPage__title {
    display: none;
  }
}
.c-commonPage__title-sp {
  color: #000;
  font-size: 3.2rem;
  font-weight: 500;
  margin-bottom: 5rem;
  display: none;
}
@media only screen and (max-width: 768px) {
  .c-commonPage__title-sp {
    display: block;
    text-align: left;
  }
}
@media only screen and (max-width: 590px) {
  .c-commonPage__title-sp {
    font-size: 2.7rem;
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width: 480px) {
  .c-commonPage__title-sp {
    font-size: 2.2rem;
  }
}
.c-commonPage__block {
  width: 100%;
  height: auto;
  background-color: #fff;
  padding: 0 3rem;
}

.c-complete {
  width: 100%;
  height: auto;
  padding: 15rem 0;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .c-complete {
    padding: 10rem 0 8rem;
  }
}
@media only screen and (max-width: 590px) {
  .c-complete {
    padding: 8rem 0 5rem;
  }
}
@media only screen and (max-width: 480px) {
  .c-complete {
    padding: 6rem 0 5rem;
  }
}
.c-complete__title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 3.5rem;
}
@media only screen and (max-width: 768px) {
  .c-complete__title {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
  }
}
@media only screen and (max-width: 590px) {
  .c-complete__title {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 480px) {
  .c-complete__title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .c-complete__area {
    position: relative;
    padding: 3rem 0;
  }
  .c-complete__area::before {
    content: "";
    position: absolute;
    top: 0;
    left: -3rem;
    width: 120%;
    height: 100%;
    background-color: #e6e6e6;
  }
  .c-complete__inner {
    background-color: #fff;
    border-radius: 1.5rem;
    padding: 6.5rem 0;
    position: relative;
    z-index: 1;
  }
}
.c-complete__text {
  font-size: 1.6rem;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .c-complete__text {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    gap: 0;
    line-height: 2;
  }
}
@media only screen and (max-width: 590px) {
  .c-complete__text {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 480px) {
  .c-complete__text {
    font-size: 1.1rem;
  }
}
.c-complete__text span {
  display: block;
}
.c-complete__text span br {
  display: none;
}
@media only screen and (max-width: 768px) {
  .c-complete__text span br {
    display: block;
  }
}
.c-complete__name {
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .c-complete__name {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 590px) {
  .c-complete__name {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 480px) {
  .c-complete__name {
    font-size: 1.1rem;
  }
}

.c-section-subTitle {
  font-size: 1.6rem;
  font-weight: 500;
}
@media only screen and (max-width: 590px) {
  .c-section-subTitle {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 480px) {
  .c-section-subTitle {
    font-size: 1.2rem;
  }
}
.c-section-title {
  font-size: 5.2rem;
  font-weight: 700;
}
@media only screen and (max-width: 590px) {
  .c-section-title {
    font-size: 4.4rem;
  }
}
@media only screen and (max-width: 480px) {
  .c-section-title {
    font-size: 3.6rem;
  }
}

.l-header {
  width: 100%;
  height: auto;
  position: absolute;
  padding: 6rem 5rem;
  z-index: 9;
}
@media only screen and (max-width: 768px) {
  .l-header {
    padding: 4rem 3rem;
  }
}
@media only screen and (max-width: 590px) {
  .l-header {
    padding: 2.4rem;
  }
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #fff;
  padding-bottom: 3rem;
}
@media only screen and (max-width: 768px) {
  .l-header__inner {
    border-bottom: none;
    padding-bottom: 0;
  }
}
.l-header__logo {
  width: 17rem;
  height: auto;
  z-index: 9;
}
@media only screen and (max-width: 768px) {
  .l-header__logo {
    width: 15rem;
  }
}
@media only screen and (max-width: 590px) {
  .l-header__logo {
    width: 13.5rem;
  }
}
.l-header__nav {
  width: 5rem;
  height: 5rem;
  position: relative;
  cursor: pointer;
  z-index: 9;
}
@media only screen and (max-width: 768px) {
  .l-header__nav {
    width: 4rem;
    height: 4rem;
  }
}
@media only screen and (max-width: 590px) {
  .l-header__nav {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.l-header__nav span {
  width: 100%;
  height: 3px;
  background-color: #fff;
  display: block;
  transition: all 0.2s ease-in-out;
}
.l-header__nav span:nth-child(1) {
  position: absolute;
  top: 0;
}
.l-header__nav span:nth-child(2) {
  position: absolute;
  top: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .l-header__nav span:nth-child(2) {
    top: 1.1rem;
  }
}
@media only screen and (max-width: 590px) {
  .l-header__nav span:nth-child(2) {
    top: 1rem;
  }
}
.l-header__nav-text {
  color: #fff;
  font-size: 1.6rem;
  position: absolute;
  bottom: 0;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 768px) {
  .l-header__nav-text {
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 590px) {
  .l-header__nav-text {
    font-size: 1.1rem;
  }
}
.l-header__nav.is-open span:nth-child(1) {
  top: 0.9rem;
  transform: translateY(1.5rem) rotate(45deg);
}
@media only screen and (max-width: 768px) {
  .l-header__nav.is-open span:nth-child(1) {
    top: 0.5rem;
  }
}
@media only screen and (max-width: 590px) {
  .l-header__nav.is-open span:nth-child(1) {
    top: 0.2rem;
  }
}
.l-header__nav.is-open span:nth-child(2) {
  top: 2.4rem;
  transform: rotate(-45deg);
}
@media only screen and (max-width: 768px) {
  .l-header__nav.is-open span:nth-child(2) {
    top: 2rem;
  }
}
@media only screen and (max-width: 590px) {
  .l-header__nav.is-open span:nth-child(2) {
    top: 1.7rem;
  }
}
.l-header__nav.is-open .l-header__nav-text {
  display: none;
}
.l-header__drawer {
  width: 100%;
  height: 100vh;
  background-image: url("../images/menu-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: fixed;
  top: 0;
  right: -100%;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  z-index: 8;
}
.l-header__drawer.is-open {
  right: 0;
  opacity: 1;
}
.l-header__drawer-nav {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 3rem;
}
.l-header__drawer-list {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: 0 auto;
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(5, auto);
  gap: 0 8rem;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
@media only screen and (max-width: 950px) {
  .l-header__drawer-list {
    font-size: 1.5rem;
    gap: 0 3rem;
  }
}
@media only screen and (max-width: 768px) {
  .l-header__drawer-list {
    grid-template-rows: repeat(10, auto);
    gap: 0;
    border-top: 0;
    border-bottom: 0;
  }
}
@media only screen and (max-width: 590px) {
  .l-header__drawer-list {
    font-size: 1.3rem;
    margin-top: 8rem;
  }
}
.l-header__drawer-item {
  position: relative;
  border-bottom: 1px solid #fff;
}
.l-header__drawer-item:nth-child(5) {
  border-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .l-header__drawer-item:nth-child(5) {
    border-bottom: 1px solid #fff;
  }
}
.l-header__drawer-item:last-child {
  border-bottom: 0;
}
.l-header__drawer-link {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  transition: all 0.3s ease-in-out;
  padding: 3.5rem 1.5rem;
}
@media only screen and (max-width: 950px) {
  .l-header__drawer-link {
    padding: 2.5rem 0;
  }
}
@media only screen and (max-width: 590px) {
  .l-header__drawer-link {
    padding: 2rem 0;
  }
}
.l-header__drawer-link span {
  color: #29ABE2;
  margin-left: 1.5rem;
}
.l-header__drawer-link::before {
  content: "";
  width: 3.5rem;
  height: 3.5rem;
  background-image: url("../images/icon-arrow.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .l-header__drawer-link::before {
    width: 2.5rem;
    height: 2.5rem;
  }
}
@media only screen and (max-width: 590px) {
  .l-header__drawer-link::before {
    width: 1.5rem;
    height: 1.5rem;
    right: 0;
  }
}
.l-header__drawer-link:hover {
  color: #29ABE2;
}

.l-footer {
  width: 100%;
  height: auto;
  background-image: url(../images/menu-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.l-footer__inner {
  width: 100%;
  max-width: 95%;
  height: auto;
  margin: 0 auto;
  padding: 3.5rem 0;
}
@media only screen and (max-width: 768px) {
  .l-footer__inner {
    max-width: 100%;
    padding: 4.5rem 3rem;
  }
}
.l-footer__block {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #fff;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 768px) {
  .l-footer__block {
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width: 590px) {
  .l-footer__block {
    margin-bottom: 2rem;
  }
}
.l-footer__wrap {
  width: 100%;
  max-width: 100rem;
  height: auto;
  margin: 0 auto 3.5rem;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .l-footer__wrap {
    flex-direction: column-reverse;
    gap: 3.5rem;
  }
}
@media only screen and (max-width: 590px) {
  .l-footer__wrap {
    margin-bottom: 1.5rem;
  }
}
.l-footer__main {
  display: flex;
  align-items: center;
  gap: 5rem;
}
@media only screen and (max-width: 950px) {
  .l-footer__main {
    gap: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .l-footer__main {
    flex-direction: column;
    align-items: start;
    gap: 1.5rem;
  }
}
.l-footer__main-logo {
  width: 100%;
  max-width: 200px;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .l-footer__main-logo {
    max-width: 175px;
  }
}
@media only screen and (max-width: 590px) {
  .l-footer__main-logo {
    max-width: 150px;
  }
}
.l-footer__main-information {
  color: #fff;
}
.l-footer__main-name {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.l-footer__main-address {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.l-footer__main-map {
  font-size: 1.2rem;
  text-decoration: underline;
}
.l-footer__main-list {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, auto);
  gap: 2.5rem 4rem;
}
@media only screen and (max-width: 950px) {
  .l-footer__main-list {
    gap: 2.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .l-footer__main-list {
    grid-template-rows: repeat(6, auto);
    gap: 0;
  }
}
@media only screen and (max-width: 590px) {
  .l-footer__main-list {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 768px) {
  .l-footer__main-item {
    font-size: 1.4rem;
    border-bottom: 1px solid #fff;
  }
}
.l-footer__main-link {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .l-footer__main-link {
    display: block;
    padding: 1.5rem 0;
  }
  .l-footer__main-link::before {
    content: "";
    width: 2.5rem;
    height: 2.5rem;
    background-image: url(../images/icon-arrow-white.svg);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 0rem;
    transform: translateY(-50%);
  }
}
.l-footer__main-link::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
  transform: scale(0, 1);
  transform-origin: left top;
}
@media only screen and (max-width: 768px) {
  .l-footer__main-link::after {
    display: none;
  }
}
.l-footer__main-link:hover::after {
  transform: scale(1, 1);
}
.l-footer__content {
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-footer__content-privacy {
  font-size: 1.2rem;
}
.l-footer__content-copyright {
  font-size: 1rem;
}
.l-footer__terms {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.l-footer__sns {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.l-footer__sns-instagram {
  width: 4rem;
  height: 4rem;
}
.l-footer__sns-sp-instagram {
  display: none;
}
@media only screen and (max-width: 768px) {
  .l-footer__sns {
    display: none;
  }
}
.l-footer__sns-sp {
  display: none;
}
@media only screen and (max-width: 768px) {

  .l-footer__main-information {
    display: flex;
    align-items: flex-end;
    gap: 5rem;
    justify-content: space-between;
    width: 100%;
  }
  .l-footer__sns-sp {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
  }
  .l-footer__sns-sp-instagram {
    width: 3.6rem;
    height: 3.6rem;
    display: block;
  }
}
.l-footer__contact {
  color: #000;
  font-size: 1.6rem;
  font-weight: 500;
  background-color: #fff;
  border-radius: 1rem;
  display: block;
  padding: 1rem 3rem;
}
@media only screen and (max-width: 768px) {
  .l-footer__contact-sp {
    color: #000;
    font-size: 1.6rem;
    font-weight: 500;
    background-color: #fff;
    border-radius: 1rem;
    display: block;
    padding: 1rem 3rem;
  }
}
.l-footer__contact:hover {
  color: #fff;
  background-color: #ccc;
}
.l-footer__topArrow {
  width: 4.5rem;
  height: 4.5rem;
  position: absolute;
  top: 3.5rem;
  right: 3.5rem;
}
@media screen and (max-width: 1200px) {
  .l-footer__topArrow {
    top: -5.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .l-footer__topArrow {
    width: 3.5rem;
    height: 3.5rem;
    top: inherit;
    bottom: 4.5rem;
    right: 3.5rem;
  }
}
.l-footer__topArrow-link {
  position: relative;
  z-index: 1;
}

.p-business {
  width: 100%;
  height: auto;
  background-color: #f1f1f1;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #fff calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #fff calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
}
.p-business__inner {
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: 0 auto;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  position: relative;
  padding: 13.5rem 0;
}
@media only screen and (max-width: 950px) {
  .p-business__inner {
    flex-direction: column-reverse;
    gap: 5rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-business__inner {
    padding: 10rem 0;
  }
}
@media only screen and (max-width: 590px) {
  .p-business__inner {
    padding: 5rem 0 9rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-business__inner {
    padding: 3rem 0 7rem;
  }
}
.p-business__image {
  display: flex;
  gap: 2rem;
}
@media only screen and (max-width: 950px) {
  .p-business__image {
    justify-content: center;
  }
}
.p-business__image img {
  width: 100%;
  max-width: 22rem;
  height: auto;
  position: relative;
}
@media only screen and (max-width: 950px) {
  .p-business__image img {
    max-width: 30rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-business__image img {
    max-width: 25rem;
  }
}
@media only screen and (max-width: 590px) {
  .p-business__image img {
    max-width: 20rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-business__image img {
    max-width: 15rem;
  }
}
.p-business__image img:nth-child(1) {
  top: 3rem;
}
.p-business__image img:nth-child(2) {
  bottom: 5rem;
}
@media only screen and (max-width: 950px) {
  .p-business__main {
    padding: 3rem;
  }
}
.p-business__main-subTitle {
  margin-bottom: 3rem;
}
@media only screen and (max-width: 480px) {
  .p-business__main-subTitle {
    margin-bottom: 2rem;
  }
}
.p-business__main-title {
  color: #0065af;
  margin-bottom: 7rem;
}
@media only screen and (max-width: 590px) {
  .p-business__main-title {
    margin-bottom: 5rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-business__main-title {
    margin-bottom: 3.5rem;
  }
}
.p-business__main-text {
  font-size: 1.4rem;
  width: 100%;
  max-width: 50rem;
  height: auto;
  margin-bottom: 7rem;
  line-height: 2.4;
}
@media only screen and (max-width: 590px) {
  .p-business__main-text {
    gap: 2.5rem;
    margin-bottom: 5.5rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-business__main-text {
    gap: 2rem;
    margin-bottom: 4rem;
  }
}
.p-business__main-cta {
  font-size: 1.6rem;
}

.p-concept {
  width: 100%;
  height: auto;
}
.p-concept__inner {
  width: 100%;
  height: auto;
  position: relative;
}
.p-concept__image {
  display: block;
}
@media only screen and (max-width: 768px) {
  .p-concept__image {
    display: none;
  }
}
.p-concept__image-sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .p-concept__image-sp {
    display: block;
  }
}
.p-concept__main {
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
}
.p-concept__main-title {
  color: transparent;
  font-size: 9rem;
  font-weight: 500;
  -webkit-text-stroke: 0.2rem white;
  margin-bottom: 4.5rem;
  opacity: 0.4;
}
@media only screen and (max-width: 950px) {
  .p-concept__main-title {
    font-size: 8rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-concept__main-title {
    font-size: 17.5vw;
  }
}
.p-concept__main-text {
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media only screen and (max-width: 768px) {
  .p-concept__main-text p {
    line-height: 1.2;
  }
  .p-concept__main-text p span {
    display: block;
  }
}
@media only screen and (max-width: 590px) {
  .p-concept__main-text {
    font-size: 1.4rem;
    gap: 1.5rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-concept__main-text {
    font-size: 1.2rem;
  }
}

.p-hero {
  width: 100%;
  height: auto;
}
.p-hero__inner {
  width: 100%;
  height: auto;
}
.p-hero__slick {
  width: 100%;
  height: 100vh;
}
.p-hero__slick-item {
  display: block;
}
@media only screen and (max-width: 768px) {
  .p-hero__slick-item {
    display: none;
  }
}
.p-hero__slick-item-sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .p-hero__slick-item-sp {
    display: block;
  }
}
.p-hero__main {
  width: auto;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 768px) {
  .p-hero__main {
    top: 50%;
  }
}
.p-hero__main-title {
  width: 100%;
  color: #fff;
  font-size: 3.4rem;
  font-weight: 500;
  writing-mode: vertical-rl;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .p-hero__main-title {
    font-size: 3.2rem;
  }
}
.p-hero__sub {
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-hero__sub-title {
  color: transparent;
  font-size: 10rem;
  font-weight: 500;
  -webkit-text-stroke: 0.2rem white;
  line-height: 1.2;
  text-align: center;
  opacity: 0.4;
}
@media only screen and (max-width: 950px) {
  .p-hero__sub-title {
    font-size: 8rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-hero__sub-title {
    font-size: 17.5vw;
    -webkit-text-stroke: 0.15rem white;
    line-height: 1;
    text-align: left;
  }
}
@media only screen and (max-width: 590px) {
  .p-hero__sub-title {
    line-height: 1.5;
  }
}
@media screen and (min-width: 1441px) {
  .p-hero__sub-title {
    font-size: 13rem;
  }
}
.p-hero__sub-title span {
  display: block;
}
@media only screen and (max-width: 768px) {
  .p-hero__sub {
    top: 60%;
  }
}
.p-hero__scroll {
  position: absolute;
  bottom: 10rem;
  right: 5rem;
  writing-mode: vertical-rl;
}
.p-hero__scroll-text {
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
}
@media only screen and (max-width: 590px) {
  .p-hero__scroll-text {
    font-size: 1rem;
  }
}
.p-hero__scroll::before {
  content: "";
  width: 1px;
  height: 7rem;
  background: #fff;
  display: block;
  position: absolute;
  top: 6rem;
  left: 0.6rem;
}
@media only screen and (max-width: 590px) {
  .p-hero__scroll::before {
    top: 5rem;
    left: 0.4rem;
  }
}
@media only screen and (max-width: 590px) {
  .p-hero__scroll {
    right: 2rem;
  }
}

.p-topMessage {
  width: 100%;
  height: auto;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
}
.p-topMessage__inner {
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 13.5rem 0;
}
@media only screen and (max-width: 950px) {
  .p-topMessage__inner {
    flex-direction: column-reverse;
    gap: 5rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-topMessage__inner {
    padding: 10rem 0;
  }
}
@media only screen and (max-width: 590px) {
  .p-topMessage__inner {
    padding: 5rem 0 9rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-topMessage__inner {
    padding: 3rem 0 7rem;
  }
}
.p-topMessage__image {
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem;
}
@media only screen and (max-width: 950px) {
  .p-topMessage__image {
    justify-content: center;
  }
}
.p-topMessage__image img {
  width: 100%;
  max-width: 22rem;
  height: auto;
  position: relative;
}
@media only screen and (max-width: 950px) {
  .p-topMessage__image img {
    max-width: 30rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-topMessage__image img {
    max-width: 25rem;
  }
}
@media only screen and (max-width: 590px) {
  .p-topMessage__image img {
    max-width: 20rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-topMessage__image img {
    max-width: 15rem;
  }
}
.p-topMessage__image img:nth-child(1) {
  bottom: 5rem;
}
.p-topMessage__image img:nth-child(2) {
  top: 3rem;
}
@media only screen and (max-width: 950px) {
  .p-topMessage__main {
    padding: 3rem;
  }
}
.p-topMessage__main-subTitle {
  margin-bottom: 3rem;
}
@media only screen and (max-width: 480px) {
  .p-topMessage__main-subTitle {
    margin-bottom: 2rem;
  }
}
.p-topMessage__main-title {
  color: #0065af;
  margin-bottom: 7rem;
}
@media only screen and (max-width: 590px) {
  .p-topMessage__main-title {
    margin-bottom: 5rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-topMessage__main-title {
    margin-bottom: 3.5rem;
  }
}
.p-topMessage__main-text {
  font-size: 2rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 7rem;
}
@media only screen and (max-width: 590px) {
  .p-topMessage__main-text {
    font-size: 1.6rem;
    gap: 2.5rem;
    margin-bottom: 5.5rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-topMessage__main-text {
    font-size: 1.4rem;
    gap: 2rem;
    margin-bottom: 4rem;
  }
}
.p-topMessage__main-cta {
  font-size: 1.6rem;
}

.p-topCompany {
  width: 100%;
  height: auto;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
  padding: 0 3rem;
}
.p-topCompany__inner {
  width: 100%;
  max-width: 100rem;
  height: auto;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 13.5rem 0;
  gap: 3rem;
}
@media only screen and (max-width: 950px) {
  .p-topCompany__inner {
    flex-direction: column-reverse;
    gap: 5rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-topCompany__inner {
    padding: 10rem 0;
  }
}
@media only screen and (max-width: 590px) {
  .p-topCompany__inner {
    padding: 5rem 0 9rem;
    gap: 3rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-topCompany__inner {
    padding: 3rem 0 7rem;
    gap: 1.5rem;
  }
}
.p-topCompany__image {
  display: flex;
  gap: 2rem;
}
@media only screen and (max-width: 950px) {
  .p-topCompany__image {
    justify-content: center;
  }
}
.p-topCompany__image img {
  width: 100%;
  max-width: 45rem;
  height: auto;
  position: relative;
}
@media only screen and (max-width: 950px) {
  .p-topCompany__image img {
    max-width: 100%;
  }
}
@media only screen and (max-width: 950px) {
  .p-topCompany__main {
    padding: 3rem 0;
  }
}
.p-topCompany__main-subTitle {
  margin-bottom: 3rem;
}
@media only screen and (max-width: 480px) {
  .p-topCompany__main-subTitle {
    margin-bottom: 2rem;
  }
}
.p-topCompany__main-title {
  color: #0065af;
  margin-bottom: 7rem;
}
@media only screen and (max-width: 590px) {
  .p-topCompany__main-title {
    margin-bottom: 5rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-topCompany__main-title {
    margin-bottom: 3.5rem;
  }
}
.p-topCompany__main-text {
  width: 100%;
  max-width: 50rem;
  height: auto;
  font-size: 1.4rem;
  margin-bottom: 7rem;
  line-height: 2.4;
}
@media only screen and (max-width: 590px) {
  .p-topCompany__main-text {
    gap: 2.5rem;
    margin-bottom: 5.5rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-topCompany__main-text {
    gap: 2rem;
    margin-bottom: 4rem;
  }
}
.p-topCompany__main-cta {
  font-size: 1.6rem;
}

.p-topRecruit {
  width: 100%;
  height: auto;
}
.p-topRecruit__inner {
  width: 100%;
  height: auto;
  background-image: url(../images/topRecruit-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 9rem 3rem 20rem;
}
@media only screen and (max-width: 768px) {
  .p-topRecruit__inner {
    background-image: url(../images/topRecruit-bg-sp.jpg);
    padding: 9rem 3rem;
  }
}
@media only screen and (max-width: 590px) {
  .p-topRecruit__inner {
    padding: 7.5rem 3rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-topRecruit__inner {
    padding: 6rem 3rem;
  }
}
.p-topRecruit__main {
  width: 100%;
  max-width: 100rem;
  height: auto;
  margin: 0 auto;
}
.p-topRecruit__main-subTitle {
  color: #fff;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 480px) {
  .p-topRecruit__main-subTitle {
    margin-bottom: 2rem;
  }
}
.p-topRecruit__main-title {
  color: #fff;
  margin-bottom: 2.5rem;
}
.p-topRecruit__main-text {
  color: #fff;
  width: 100%;
  max-width: 50rem;
  height: auto;
  font-size: 1.4rem;
  line-height: 2.4;
}
.p-topRecruit__main-cta {
  font-size: 1.6rem;
}
.p-topRecruit__content {
  width: 100%;
  height: auto;
}
.p-topRecruit__content__inner {
  width: 100%;
  height: auto;
  background: linear-gradient(90deg, transparent 0%, transparent 10%, #e6e6e6 10%, #e6e6e6 100%);
  margin-left: auto;
  margin-bottom: -18rem;
  padding: 5rem;
  position: relative;
  top: -18rem;
}
@media screen and (max-width: 1300px) {
  .p-topRecruit__content__inner {
    background: linear-gradient(90deg, transparent 0%, transparent 4%, #e6e6e6 4%, #e6e6e6 100%);
  }
}
@media only screen and (max-width: 768px) {
  .p-topRecruit__content__inner {
    background: rgba(0, 70, 119, 0.35);
    margin-bottom: 0;
    padding: 3rem;
    top: 0;
  }
}
.p-topRecruit__list {
  width: 100%;
  max-width: 100rem;
  height: auto;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
}
@media only screen and (max-width: 768px) {
  .p-topRecruit__list {
    flex-direction: column;
  }
}
.p-topRecruit__item-image {
  margin-bottom: 1.5rem;
}
.p-topRecruit__item-text {
  font-size: 1.4rem;
  padding-left: 3.5rem;
  position: relative;
}
.p-topRecruit__item-text::before {
  content: "";
  width: 2rem;
  height: 2rem;
  background-image: url(../images/icon-arrow.svg);
  border: 1px solid #0065af;
  border-radius: 50%;
  position: absolute;
  top: -0.1rem;
  left: 0;
}
.p-topRecruit__cta {
  color: #0065af;
  width: 100%;
  height: auto;
  margin: 8rem 0;
  text-align: center;
}
@media only screen and (max-width: 480px) {
  .p-topRecruit__cta {
    margin: 4.5rem 0 5rem;
  }
}
.p-topRecruit__cta-text {
  font-size: 2.2rem;
  margin-bottom: 3.5rem;
}
@media only screen and (max-width: 950px) {
  .p-topRecruit__cta-text {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-topRecruit__cta-text {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 590px) {
  .p-topRecruit__cta-text {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-topRecruit__cta-text {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
}
.p-topRecruit__cta-button {
  font-size: 5.2rem;
  font-weight: 700;
  width: 100%;
  max-width: 60rem;
  height: auto;
  margin: 0 auto;
  border: 0.4rem solid #0065af;
  display: block;
  padding: 3rem 0;
  transition: 0.2s ease;
}
@media only screen and (max-width: 950px) {
  .p-topRecruit__cta-button {
    font-size: 5rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-topRecruit__cta-button {
    font-size: 4.2rem;
    max-width: 50rem;
    border: 0.3rem solid #0065af;
    padding: 2rem 0;
  }
}
@media only screen and (max-width: 590px) {
  .p-topRecruit__cta-button {
    font-size: 3.4rem;
    max-width: 40rem;
    border: 0.2rem solid #0065af;
  }
}
@media only screen and (max-width: 480px) {
  .p-topRecruit__cta-button {
    font-size: 2.6rem;
    max-width: 30rem;
  }
}
.p-topRecruit__cta-button:hover {
  color: #fff;
  background: #0065af;
}

.p-topNews {
  width: 100%;
  height: auto;
  background-color: #e6e6e6;
  padding: 9rem 3rem;
}
@media only screen and (max-width: 590px) {
  .p-topNews {
    padding: 7.5rem 3rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-topNews {
    padding: 6rem 3rem;
  }
}
.p-topNews__inner {
  width: 100%;
  max-width: 100rem;
  height: auto;
  margin: 0 auto;
  display: flex;
  gap: 10rem;
}
@media only screen and (max-width: 950px) {
  .p-topNews__inner {
    gap: 5rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-topNews__inner {
    flex-direction: column;
  }
}
.p-topNews__main-subTitle {
  margin-bottom: 2.5rem;
  display: block;
}
@media only screen and (max-width: 768px) {
  .p-topNews__main-subTitle {
    display: none;
  }
}
@media only screen and (max-width: 480px) {
  .p-topNews__main-subTitle {
    margin-bottom: 2rem;
  }
}
.p-topNews__main-subTitle-sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .p-topNews__main-subTitle-sp {
    margin-bottom: 3rem;
    display: block;
  }
}
.p-topNews__main-title {
  margin-bottom: 5rem;
}
@media only screen and (max-width: 768px) {
  .p-topNews__main-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
  }
}
.p-topNews__main-link {
  font-size: 1.3rem;
  font-weight: 500;
  width: 12.5rem;
  height: auto;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 3rem;
  display: inline-block;
  padding: 0.7rem 0;
  text-align: center;
  transition: 0.3s ease-in-out;
}
@media only screen and (max-width: 768px) {
  .p-topNews__main-link {
    background-color: transparent;
  }
}
@media only screen and (max-width: 480px) {
  .p-topNews__main-link {
    font-size: 1.2rem;
  }
}
.p-topNews__main-link:hover {
  color: #fff;
  background-color: #0065af;
  border: 1px solid #0065af;
}
.p-topNews__main-cta {
  display: block;
}
@media only screen and (max-width: 768px) {
  .p-topNews__main-cta {
    display: none;
  }
}
.p-topNews__main-cta-sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .p-topNews__main-cta-sp {
    display: block;
  }
}
.p-topNews__categories {
  margin-bottom: 5rem;
}
@media only screen and (max-width: 768px) {
  .p-topNews__categories {
    margin-bottom: 0;
  }
}
.p-topNews__categories-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media only screen and (max-width: 768px) {
  .p-topNews__categories-list {
    flex-direction: row;
    gap: 0;
  }
}
.p-topNews__categories-item {
  font-size: 1.3rem;
  font-weight: 500;
}
.p-topNews__categories-item span {
  width: 8.5rem;
  height: auto;
  border-radius: 3rem;
  display: inline-block;
  padding: 0.7rem 0;
  text-align: center;
  cursor: pointer;
}
.p-topNews__categories-item span.tab {
  color: #fff;
  background: #666;
}
.p-topNews__categories-item span:hover {
  color: #fff;
  background-color: rgba(102, 102, 102, 0.5);
}
.p-topNews__categories-item.click:nth-child(1) span {
  color: #fff;
  background-color: #666;
}
.p-topNews__categories-item.click:nth-child(2) span {
  color: #fff;
  background-color: #0065af;
}
.p-topNews__categories-item.click:nth-child(3) span {
  color: #fff;
  background-color: #f7931e;
}
.p-topNews__content {
  width: 100%;
  height: auto;
  display: none;
}
.p-topNews__content.appear {
  display: block;
}
.p-topNews__content-item {
  border-top: 1px solid #000;
}
.p-topNews__content-item:last-child {
  border-bottom: 1px solid #000;
}
.p-topNews__content-link {
  display: block;
  padding: 4rem 0;
  position: relative;
}
@media only screen and (max-width: 950px) {
  .p-topNews__content-link {
    padding: 3rem 0;
  }
}
.p-topNews__content-link::before {
  content: "";
  width: 2rem;
  height: 2rem;
  background-image: url(../images/icon-arrow.svg);
  border: 1px solid #0065af;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.p-topNews__content-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.p-topNews__content-head time {
  color: #808080;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 480px) {
  .p-topNews__content-head time {
    font-size: 1.2rem;
  }
}
.p-topNews__content-category {
  font-size: 1.3rem;
  font-weight: 500;
  width: 8.5rem;
  height: auto;
  border-radius: 3rem;
  display: inline-block;
  padding: 0.7rem 0;
  text-align: center;
}
@media only screen and (max-width: 480px) {
  .p-topNews__content-category {
    font-size: 1.2rem;
    width: 7rem;
    padding: 0.6rem 0;
  }
}
.p-topNews__content-category.news {
  color: #fff;
  background: #0065af;
}
.p-topNews__content-category.recruit {
  color: #fff;
  background: #f7931e;
}
.p-topNews__content-text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
}
@media only screen and (max-width: 480px) {
  .p-topNews__content-text {
    font-size: 1.2rem;
  }
}

.p-construction {
  width: 100%;
  height: auto;
  padding: 0 3rem;
}
.p-construction__inner {
  width: 100%;
  max-width: 100rem;
  height: auto;
  margin: 0 auto;
  padding: 7.5rem 0;
}
@media only screen and (max-width: 590px) {
  .p-construction__inner {
    padding: 6rem 0;
  }
}
@media only screen and (max-width: 480px) {
  .p-construction__inner {
    padding: 4.5rem 0;
  }
}
.p-construction__title {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 3.5rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .p-construction__title {
    font-size: 4rem;
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width: 590px) {
  .p-construction__title {
    font-size: 3.2rem;
    margin-bottom: 2.5rem;
    text-align: left;
  }
}
.p-construction__title span {
  color: #0065af;
  display: block;
}
.p-construction__title br {
  display: none;
}
@media only screen and (max-width: 590px) {
  .p-construction__title br {
    display: block;
  }
}
.p-construction__text {
  font-size: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 6rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .p-construction__text {
    margin-bottom: 4.5rem;
  }
}
@media only screen and (max-width: 590px) {
  .p-construction__text {
    margin-bottom: 3rem;
    gap: 0;
    line-height: 2;
    text-align: left;
  }
}
@media only screen and (max-width: 480px) {
  .p-construction__text {
    font-size: 1.2rem;
  }
}
.p-construction__text span {
  display: block;
}
.p-construction__list {
  width: 100%;
  height: auto;
}
.p-construction__item:nth-child(1) {
  width: 100%;
  max-width: 640px;
  height: auto;
  position: relative;
  top: 0;
  margin-left: auto;
}
.p-construction__item:nth-child(2) {
  width: 100%;
  max-width: 650px;
  height: auto;
  position: relative;
  top: -10rem;
  margin-bottom: -10rem;
}
@media only screen and (max-width: 950px) {
  .p-construction__item:nth-child(2) {
    max-width: 65%;
    top: -5rem;
    left: -3rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-construction__item:nth-child(2) {
    margin-bottom: -2rem;
  }
}
.p-construction__item:nth-child(3) {
  width: 100%;
  max-width: 440px;
  height: auto;
  position: relative;
  top: -20rem;
  margin-bottom: -29rem;
  margin-left: auto;
}
@media only screen and (max-width: 768px) {
  .p-construction__item:nth-child(3) {
    max-width: 50%;
    top: -10rem;
  }
}

.p-situation {
  width: 100%;
  height: auto;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
  position: relative;
  top: -25rem;
  margin-bottom: -25rem;
  padding: 40rem 3rem 10rem;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .p-situation {
    top: -15rem;
  }
}
@media only screen and (max-width: 590px) {
  .p-situation {
    top: -10rem;
    padding: 25rem 3rem 15rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-situation {
    top: 0;
    padding: 25rem 3rem;
  }
}
.p-situation__inner {
  width: 100%;
  max-width: 100rem;
  height: auto;
  margin: 0 auto;
}
.p-situation__title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 6rem;
  text-align: center;
}
@media only screen and (max-width: 590px) {
  .p-situation__title {
    font-size: 2.8rem;
    margin-bottom: 5rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-situation__title {
    font-size: 2.2rem;
    margin-bottom: 4.5rem;
  }
}
.p-situation__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5rem;
}
@media only screen and (max-width: 590px) {
  .p-situation__list {
    gap: 3.5rem;
  }
}
.p-situation__item {
  width: calc(50% - 2.5rem);
  height: auto;
}
@media only screen and (max-width: 768px) {
  .p-situation__item {
    width: 100%;
  }
}
.p-situation__item-image {
  margin-bottom: 2.5rem;
}
@media only screen and (max-width: 590px) {
  .p-situation__item-image {
    margin-bottom: 1.5rem;
  }
}
.p-situation__item-title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 590px) {
  .p-situation__item-title {
    font-size: 1.6em;
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-situation__item-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }
}
.p-situation__item-text {
  font-size: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media only screen and (max-width: 590px) {
  .p-situation__item-text {
    gap: 0;
    line-height: 1.6;
  }
}
@media only screen and (max-width: 480px) {
  .p-situation__item-text {
    font-size: 1.2rem;
  }
}
.p-situation__item-text span {
  display: block;
}
.p-situation__item-text span br {
  display: none;
}
@media only screen and (max-width: 590px) {
  .p-situation__item-text span br {
    display: block;
  }
}

.p-resources {
  width: 100%;
  height: auto;
}
.p-resources__inner {
  width: 100%;
  max-width: 100rem;
  height: auto;
  margin: 0 auto;
  padding-top: 12rem;
}
@media only screen and (max-width: 590px) {
  .p-resources__inner {
    padding: 6rem 0;
  }
}
@media only screen and (max-width: 480px) {
  .p-resources__inner {
    padding: 4.5rem 0;
  }
}
.p-resources__title {
  color: #0067af;
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 5rem;
  padding: 0 3rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .p-resources__title {
    font-size: 4rem;
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width: 590px) {
  .p-resources__title {
    font-size: 3.2rem;
    margin-bottom: 2.5rem;
    text-align: left;
  }
  .p-resources__title span {
    display: block;
  }
}
.p-resources__subTitle {
  font-size: 3.2rem;
  font-weight: 500;
  margin-bottom: 3.5rem;
  padding: 0 3rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .p-resources__subTitle {
    font-size: 2.7rem;
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width: 590px) {
  .p-resources__subTitle {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    text-align: left;
  }
}
.p-resources__text {
  font-size: 1.4rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3.5rem;
  padding: 0 3rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .p-resources__text {
    margin-bottom: 4.5rem;
  }
}
@media only screen and (max-width: 590px) {
  .p-resources__text {
    margin-bottom: 3rem;
    gap: 0;
    line-height: 2;
    text-align: left;
  }
}
@media only screen and (max-width: 480px) {
  .p-resources__text {
    font-size: 1.2rem;
  }
}
.p-resources__text span {
  display: block;
}
.p-resources__text:nth-child(4) {
  margin-bottom: 5rem;
}
.p-resources__image {
  width: 100%;
  max-width: 825px;
  height: auto;
  margin: 0 auto;
}
.p-resources__cta {
  display: flex;
  justify-content: center;
  gap: 3.5rem;
  padding: 9rem 3rem;
}
@media only screen and (max-width: 590px) {
  .p-resources__cta {
    flex-direction: column;
    align-items: center;
    padding: 7rem 3rem;
    gap: 2rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-resources__cta {
    padding: 4.5rem 3rem;
  }
}

.p-interview {
  width: 100%;
  height: auto;
  margin-bottom: 15rem;
  padding: 0 3rem;
}
@media only screen and (max-width: 768px) {
  .p-interview {
    margin-bottom: 12rem;
  }
}
@media only screen and (max-width: 590px) {
  .p-interview {
    margin-bottom: 9rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-interview {
    margin-bottom: 7.5rem;
  }
}
.p-interview__inner {
  width: 100%;
  max-width: 100rem;
  height: auto;
  margin: 0 auto;
}
.p-interview__subTitle {
  color: #999;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 590px) {
  .p-interview__subTitle {
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-interview__subTitle {
    margin-bottom: 1rem;
  }
}
.p-interview__title {
  margin-bottom: 7rem;
}
@media only screen and (max-width: 590px) {
  .p-interview__title {
    margin-bottom: 5rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-interview__title {
    margin-bottom: 3.5rem;
  }
}
.p-interview__list {
  display: flex;
  gap: 6.5rem;
}
@media only screen and (max-width: 950px) {
  .p-interview__list {
    gap: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-interview__list {
    flex-direction: column;
    gap: 4rem;
  }
}
.p-interview__item {
  width: 100%;
  height: auto;
}
.p-interview__item-image {
  margin-bottom: 2.5rem;
}
@media only screen and (max-width: 768px) {
  .p-interview__item-image {
    width: 100%;
    height: 40rem;
  }
}
@media only screen and (max-width: 590px) {
  .p-interview__item-image {
    height: 30rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-interview__item-image {
    height: 21.5rem;
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-interview__item-image img {
    object-fit: cover;
    object-position: 0 -7rem;
  }
}
@media only screen and (max-width: 590px) {
  .p-interview__item-image img {
    object-position: 0 -5rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-interview__item-image img {
    object-position: 0 -3.5rem;
  }
}
.p-interview__item-title {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 590px) {
  .p-interview__item-title {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-interview__item-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
}
.p-interview__item-text {
  font-size: 1.4rem;
  line-height: 1.8;
}
@media only screen and (max-width: 480px) {
  .p-interview__item-text {
    font-size: 1.2rem;
  }
}
.p-interview__item-text span {
  display: block;
}
.p-interview__item-text span:nth-child(1) {
  margin-bottom: 1rem;
}
.p-interview__item-text span:nth-child(2) {
  font-weight: 500;
}

.p-induction {
  width: 100%;
  height: auto;
}
.p-induction__inner {
  width: 100%;
  height: auto;
  background-image: url(../images/induction-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 9rem 3rem 20rem;
}
@media only screen and (max-width: 768px) {
  .p-induction__inner {
    background-image: url(../images/induction-bg-sp.jpg);
    padding: 9rem 3rem;
  }
}
@media only screen and (max-width: 590px) {
  .p-induction__inner {
    padding: 7.5rem 3rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-induction__inner {
    padding: 6rem 3rem;
  }
}
.p-induction__main {
  width: 100%;
  max-width: 100rem;
  height: auto;
  margin: 0 auto;
}
.p-induction__main-subTitle {
  color: #fff;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 590px) {
  .p-induction__main-subTitle {
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-induction__main-subTitle {
    margin-bottom: 1rem;
  }
}
.p-induction__main-title {
  color: #fff;
  margin-bottom: 2.5rem;
}
.p-induction__main-text {
  color: #fff;
  width: 100%;
  max-width: 50rem;
  height: auto;
  font-size: 1.4rem;
  line-height: 2.4;
}
@media only screen and (max-width: 590px) {
  .p-induction__main-text {
    line-height: 2;
  }
}
@media only screen and (max-width: 480px) {
  .p-induction__main-text {
    line-height: 1.8;
  }
}
.p-induction__main-cta {
  font-size: 1.6rem;
}
.p-induction__content {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .p-induction__content {
    width: 92%;
    margin-left: auto;
  }
}
.p-induction__content__inner {
  width: 100%;
  height: auto;
  background: linear-gradient(90deg, transparent 0%, transparent 10%, #e6e6e6 10%, #e6e6e6 100%);
  margin-left: auto;
  margin-bottom: -5rem;
  padding: 5rem;
  position: relative;
  top: -18rem;
}
@media screen and (max-width: 1300px) {
  .p-induction__content__inner {
    background: linear-gradient(90deg, transparent 0%, transparent 4%, #e6e6e6 4%, #e6e6e6 100%);
  }
}
@media only screen and (max-width: 768px) {
  .p-induction__content__inner {
    background: #ccc;
    margin-bottom: 0;
    padding: 3rem;
    top: -5rem;
  }
}
@media only screen and (max-width: 590px) {
  .p-induction__content__inner {
    padding: 2.5rem;
  }
}
.p-induction__list {
  width: 100%;
  max-width: 100rem;
  height: auto;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 5rem;
}
@media only screen and (max-width: 768px) {
  .p-induction__list {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-induction__list {
    gap: 2rem;
  }
}
.p-induction__item-image {
  margin-bottom: 1.5rem;
}
.p-induction__item-text {
  font-size: 1.4rem;
}

.p-faq {
  width: 100%;
  height: auto;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
}
.p-faq__inner {
  width: 100%;
  max-width: 100rem;
  height: auto;
  margin: 0 auto;
  padding: 10rem 3rem;
}
@media only screen and (max-width: 590px) {
  .p-faq__inner {
    padding: 7.5rem 3rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-faq__inner {
    padding: 5rem 3rem;
  }
}
.p-faq__title {
  font-size: 3.2rem;
  font-weight: 500;
  margin-bottom: 3.5rem;
  text-align: center;
}
@media only screen and (max-width: 590px) {
  .p-faq__title {
    font-size: 2.7rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-faq__title {
    font-size: 2.2rem;
  }
}
.p-faq__item {
  border-bottom: 1px dashed #000;
  padding: 4rem 0;
}
@media only screen and (max-width: 590px) {
  .p-faq__item {
    padding: 3rem 0;
  }
}
@media only screen and (max-width: 480px) {
  .p-faq__item {
    padding: 2.5rem 0;
  }
}
.p-faq__item dt, .p-faq__item dd {
  display: flex;
  align-items: center;
}
.p-faq__item dt {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 590px) {
  .p-faq__item dt {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-faq__item dt {
    font-size: 1.4rem;
  }
}
.p-faq__item dd {
  font-size: 1.6rem;
}
@media only screen and (max-width: 590px) {
  .p-faq__item dd {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-faq__item dd {
    font-size: 1.2rem;
  }
}
.p-faq__item-question, .p-faq__item-answer {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 400;
  width: 3.3rem;
  height: 3.3rem;
  display: block;
  text-align: center;
}
@media only screen and (max-width: 590px) {
  .p-faq__item-question, .p-faq__item-answer {
    font-size: 2rem;
    width: 2.8rem;
    height: 2.8rem;
  }
}
.p-faq__item-question {
  background-color: #000;
}
.p-faq__item-answer {
  background-color: #0065af;
}
.p-faq__item-title {
  margin-left: 3rem;
  line-height: 1.4;
}
@media only screen and (max-width: 590px) {
  .p-faq__item-title {
    margin-left: 2rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-faq__item-title {
    margin-left: 1.5rem;
  }
}
.p-faq__item-title br {
  display: none;
}
@media only screen and (max-width: 590px) {
  .p-faq__item-title br {
    display: block;
  }
}
.p-faq__item-text {
  flex: 1;
  margin-left: 3rem;
  line-height: 1.4;
}
@media only screen and (max-width: 590px) {
  .p-faq__item-text {
    margin-left: 2rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-faq__item-text {
    margin-left: 1.5rem;
  }
}
.p-faq__item-text span {
  display: block;
  line-height: 1.6;
}

.p-message {
  width: 100%;
  height: auto;
  padding: 0 3rem;
}
.p-message__inner {
  width: 100%;
  max-width: 100rem;
  height: auto;
  margin: 0 auto;
  padding: 12rem 0;
}
@media only screen and (max-width: 768px) {
  .p-message__inner {
    padding: 10rem 0;
  }
}
@media only screen and (max-width: 590px) {
  .p-message__inner {
    padding: 8rem 0;
  }
}
@media only screen and (max-width: 480px) {
  .p-message__inner {
    padding: 6rem 0;
  }
}
.p-message__title {
  color: #0067af;
  font-size: 4.8rem;
  font-weight: 500;
  margin-bottom: 10rem;
}
@media only screen and (max-width: 768px) {
  .p-message__title {
    font-size: 4rem;
    margin-bottom: 8rem;
  }
}
@media only screen and (max-width: 590px) {
  .p-message__title {
    font-size: 3.2rem;
    margin-bottom: 6rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-message__title {
    font-size: 2.2rem;
    margin-bottom: 4rem;
  }
}
.p-message__main {
  display: flex;
  flex-direction: column;
  gap: 10rem;
}
@media only screen and (max-width: 768px) {
  .p-message__main {
    gap: 8rem;
  }
}
@media only screen and (max-width: 590px) {
  .p-message__main {
    gap: 6rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-message__main {
    gap: 5.5rem;
  }
}
.p-message__block {
  display: flex;
  gap: 5.5rem;
}
@media only screen and (max-width: 768px) {
  .p-message__block {
    flex-direction: column;
  }
}
@media only screen and (max-width: 590px) {
  .p-message__block {
    gap: 3rem;
  }
}
.p-message__block:nth-child(2) {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 768px) {
  .p-message__block:nth-child(2) {
    flex-direction: column;
  }
}
.p-message__image {
  width: 100%;
  max-width: 33rem;
  height: auto;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .p-message__image {
    max-width: 55rem;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 590px) {
  .p-message__image {
    right: -3rem;
  }
}
.p-message__text {
  flex: 1;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media only screen and (max-width: 590px) {
  .p-message__text {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-message__text {
    font-size: 1.2rem;
  }
}
.p-message__text span {
  display: block;
}
.p-message__name {
  margin-top: 2rem;
}

.p-mission {
  width: 100%;
  height: auto;
  background-color: #f1f1f1;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #fff calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #fff calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
}
.p-mission__inner {
  width: 100%;
  max-width: 100rem;
  height: auto;
  margin: 0 auto;
  padding: 12rem 3rem;
}
@media only screen and (max-width: 768px) {
  .p-mission__inner {
    padding: 10rem 3rem;
  }
}
@media only screen and (max-width: 590px) {
  .p-mission__inner {
    padding: 8rem 3rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-mission__inner {
    padding: 7.5rem 3rem;
  }
}
.p-mission__title {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 500;
  width: 100%;
  max-width: 680px;
  height: auto;
  margin: 0 auto 6rem;
  padding: 1rem 0;
  background-color: #000;
  letter-spacing: 0.8em;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .p-mission__title {
    font-size: 2rem;
    margin-bottom: 5rem;
  }
}
@media only screen and (max-width: 590px) {
  .p-mission__title {
    font-size: 1.6rem;
    margin-bottom: 4rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-mission__title {
    font-size: 1.4rem;
    margin-bottom: 3rem;
  }
}
.p-mission__motto {
  font-size: 10rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 5.5rem;
  letter-spacing: 0.2em;
  text-align: center;
  white-space: nowrap;
}
@media only screen and (max-width: 950px) {
  .p-mission__motto {
    font-size: 9rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-mission__motto {
    font-size: 7rem;
    margin-bottom: 5rem;
  }
}
@media only screen and (max-width: 590px) {
  .p-mission__motto {
    font-size: 6rem;
    margin-bottom: 4rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-mission__motto {
    font-size: 5.5rem;
    margin-bottom: 3rem;
    letter-spacing: 0.1em;
  }
}
.p-mission__motto-en {
  color: #0067af;
  font-size: 4.2rem;
  font-weight: 500;
  margin-bottom: 3.5rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .p-mission__motto-en {
    font-size: 3.6rem;
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width: 590px) {
  .p-mission__motto-en {
    font-size: 3rem;
    margin-bottom: 2.5rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-mission__motto-en {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
}
.p-mission__text {
  font-size: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .p-mission__text {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 590px) {
  .p-mission__text {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-mission__text {
    font-size: 1.4rem;
  }
}
.p-mission__text span {
  display: block;
}

.p-information {
  width: 100%;
  height: auto;
}
.p-information__inner {
  width: 100%;
  max-width: 100rem;
  height: auto;
  margin: 0 auto;
  padding: 15rem 3rem;
}
@media only screen and (max-width: 768px) {
  .p-information__inner {
    padding: 12rem 3rem;
  }
}
@media only screen and (max-width: 590px) {
  .p-information__inner {
    padding: 9rem 3rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-information__inner {
    padding: 6.5rem 3rem;
  }
}
.p-information__title {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 7rem;
  text-align: center;
}
@media only screen and (max-width: 590px) {
  .p-information__title {
    color: #0067af;
    text-align: left;
    margin-bottom: 6rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-information__title {
    margin-bottom: 5rem;
  }
}
.p-information__block {
  width: 100%;
  height: auto;
}
.p-information dl {
  font-size: 1.4rem;
  width: 100%;
  height: auto;
  border-top: 0.05rem solid #999;
  display: flex;
  padding: 3rem 0;
}
@media only screen and (max-width: 590px) {
  .p-information dl {
    font-size: 1.3rem;
    padding: 2rem 0;
  }
}
@media only screen and (max-width: 480px) {
  .p-information dl {
    font-size: 1.2rem;
    padding: 1.5rem 0;
  }
}
.p-information dl:last-child {
  border-bottom: 0.05rem solid #999;
}
.p-information dt {
  width: 100%;
  max-width: 13rem;
  height: auto;
  font-weight: 500;
}
@media only screen and (max-width: 590px) {
  .p-information dt {
    max-width: 11rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-information dt {
    max-width: 9rem;
  }
}
.p-information dd {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  line-height: 1.4;
}
@media only screen and (max-width: 590px) {
  .p-information dd {
    gap: 0;
  }
}
.p-information dd span {
  display: block;
}

.p-history {
  width: 100%;
  height: auto;
  padding: 0 3rem;
}
.p-history__inner {
  width: 100%;
  max-width: 100rem;
  height: auto;
  margin: 0 auto 10rem;
}
@media only screen and (max-width: 768px) {
  .p-history__inner {
    margin-bottom: 8rem;
  }
}
@media only screen and (max-width: 590px) {
  .p-history__inner {
    margin-bottom: 6rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-history__inner {
    margin-bottom: 5rem;
  }
}
.p-history__title {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 7rem;
  text-align: center;
}
@media only screen and (max-width: 590px) {
  .p-history__title {
    color: #0067af;
    text-align: left;
    margin-bottom: 6rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-history__title {
    margin-bottom: 5rem;
  }
}
.p-history__block {
  width: 100%;
  height: auto;
}
.p-history__item {
  display: flex;
  align-items: center;
  position: relative;
}
.p-history__item::before {
  content: "";
  width: 0.05rem;
  height: 100%;
  background-color: #999;
  position: absolute;
  top: 0;
  left: 0;
}
.p-history__item:last-child .p-history__item-description {
  border-bottom: 0.05rem solid #999;
}
.p-history__item-year {
  color: #0067af;
  font-size: 2.2rem;
  font-weight: 700;
  width: 100%;
  max-width: 9.5rem;
  height: auto;
  padding-left: 2rem;
  position: relative;
}
@media only screen and (max-width: 590px) {
  .p-history__item-year {
    font-size: 2rem;
    max-width: 7rem;
    padding-left: 1.5rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-history__item-year {
    font-size: 1.6rem;
    max-width: 6.5rem;
  }
}
.p-history__item-year::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  background-color: #0067af;
  position: absolute;
  top: 50%;
  left: -0.2rem;
  margin-top: -0.1rem;
}
.p-history__item-month {
  font-size: 1.4rem;
  width: 100%;
  max-width: 7rem;
  height: auto;
}
@media only screen and (max-width: 590px) {
  .p-history__item-month {
    font-size: 1.3rem;
    max-width: 5.5rem;
  }
}
.p-history__item-description {
  flex: 1;
  font-size: 1.4rem;
  padding: 2rem 0;
  border-top: 0.05rem solid #999;
  line-height: 1.8;
}
@media only screen and (max-width: 590px) {
  .p-history__item-description {
    font-size: 1.2rem;
    padding: 1.5rem 0;
  }
}
.p-history__item-description span {
  display: block;
}

.p-applicants {
  width: 100%;
  max-width: 850px;
  height: auto;
  margin: 0 auto;
  padding-top: 7.5rem;
}
@media only screen and (max-width: 590px) {
  .p-applicants {
    padding: 6rem 0;
  }
}
.p-applicants dl {
  display: flex;
  border-top: 0.05rem solid #999;
  padding: 2rem 0;
}
@media only screen and (max-width: 768px) {
  .p-applicants dl {
    flex-direction: column;
  }
}
@media only screen and (max-width: 768px) {
  .p-applicants dl:nth-child(1), .p-applicants dl:nth-child(3), .p-applicants dl:nth-child(5) {
    border-top: none;
  }
}
@media only screen and (max-width: 768px) {
  .p-applicants dl:nth-child(2), .p-applicants dl:nth-child(4) {
    width: 120%;
    flex-direction: row;
    background: #e6e6e6;
    border-top: none;
    position: relative;
    left: -3rem;
  }
}
.p-applicants dl:nth-child(2) dt, .p-applicants dl:nth-child(4) dt {
  max-width: 17.5rem;
}
@media only screen and (max-width: 768px) {
  .p-applicants dl:nth-child(2) dt, .p-applicants dl:nth-child(4) dt {
    padding-left: 3rem;
    max-width: 12rem;
  }
}
.p-applicants dl:last-child {
  border-bottom: 0.05rem solid #999;
}
.p-applicants dt {
  font-size: 1.6rem;
  width: 100%;
  max-width: 17.5rem;
  height: auto;
  line-height: 1.6;
}
@media only screen and (max-width: 768px) {
  .p-applicants dt {
    max-width: 100%;
  }
  .p-applicants dt br {
    display: none;
  }
}
@media only screen and (max-width: 480px) {
  .p-applicants dt {
    font-size: 1.4rem;
  }
}
.p-applicants dd {
  flex: 1;
  font-size: 1.4rem;
  line-height: 1.6;
}
@media only screen and (max-width: 480px) {
  .p-applicants dd {
    font-size: 1.2rem;
  }
}
.p-applicants__training, .p-applicants__certifications {
  font-weight: 500;
  margin-top: 3rem;
}
.p-applicants__certifications-item {
  padding: 1.5rem;
  border-bottom: 0.05rem solid #999;
}
.p-applicants__certifications-item:first-child {
  padding-top: 0;
}
.p-applicants__certifications-item:last-child {
  border-bottom: 0;
}
.p-applicants__text {
  font-size: 1.6rem;
  text-align: center;
}

.p-privacy-policy {
  width: 100%;
  max-width: 70rem;
  height: auto;
  margin: 0 auto;
  padding: 10rem 0;
}
@media only screen and (max-width: 590px) {
  .p-privacy-policy {
    padding: 9rem 0;
  }
}
@media only screen and (max-width: 480px) {
  .p-privacy-policy {
    padding: 7rem 0;
  }
}
.p-privacy-policy__title {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
}
@media only screen and (max-width: 480px) {
  .p-privacy-policy__title {
    font-size: 1.2rem;
  }
}
.p-privacy-policy__text {
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 3rem;
  line-height: 1.6;
}
@media only screen and (max-width: 480px) {
  .p-privacy-policy__text {
    font-size: 1.2rem;
  }
}
.p-privacy-policy__text span {
  display: flex;
}
.p-privacy-policy__text:last-child {
  margin-bottom: 0;
}
.p-privacy-policy__counter {
  font-size: 1.4rem;
  font-weight: 500;
  padding: 2rem 0 3rem;
}
@media only screen and (max-width: 480px) {
  .p-privacy-policy__counter {
    font-size: 1.2rem;
    padding: 0 0 3rem;
  }
}

.p-archive {
  width: 100%;
  max-width: 70rem;
  height: auto;
  margin: 0 auto;
  padding: 9rem 0;
}
@media only screen and (max-width: 590px) {
  .p-archive {
    padding: 6rem 0;
  }
}
.p-archive__content {
  width: 100%;
  height: auto;
}
.p-archive__content-item {
  border-top: 0.05rem solid #000;
  position: relative;
}
.p-archive__content-item:last-child {
  border-bottom: 1px solid #000;
}
.p-archive__content-link {
  display: block;
  padding: 2rem 0;
  position: relative;
}
.p-archive__content-link::before {
  content: "";
  width: 2rem;
  height: 2rem;
  background-image: url(../images/icon-arrow.svg);
  border: 1px solid #0065af;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  cursor: pointer;
}
.p-archive__content-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 480px) {
  .p-archive__content-head {
    margin-bottom: 1rem;
  }
}
.p-archive__content-head time {
  color: #808080;
  font-size: 1.4rem;
  font-weight: 500;
}
@media only screen and (max-width: 590px) {
  .p-archive__content-head time {
    font-size: 1.2rem;
  }
}
.p-archive__content-category {
  font-size: 1.3rem;
  font-weight: 500;
  width: 8.5rem;
  height: auto;
  border-radius: 3rem;
  display: inline-block;
  padding: 0.7rem 0;
  text-align: center;
}
@media only screen and (max-width: 590px) {
  .p-archive__content-category {
    font-size: 1.2rem;
    width: 6.5rem;
    padding: 0.6rem 0;
  }
}
@media only screen and (max-width: 480px) {
  .p-archive__content-category {
    font-size: 1rem;
    width: 5.5rem;
    padding: 0.6rem 0;
  }
}
.p-archive__content-category.news {
  color: #fff;
  background: #0065af;
}
.p-archive__content-category.recruit {
  color: #fff;
  background: #f7931e;
}
.p-archive__content-text {
  font-size: 1.4rem;
  font-weight: 500;
}
@media only screen and (max-width: 480px) {
  .p-archive__content-text {
    font-size: 1.2rem;
  }
}

.p-single {
  width: 100%;
  max-width: 80rem;
  height: auto;
  margin: 0 auto;
  padding: 9rem 0;
}
@media only screen and (max-width: 590px) {
  .p-single {
    padding: 6rem 0 0;
  }
}
.p-single__content {
  width: 100%;
  height: auto;
}
.p-single__content-item {
  margin-bottom: 3rem;
}
.p-single__content-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 480px) {
  .p-single__content-head {
    margin-bottom: 1rem;
  }
}
.p-single__content-head time {
  color: #808080;
  font-size: 1.4rem;
  font-weight: 500;
}
@media only screen and (max-width: 590px) {
  .p-single__content-head time {
    font-size: 1.2rem;
  }
}
.p-single__content-category {
  font-size: 1.3rem;
  font-weight: 500;
  width: 8.5rem;
  height: auto;
  border-radius: 3rem;
  display: inline-block;
  padding: 0.7rem 0;
  text-align: center;
}
@media only screen and (max-width: 590px) {
  .p-single__content-category {
    font-size: 1.2rem;
    width: 6.5rem;
    padding: 0.6rem 0;
  }
}
@media only screen and (max-width: 480px) {
  .p-single__content-category {
    font-size: 1rem;
    width: 5.5rem;
    padding: 0.6rem 0;
  }
}
.p-single__content-category.news {
  color: #fff;
  background: #0065af;
}
.p-single__content-category.recruit {
  color: #fff;
  background: #f7931e;
}
.p-single__content-title {
  font-size: 1.8rem;
  font-weight: 500;
  padding-bottom: 3rem;
}
@media only screen and (max-width: 590px) {
  .p-single__content-title {
    font-size: 1.6rem;
    border-bottom: 1px solid #000;
    padding-bottom: 2rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-single__content-title {
    font-size: 1.4rem;
    padding-bottom: 1.5rem;
  }
}
.p-single__content-area {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}
@media only screen and (max-width: 768px) {
  .p-single__content-area {
    flex-direction: column-reverse;
    margin-top: 3rem;
    gap: 3rem;
  }
}
.p-single__content-text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media only screen and (max-width: 590px) {
  .p-single__content-text {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-single__content-text {
    font-size: 1.2rem;
  }
}
.p-single__content-image {
  width: 100%;
  height: 500px;
  background-color: #e6e6e6;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

main {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.no-scroll {
  overflow: hidden;
}

.fadeIn_up {
  opacity: 0;
  transform: translate(0, 5rem);
  transition: 1s;
}

.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.l-header__sns-instagram {
  width: 6rem;
  height: 6rem;
  position: absolute;
  left: -100px;
  top: -8px;
}
@media only screen and (max-width: 767px) {
  .l-header__sns-instagram {
    width: 4rem;
    height: 4rem;
    left: -56px;
    top: -6px;
  }
}

@media only screen and (min-width: 768px) {
  .ins-hov {
    opacity: 1;
    transition: all .5s;
  }

  .ins-hov:hover {
    opacity: .7;
  }
}


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