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

ul {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
a:hover {
  color: #0aa5f2;
}

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

img,
picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

html {
  font: 300 10px "Hiragino-Kaku-Gothic-ProN-W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "游ゴシック体", "Hiragino Sans", "Noto Sans JP", sans-serif;
  color: #222;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
      -ms-text-size-adjust: none;
          text-size-adjust: none;
}

.image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.image--100 {
  height: 100%;
}
.image--auto {
  width: auto;
}
.image--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.c-accordion__item {
  padding-block: 24px;
  padding-inline: 16px;
  border-bottom: 1px solid #dfe4eb;
}
.c-accordion__item:first-child {
  border-top: 1px solid #dfe4eb;
}
.c-accordion__head {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  font: 300 1.8rem/2 "Hiragino-Kaku-Gothic-ProN-W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "游ゴシック体", "Hiragino Sans", "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
  text-align: left;
  color: #222;
  background: none;
  border: 0;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-accordion__head {
    gap: 16px;
  }
}
.c-accordion__head:hover, .c-accordion__head[aria-expanded=true] {
  color: #0aa5f2;
}
.c-accordion__head:disabled {
  cursor: default;
  color: #808080;
}
.c-accordion__head:disabled .c-accordion__icon {
  color: currentcolor;
}
.c-accordion__head-text {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  min-width: 0;
  word-break: break-word;
}
.c-accordion__icon {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  color: #0aa5f2;
}
.c-accordion__icon::before, .c-accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: currentcolor;
  -webkit-mask: url("../public/img/common/acc-bar.svg") center/auto 100% no-repeat;
          mask: url("../public/img/common/acc-bar.svg") center/auto 100% no-repeat;
  overflow: hidden;
}
.c-accordion__icon::before {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-accordion__icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  -webkit-transition: width 0.2s linear;
  transition: width 0.2s linear;
}
.c-accordion__head[aria-expanded=true] .c-accordion__icon::after {
  width: 0;
}
.c-accordion__body {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height var(--accordion-duration, 0.3s) ease-in-out;
  transition: max-height var(--accordion-duration, 0.3s) ease-in-out;
}
.c-accordion__inner {
  padding-top: 16px;
}

.deco-wrap {
  position: relative;
  z-index: 1;
}

.deco {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}
.deco__path {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  opacity: 0;
}
.deco.is-active .deco__path {
  -webkit-animation: deco-draw 1.25s cubic-bezier(0, 0, 0.2, 1) forwards, deco-fade 1.25s linear forwards;
          animation: deco-draw 1.25s cubic-bezier(0, 0, 0.2, 1) forwards, deco-fade 1.25s linear forwards;
}
.deco--01 {
  width: 17.9166666667%;
}
@media screen and (max-width: 767px) {
  .deco--01 {
    width: 43.4666666667%;
  }
}
.deco--02 {
  width: 16.5625%;
}
@media screen and (max-width: 767px) {
  .deco--02 {
    width: 39.7333333333%;
  }
}
.deco--02.is-active .deco__path--01 {
  -webkit-animation-duration: 0.9s;
          animation-duration: 0.9s;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.deco--02.is-active .deco__path--02 {
  -webkit-animation-duration: 1.1s;
          animation-duration: 1.1s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.title-main {
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.title-main__en {
  display: inline-block;
  color: transparent;
  background: -webkit-gradient(linear, left top, right top, color-stop(40%, #222), color-stop(70%, #25e6bf), to(#0aa5f2));
  background: linear-gradient(to right, #222 40%, #25e6bf 70%, #0aa5f2 100%);
  -webkit-background-clip: text;
          background-clip: text;
  font: 500 6.4rem "Montserrat", sans-serif;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .title-main__en {
    font-size: 3.2rem;
  }
}
.title-main__jp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #222;
}
.title-main__jp::before {
  content: "";
  width: 8px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #0aa5f2;
  display: block;
}
.title-main.center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-inline: auto;
}
.title-main--full .title-main__en {
  background: -webkit-gradient(linear, left top, right top, from(#222), color-stop(58%, #222), color-stop(78%, #25e6bf), to(#0aa5f2));
  background: linear-gradient(90deg, #222 0%, #222 58%, #25e6bf 78%, #0aa5f2 100%);
  -webkit-background-clip: text;
          background-clip: text;
}
.title-main--white .title-main__en {
  background: -webkit-gradient(linear, left top, right top, color-stop(40%, #fff), color-stop(70%, #25e6bf), to(#0aa5f2));
  background: linear-gradient(to right, #fff 40%, #25e6bf 70%, #0aa5f2 100%);
  -webkit-background-clip: text;
          background-clip: text;
}
.title-main--white .title-main__jp {
  color: #fff;
}
.title-main--pbnr {
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 0;
  position: relative;
}
@media screen and (max-width: 1152px) {
  .title-main--pbnr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 4rem;
  }
}
.title-main--pbnr .title-main__en {
  max-width: 1070px;
  font-size: 9.6rem;
  line-height: 1;
  text-align: right;
}
@media screen and (max-width: 1152px) {
  .title-main--pbnr .title-main__en {
    max-width: 850px;
    font-size: 7.6rem;
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}
@media screen and (max-width: 767px) {
  .title-main--pbnr .title-main__en {
    font-size: 4rem;
  }
}
.title-main--pbnr .title-main__jp {
  font-size: 1.8rem;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 1152px) {
  .title-main--pbnr .title-main__jp {
    position: static;
  }
}

.title-sub {
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.title-sub__en {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: transparent;
  background: -webkit-gradient(linear, left top, right top, from(#0aa5f2), to(#25e6bf));
  background: linear-gradient(to right, #0aa5f2 0%, #25e6bf 100%);
  -webkit-background-clip: text;
          background-clip: text;
  font: 500 1.6rem "Montserrat", sans-serif;
  text-transform: uppercase;
}
.title-sub__jp {
  color: #222;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .title-sub__jp {
    font-size: 3.2rem;
  }
}
.title-sub--large .title-sub__en {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .title-sub--large .title-sub__en {
    font-size: 1.6rem;
  }
}
.title-sub--large .title-sub__jp {
  font-size: 6.4rem;
}
@media screen and (max-width: 767px) {
  .title-sub--large .title-sub__jp {
    font-size: 3.2rem;
  }
}

.title-qt {
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
}
.title-qt__en {
  color: #0aa5f2;
  font: 500 2.4rem/1.5 "Montserrat", sans-serif;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .title-qt__en {
    font-size: 1.6rem;
  }
}
.title-qt__jp {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: transparent;
  background: -webkit-gradient(linear, right top, left bottom, color-stop(24%, #222), color-stop(90%, #0aa5f2));
  background: linear-gradient(to bottom left, #222 24%, #0aa5f2 90%);
  -webkit-background-clip: text;
          background-clip: text;
  font-weight: 600;
  font-size: 4.8rem;
  line-height: 1.75;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .title-qt__jp {
    font-size: 3.2rem;
  }
}

.btn {
  position: relative;
  z-index: 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 14px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  min-width: 150px;
  height: 64px;
  padding: 0 16px 0 24px;
  font-weight: 600;
  color: #222;
  background: #fff;
  border: 1px solid #dfe4eb;
  border-radius: 32px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  -webkit-transition: color 0.2s ease, border-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: color 0.2s ease, border-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, -webkit-transform 0.2s ease;
}
.btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: #222;
  -webkit-transform: translateX(120%);
          transform: translateX(120%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.btn__label {
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}
.btn.center {
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .btn.sp-center {
    margin-inline: auto;
  }
}
.btn .btn-arrow {
  color: #fff;
}
.btn .btn-arrow::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.btn:hover:not(:disabled, .disabled) {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.btn:hover:not(:disabled, .disabled), .btn--dark:not(:disabled, .disabled) {
  color: #fff;
}
.btn:hover:not(:disabled, .disabled)::before, .btn--dark:not(:disabled, .disabled)::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.btn--dark .btn-arrow {
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#0aa5f2), color-stop(50%, #25e6bf), to(#15c46c));
  background: linear-gradient(to right, #0aa5f2 0%, #25e6bf 50%, #15c46c 100%);
  background-size: 200% 100%;
  background-position: left center;
}
.btn--dark .btn-arrow::before {
  width: 200%;
  background: -webkit-gradient(linear, left top, right top, from(#0aa5f2), color-stop(50%, #25e6bf), to(#15c46c));
  background: linear-gradient(to right, #0aa5f2 0%, #25e6bf 50%, #15c46c 100%);
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.btn--dark:hover:not(:disabled, .disabled) .btn-arrow::before {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.btn:focus-visible {
  outline: 2px solid #0aa5f2;
  outline-offset: 3px;
}
.btn:disabled, .btn.disabled {
  color: #fff;
  background: #d1e1ed;
  border-color: #d1e1ed;
  cursor: not-allowed;
  pointer-events: none;
}
.btn:disabled::before, .btn.disabled::before {
  display: none;
}
.btn:disabled .btn-arrow, .btn.disabled .btn-arrow {
  color: #d1e1ed;
  background: #fff;
}
.btn:disabled .btn-arrow::before, .btn.disabled .btn-arrow::before {
  display: none;
}

.btn-arrow {
  position: relative;
  z-index: 0;
  overflow: hidden;
  isolation: isolate;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 48px;
  height: 32px;
  padding: 0;
  color: #0aa5f2;
  background: #fff;
  border: 0;
  border-radius: 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  -webkit-transition: color 0.2s ease, -webkit-transform 0.2s ease;
  transition: color 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, color 0.2s ease;
  transition: transform 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease;
}
.btn-arrow::after {
  content: "";
  position: relative;
  z-index: 1;
  width: 1.6rem;
  aspect-ratio: 1/1;
  background-color: currentcolor;
  -webkit-mask: url("../public/img/common/arrow-right.svg") center/contain no-repeat;
          mask: url("../public/img/common/arrow-right.svg") center/contain no-repeat;
}
.btn-arrow::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  height: 120%;
  background: -webkit-gradient(linear, left top, right top, from(#0aa5f2), to(#25e6bf));
  background: linear-gradient(to right, #0aa5f2 0%, #25e6bf 100%);
  -webkit-transform: translateX(120%);
          transform: translateX(120%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  will-change: transform;
}
.btn-arrow:not(.btn-arrow-parent .btn-arrow):hover:not(:disabled, .disabled, .btn-arrow--grad), .recruit__link-card:hover .btn-arrow:not(.btn-arrow-parent .btn-arrow) {
  color: #fff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.btn-arrow:not(.btn-arrow-parent .btn-arrow):hover:not(:disabled, .disabled, .btn-arrow--grad)::before, .recruit__link-card:hover .btn-arrow:not(.btn-arrow-parent .btn-arrow)::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.btn-arrow--grad {
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#0aa5f2), color-stop(50%, #25e6bf), to(#15c46c));
  background: linear-gradient(to right, #0aa5f2 0%, #25e6bf 50%, #15c46c 100%);
  background-size: 200% 100%;
  background-position: left center;
}
.btn-arrow--grad::before {
  width: 200%;
  background: -webkit-gradient(linear, left top, right top, from(#0aa5f2), color-stop(50%, #25e6bf), to(#15c46c));
  background: linear-gradient(to right, #0aa5f2 0%, #25e6bf 50%, #15c46c 100%);
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.btn-arrow--grad:hover:not(:disabled, .disabled) {
  color: #fff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.btn-arrow--grad:hover:not(:disabled, .disabled)::before {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.btn-arrow--left {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
.btn-arrow--left::after {
  -webkit-mask-image: url("../public/img/common/arrow-left.svg");
          mask-image: url("../public/img/common/arrow-left.svg");
}
.btn-arrow--down::after {
  -webkit-mask-image: url("../public/img/common/arrow-down.svg");
          mask-image: url("../public/img/common/arrow-down.svg");
}
.btn-arrow:disabled, .btn-arrow.disabled {
  color: #d1e1ed;
  background: #fff;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-arrow:disabled::before, .btn-arrow.disabled::before {
  display: none;
}

.card {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.4rem;
  }
}
.card__image {
  width: 30rem;
  height: 40rem;
  overflow: hidden;
  background: #fbfcfe;
  border-radius: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .card__image {
    width: 80%;
    max-width: 24rem;
    height: initial;
    aspect-ratio: 24/32;
  }
}
.card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
  font-size: 1.6rem;
  line-height: 2;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
@media screen and (max-width: 767px) {
  .card__text {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    gap: 2.4rem;
  }
}
.card__heading {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.5;
}
.card__desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem;
}
.card--page {
  max-width: 120rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .card--page {
    gap: 4rem;
  }
}
.card--page .card__image {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .card--page .card__image {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 343/229;
  }
}
.card--page .card__text {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  width: 100%;
  max-width: 52rem;
  font-size: 1.8rem;
}
.card--page .card__text,
.card--page .card__desc {
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .card--page .card__text,
  .card--page .card__desc {
    gap: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .card--page .card__button {
    -ms-flex-item-align: center;
        align-self: center;
  }
}
.card--feat {
  max-width: 96rem;
}
.card--feat .card__text {
  width: 100%;
  max-width: 58rem;
}
.card--feat .card__text,
.card--feat .card__desc {
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .card--feat .card__text,
  .card--feat .card__desc {
    gap: 2.4rem;
  }
}
.card--business {
  max-width: 84rem;
  border-radius: 24px;
  background: #d1e1ed;
  cursor: pointer;
  -webkit-transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
}
.card--business:hover {
  background: #fff;
  color: #222;
}
.card--business:hover .btn-arrow {
  color: #fff;
}
.card--business:hover .btn-arrow::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.card--business .card__text {
  min-height: calc(100% - 4.8rem);
}
.card--business .card__button {
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.card--detail {
  max-width: 100rem;
}
.card--detail .card__text {
  height: calc(100% - 8rem);
}
@media screen and (min-width: 768px) {
  .card--detail .card__heading {
    font-weight: 400;
    font-size: 4rem;
    line-height: 1.5;
  }
}
.card--business, .card--detail {
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr auto;
}
@media screen and (max-width: 767px) {
  .card--business, .card--detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 2.4rem 2.15rem;
  }
}
@media screen and (max-width: 767px) {
  .card--business .card__image, .card--detail .card__image {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 3/4;
  }
}
.card--business .card__text, .card--detail .card__text {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .card--business .card__text, .card--detail .card__text {
    height: initial;
  }
}
@media screen and (max-width: 767px) {
  .card {
    max-width: 48rem;
  }
}

.wrap {
  font-size: 1.6rem;
  line-height: 2;
}
.wrap--padded {
  padding-block: 8rem;
}
@media screen and (max-width: 767px) {
  .wrap--padded {
    padding-block: 4rem;
  }
}
.wrap--spaced {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6.4rem;
}
@media screen and (max-width: 767px) {
  .wrap--spaced {
    padding-block: 4rem;
    gap: 4rem;
  }
}
.wrap__inner, .wrap__head, .wrap__content {
  width: 100%;
  padding-inline: 4%;
  margin-inline: auto;
  width: 100%;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .wrap__inner, .wrap__head, .wrap__content {
    max-width: 100%;
    padding-inline: 16px;
  }
}
.wrap__inner--full, .wrap__head--full, .wrap__content--full {
  max-width: 100%;
  padding-inline: 0;
}
.wrap__inner--wide, .wrap__head--wide, .wrap__content--wide {
  max-width: 1800px;
}
@media screen and (max-width: 767px) {
  .wrap__inner--wide, .wrap__head--wide, .wrap__content--wide {
    max-width: 100%;
  }
}
.wrap__inner .wrap__head,
.wrap__inner .wrap__content {
  padding-inline: 0;
}

.c-layout {
  display: grid;
  grid-template-columns: 24rem 1fr;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .c-layout {
    grid-template-columns: 1fr;
  }
}
.c-layout__menu {
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-layout__menu {
    display: none;
  }
}
.c-layout__menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  padding: 1.6rem;
}
.c-layout__menu-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.c-layout__menu-link.is-current {
  color: #0aa5f2;
}
.c-layout__content {
  min-width: 0;
}

.c-anchor-menu {
  padding-block: 24px;
}
@media screen and (max-width: 767px) {
  .c-anchor-menu {
    padding: 40px 16px;
  }
}
.c-anchor-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .c-anchor-menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 0;
    padding-inline: 0;
  }
}
.c-anchor-menu__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 16px;
  color: #222;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-anchor-menu__link {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 24px 16px;
    border-bottom: 1px solid #dfe4eb;
  }
}
.c-anchor-menu__link::after {
  content: "";
  width: 12px;
  height: 6px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: currentcolor;
  -webkit-mask: url("../public/img/common/caret-down.svg") center/contain no-repeat;
          mask: url("../public/img/common/caret-down.svg") center/contain no-repeat;
}
.c-anchor-menu__link:hover {
  color: #0aa5f2;
}
.c-anchor-menu__label {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.link:hover {
  color: #0aa5f2;
}
.link:hover .link__icon--external::after,
.link:hover .link__icon--arrow-upright::after {
  -webkit-transform: translate(2.5px, -2.5px);
          transform: translate(2.5px, -2.5px);
}
.link:hover .link__icon--arrow-upleft::before {
  -webkit-transform: translate(-2.5px, -2.5px);
          transform: translate(-2.5px, -2.5px);
}
.link--under {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.link__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 16px;
  aspect-ratio: 1/1;
  position: relative;
  margin-left: 4px;
}
.link__icon::before, .link__icon::after {
  display: block;
  width: 100%;
  height: 100%;
  background: currentcolor;
  -webkit-mask: center/contain no-repeat;
          mask: center/contain no-repeat;
  -webkit-transition: background 0.2s ease, -webkit-transform 0.2s ease-in-out;
  transition: background 0.2s ease, -webkit-transform 0.2s ease-in-out;
  transition: background 0.2s ease, transform 0.2s ease-in-out;
  transition: background 0.2s ease, transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.link__icon--external {
  width: 12px;
  margin-left: 8px;
}
.link__icon--external::before {
  content: "";
  -webkit-mask-image: url("../public/img/common/external-box.svg");
          mask-image: url("../public/img/common/external-box.svg");
}
.link__icon--external::after {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-mask-image: url("../public/img/common/external-arrow.svg");
          mask-image: url("../public/img/common/external-arrow.svg");
}
.link__icon--arrow-upright::after {
  content: "";
  -webkit-mask-image: url("../public/img/common/arrow-upright.svg");
          mask-image: url("../public/img/common/arrow-upright.svg");
}
.link__icon--arrow-upleft {
  margin-inline: 0 4px;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
.link__icon--arrow-upleft::before {
  content: "";
  -webkit-mask-image: url("../public/img/common/arrow-upleft.svg");
          mask-image: url("../public/img/common/arrow-upleft.svg");
}

.article:last-child .article__link {
  border-bottom: none;
}
.article__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem;
  padding-block: 2.4rem;
  border-bottom: 1px solid #dfe4eb;
}
.article__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
}
.article__date {
  font: 500 1.6rem/1.5 "Montserrat", sans-serif;
  letter-spacing: 0.04em;
}
.article__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.article__cat {
  font-size: 1.4rem;
  color: #222;
  background: #dfe4eb;
  height: 3rem;
  padding-inline: 1.6rem;
  border-radius: 999px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.article__title {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.c-cat-nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.4rem;
}
.c-cat-nav__link {
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #222;
}
.c-cat-nav__link:hover .c-cat-nav__mark, .c-cat-nav__link:focus-visible .c-cat-nav__mark {
  border-color: #0aa5f2;
}
.c-cat-nav__link.is-current {
  pointer-events: none;
}
.c-cat-nav__link.is-current .c-cat-nav__mark::before {
  opacity: 1;
}
.c-cat-nav__mark {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  background: #fff;
  border: 1px solid #e9edf2;
  border-radius: 50%;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.c-cat-nav__mark::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  inset: 50% auto auto 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  background: #0aa5f2;
  border-radius: 50%;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.c-pagination {
  padding-block: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.6rem;
}
.c-pagination .current,
.c-pagination .page,
.c-pagination .extend,
.c-pagination .c-pagination__page {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 32px;
  height: 32px;
  padding: 1px 0 0 1px;
  font: 500 1.6rem/1.5 "Montserrat", sans-serif;
  letter-spacing: 0.04em;
  color: #222;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 16px;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-pagination .current,
.c-pagination .c-pagination__page.is-active {
  font-weight: 700;
  background: #0aa5f2;
  color: #fff;
}
.c-pagination .page:hover,
.c-pagination .page:focus-visible,
.c-pagination .c-pagination__page:hover,
.c-pagination .c-pagination__page:focus-visible {
  border: 1px solid #0aa5f2;
  color: #0aa5f2;
}
.c-pagination .previouspostslink,
.c-pagination .nextpostslink,
.c-pagination .c-pagination__prev,
.c-pagination .c-pagination__next {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 48px;
  height: 32px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-inline: 8px;
  color: #0aa5f2;
  background: #fff;
  border: 1px solid #dfe4eb;
  border-radius: 16px;
  cursor: pointer;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-pagination .previouspostslink::after,
.c-pagination .nextpostslink::after,
.c-pagination .c-pagination__prev::after,
.c-pagination .c-pagination__next::after {
  content: "";
  position: relative;
  z-index: 1;
  width: 1.6rem;
  aspect-ratio: 1/1;
  background-color: currentcolor;
  -webkit-mask: center/contain no-repeat;
          mask: center/contain no-repeat;
}
.c-pagination .previouspostslink:hover:not(:disabled, .disabled), .c-pagination .previouspostslink:focus-visible:not(:disabled, .disabled),
.c-pagination .nextpostslink:hover:not(:disabled, .disabled),
.c-pagination .nextpostslink:focus-visible:not(:disabled, .disabled),
.c-pagination .c-pagination__prev:hover:not(:disabled, .disabled),
.c-pagination .c-pagination__prev:focus-visible:not(:disabled, .disabled),
.c-pagination .c-pagination__next:hover:not(:disabled, .disabled),
.c-pagination .c-pagination__next:focus-visible:not(:disabled, .disabled) {
  border-color: #0aa5f2;
}
.c-pagination .previouspostslink:disabled, .c-pagination .previouspostslink.disabled,
.c-pagination .nextpostslink:disabled,
.c-pagination .nextpostslink.disabled,
.c-pagination .c-pagination__prev:disabled,
.c-pagination .c-pagination__prev.disabled,
.c-pagination .c-pagination__next:disabled,
.c-pagination .c-pagination__next.disabled {
  color: #b3b3b3;
  cursor: not-allowed;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .c-pagination .previouspostslink,
  .c-pagination .nextpostslink {
    display: none;
  }
}
.c-pagination .previouspostslink::after,
.c-pagination .c-pagination__prev::after {
  -webkit-mask-image: url("../public/img/common/arrow-left.svg");
          mask-image: url("../public/img/common/arrow-left.svg");
}
.c-pagination .nextpostslink::after,
.c-pagination .c-pagination__next::after {
  -webkit-mask-image: url("../public/img/common/arrow-right.svg");
          mask-image: url("../public/img/common/arrow-right.svg");
}
.c-pagination--slider {
  gap: 2.4rem;
}
.c-pagination--slider .c-pagination__prev,
.c-pagination--slider .c-pagination__next {
  margin-inline: 0;
}
.c-pagination--slider .c-pagination__prev svg,
.c-pagination--slider .c-pagination__next svg {
  display: none;
}
.c-pagination--slider .c-pagination__pages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
}

.c-post-pager {
  padding-block: 2.4rem;
  border-top: 1px solid #dfe4eb;
}
.c-post-pager__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .c-post-pager__row {
    gap: 2.4rem 1.6rem;
  }
}
.c-post-pager__btn {
  min-width: 0;
  font-size: 1.6rem;
  font-family: inherit;
}
.c-post-pager__btn--index .btn-arrow {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-post-pager__btn--index {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.c-post-pager__btn--prev {
  padding: 0 24px 0 16px;
}

.c-form__wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 64px;
}
@media screen and (max-width: 767px) {
  .c-form__wrap {
    gap: 40px;
  }
}
.c-form__notice {
  width: 100%;
  padding: 16px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ecf4fa;
  border-radius: 16px;
}
@media screen and (max-width: 767px) {
  .c-form__notice {
    padding: 16px;
  }
}
.c-form__notice p {
  font: 300 1.6rem/2 "Hiragino-Kaku-Gothic-ProN-W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "游ゴシック体", "Hiragino Sans", "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
  color: #222;
}
@media screen and (max-width: 767px) {
  .c-form__notice p {
    font-size: 1.4rem;
  }
}
.c-form__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .c-form__list {
    gap: 24px;
  }
}
.c-form__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.c-form__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.c-form__head--sub {
  gap: 8px;
}
.c-form__head--sub .c-form__label {
  font-weight: 300;
}
.c-form__head--sub .c-form__note {
  font-size: 1.4rem;
  line-height: 2;
}
.c-form__badge {
  padding: 2px 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font: 600 1.2rem/1.5 "Hiragino-Kaku-Gothic-ProN-W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "游ゴシック体", "Hiragino Sans", "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: #fff;
  background: #0aa5f2;
  border-radius: 20px;
}
.c-form__badge--optional {
  color: #5a7c96;
  background: #d1e1ed;
}
.c-form__label {
  font: 600 1.6rem/1.5 "Hiragino-Kaku-Gothic-ProN-W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "游ゴシック体", "Hiragino Sans", "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
  color: #222;
}
.c-form__note {
  font: 300 1.2rem/1.5 "Hiragino-Kaku-Gothic-ProN-W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "游ゴシック体", "Hiragino Sans", "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
  color: #222;
}
.c-form__body {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.c-form__group {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.c-form__input {
  width: 100%;
  padding: 12px 16px;
  font: 300 1.6rem/1.5 "Hiragino-Kaku-Gothic-ProN-W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "游ゴシック体", "Hiragino Sans", "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
  color: #222;
  background: #fff;
  border: 1px solid #e9edf2;
  border-radius: 8px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.c-form__input::-webkit-input-placeholder {
  color: #b3b3b3;
}
.c-form__input::-moz-placeholder {
  color: #b3b3b3;
}
.c-form__input:-ms-input-placeholder {
  color: #b3b3b3;
}
.c-form__input::-ms-input-placeholder {
  color: #b3b3b3;
}
.c-form__input::placeholder {
  color: #b3b3b3;
}
.c-form__input::-webkit-file-upload-button {
  padding: 6px 12px;
  margin-right: 12px;
  font: 300 1.4rem/1.5 "Hiragino-Kaku-Gothic-ProN-W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "游ゴシック体", "Hiragino Sans", "Noto Sans JP", sans-serif;
  color: #222;
  background: #fff;
  border: 1px solid #dfe4eb;
  border-radius: 8px;
  cursor: pointer;
}
.c-form__input::file-selector-button {
  padding: 6px 12px;
  margin-right: 12px;
  font: 300 1.4rem/1.5 "Hiragino-Kaku-Gothic-ProN-W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "游ゴシック体", "Hiragino Sans", "Noto Sans JP", sans-serif;
  color: #222;
  background: #fff;
  border: 1px solid #dfe4eb;
  border-radius: 8px;
  cursor: pointer;
}
.c-form__value {
  width: 100%;
  font: 300 1.6rem/1.5 "Hiragino-Kaku-Gothic-ProN-W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "游ゴシック体", "Hiragino Sans", "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
  white-space: pre-wrap;
  color: #222;
}
.c-form__textarea {
  width: 100%;
  min-height: 184px;
  padding: 12px 16px;
  font: 300 1.6rem/1.5 "Hiragino-Kaku-Gothic-ProN-W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "游ゴシック体", "Hiragino Sans", "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
  color: #222;
  background: #fff;
  border: 1px solid #e9edf2;
  border-radius: 8px;
  resize: vertical;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media screen and (max-width: 767px) {
  .c-form__textarea {
    min-height: 140px;
  }
}
.c-form__textarea::-webkit-input-placeholder {
  color: #b3b3b3;
}
.c-form__textarea::-moz-placeholder {
  color: #b3b3b3;
}
.c-form__textarea:-ms-input-placeholder {
  color: #b3b3b3;
}
.c-form__textarea::-ms-input-placeholder {
  color: #b3b3b3;
}
.c-form__textarea::placeholder {
  color: #b3b3b3;
}
.c-form__choice-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px 40px;
}
@media screen and (max-width: 767px) {
  .c-form__choice-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
.c-form__choice-list label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  position: relative;
  cursor: pointer;
}
.c-form__choice-label,
.c-form span.wpcf7-list-item-label {
  font: 300 1.6rem/2 "Hiragino-Kaku-Gothic-ProN-W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "游ゴシック体", "Hiragino Sans", "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
  color: #222;
}
.c-form__file {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .c-form__file {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.c-form__file span.wpcf7-not-valid-tip {
  width: 100%;
}
.c-form__file-btn {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  min-width: 0;
  padding: 12px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font: 300 1.6rem/1.5 "Hiragino-Kaku-Gothic-ProN-W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "游ゴシック体", "Hiragino Sans", "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
  text-align: center;
  color: #222;
  background: #fff;
  border: 1px solid #e9edf2;
  border-radius: 8px;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  cursor: pointer;
}
.c-form__file-btn:hover {
  opacity: 0.7;
}
.c-form__file-name {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  min-width: 0;
  font: 300 1.6rem/1.5 "Hiragino-Kaku-Gothic-ProN-W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "游ゴシック体", "Hiragino Sans", "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
  color: #222;
  background: #fff;
  border-radius: 8px;
}
.c-form__postal {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.c-form__postal-mark {
  font: 300 1.6rem/1.5 "Hiragino-Kaku-Gothic-ProN-W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "游ゴシック体", "Hiragino Sans", "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
  color: #222;
}
.c-form__postal-btn {
  width: auto;
  padding: 12px 16px;
  font: 300 1.6rem/1.5 "Hiragino-Kaku-Gothic-ProN-W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "游ゴシック体", "Hiragino Sans", "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
  text-align: center;
  white-space: nowrap;
  color: #0aa5f2;
  background: #fff;
  border: 1px solid #0aa5f2;
  border-radius: 8px;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  cursor: pointer;
}
.c-form__postal-btn:hover {
  opacity: 0.7;
}
.c-form__privacy {
  width: 100%;
}
.c-form__privacy-link {
  margin-inline: 0.25em;
  color: #0aa5f2;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.c-form__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 64px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-form__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}
.c-form__actions .wpcf7-spinner {
  position: absolute;
  left: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-form__back {
  height: 64px;
  padding: 16px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font: 600 1.6rem/1.5 "Hiragino-Kaku-Gothic-ProN-W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "游ゴシック体", "Hiragino Sans", "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
  color: #afafaf;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: none;
  border: none;
  cursor: pointer;
}
.c-form__back:hover {
  color: #0aa5f2;
}
.c-form__step-list {
  counter-reset: flow;
  list-style-type: none;
}
.c-form__step-item {
  counter-increment: flow;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.c-form__step-item::after {
  content: "";
  display: block;
  width: 2rem;
  aspect-ratio: 1/1;
  background: url("../public/img/common/flow-down.svg") center/contain no-repeat;
}
.c-form__step-item:last-child::after {
  display: none;
}
.c-form__step-link {
  gap: 1.6rem;
}
.c-form__step-link::before {
  content: counter(flow, decimal-leading-zero);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 2rem;
  text-align: center;
}
.c-form__step-link:hover {
  color: #222;
}
.c-form__step-link.is-current:hover {
  color: #0aa5f2;
}
.c-form__complete {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .c-form__complete {
    gap: 32px;
  }
}
.c-form__complete-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  color: #222;
}
@media screen and (max-width: 767px) {
  .c-form__complete-head {
    gap: 16px;
  }
}
.c-form__complete-title {
  min-width: 0;
  font: 300 2.4rem/1.5 "Hiragino-Kaku-Gothic-ProN-W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "游ゴシック体", "Hiragino Sans", "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
  word-break: break-word;
}
@media screen and (max-width: 767px) {
  .c-form__complete-title {
    font-size: 2rem;
  }
}
.c-form__complete-text {
  min-width: 0;
  font: 300 1.6rem/2 "Hiragino-Kaku-Gothic-ProN-W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "游ゴシック体", "Hiragino Sans", "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
  word-break: break-word;
}
@media screen and (max-width: 767px) {
  .c-form__complete-text {
    font-size: 1.4rem;
  }
}
.c-form__complete-actions {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-form span.btn__label {
  font-size: 1.6rem;
}
.c-form__btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  color: inherit;
  border: none;
  font-size: 1.6rem;
  line-height: 1.5em;
  letter-spacing: 0.04em;
  height: 100%;
}
.c-form__error {
  color: #dc3232;
  font-size: 1em;
  font-weight: normal;
  display: block;
}
.c-form__error:empty {
  display: none;
}

.pbnr {
  width: 100%;
  padding-block: 20rem 12rem;
  border-bottom: 1px solid #dfe4eb;
  position: relative;
}
@media screen and (max-width: 767px) {
  .pbnr {
    padding-block: 12rem 6.4rem;
  }
}
.pbnr__deco {
  width: 80%;
  max-width: 1080px;
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(8.3333333333%, -14.1955835962%);
          transform: translate(8.3333333333%, -14.1955835962%);
  pointer-events: none;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .pbnr__deco {
    width: 354px;
    top: 10px;
    -webkit-transform: translateX(8.4745762712%);
            transform: translateX(8.4745762712%);
  }
}
.pbnr__ray {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  opacity: 0;
  -webkit-animation: pbnr-ray-draw 2s cubic-bezier(0, 0, 0.2, 1) forwards, pbnr-ray-fade 2s linear forwards;
          animation: pbnr-ray-draw 2s cubic-bezier(0, 0, 0.2, 1) forwards, pbnr-ray-fade 2s linear forwards;
}
.pbnr__ray--02 {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.pbnr__ray--03 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.pbnr__ray--04 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.pbnr__content {
  position: relative;
  z-index: 1;
}
.pbnr__bread {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0 1.4rem;
  font-size: 1.2rem;
  white-space: nowrap;
  overflow: hidden;
}
.pbnr__bread-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.4rem;
}
.pbnr__bread-link::after {
  content: "";
  display: inline-block;
  width: 4px;
  aspect-ratio: 4/7;
  background: url("../public/img/common/caret-right.svg") center/contain no-repeat;
}
.pbnr__bread-current {
  text-decoration: underline;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pbnr__title {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .pbnr__title {
    margin-top: 4rem;
  }
}

.cbnr {
  margin: 40px;
  width: calc(100% - 40px - 40px);
  height: 42.4rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#222), to(#153569));
  background: linear-gradient(to bottom, #222 0%, #153569 100%);
  border-radius: 24px;
  padding-block: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .cbnr {
    height: 44.8rem;
    margin: 16px;
    width: calc(100% - 16px - 16px);
    padding-inline: 0;
  }
}
.cbnr__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
.cbnr__text {
  color: #fff;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .cbnr__text {
    text-align: justify;
  }
}
.cbnr--entry {
  background: -webkit-gradient(linear, left top, left bottom, from(#14665f), to(#222));
  background: linear-gradient(to bottom, #14665f 0%, #222 100%);
}

.menu a {
  color: inherit;
  text-decoration: none;
}
.menu a:focus-visible {
  outline: 2px solid #0aa5f2;
  outline-offset: 4px;
}
.menu__main, .menu__column, .menu__submenu-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.menu__link, .menu__submenu-link {
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .menu__link:hover, .menu__submenu-link:hover {
    color: #0aa5f2;
  }
}
.menu__link-en, .menu__link-jp {
  display: block;
}
.menu__toggle {
  display: none;
}
.menu--header {
  height: 100%;
}
.menu--header .menu__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(2.4rem, 2.5vw, 4.8rem);
  height: 100%;
}
.menu--header .menu__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.menu--header .menu__item:hover .menu__submenu, .menu--header .menu__item:focus-within .menu__submenu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.menu--header .menu__item--contact .menu__link {
  position: relative;
  z-index: 0;
  isolation: isolate;
  overflow: hidden;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 14.8rem;
  height: 4.8rem;
  padding-inline: 2.4rem;
  color: #fff;
  border-radius: 999px;
  -webkit-transition: color 0.2s ease, -webkit-transform 0.2s ease;
  transition: color 0.2s ease, -webkit-transform 0.2s ease;
  transition: color 0.2s ease, transform 0.2s ease;
  transition: color 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.menu--header .menu__item--contact .menu__link::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 200%;
  background: -webkit-gradient(linear, left top, right top, from(#0aa5f2), color-stop(50%, #25e6bf), to(#15c46c));
  background: linear-gradient(to right, #0aa5f2 0%, #25e6bf 50%, #15c46c 100%);
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  will-change: transform;
}
@media screen and (max-width: 767px) {
  .menu--header .menu__item--contact .menu__link::before {
    display: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .menu--header .menu__item--contact .menu__link:hover {
    color: #fff;
  }
  .menu--header .menu__item--contact .menu__link:hover::before {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.menu--header .menu__item--contact .menu__link-jp {
  display: block;
}
.menu--header .menu__item--has-children .menu__link {
  position: relative;
}
.menu--header .menu__item--has-children .menu__link::after {
  content: "";
  position: absolute;
  bottom: 1.7rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 8px;
  aspect-ratio: 8/5;
  background: currentcolor;
  -webkit-mask: url("../public/img/common/caret-down.svg") center/contain no-repeat;
          mask: url("../public/img/common/caret-down.svg") center/contain no-repeat;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.menu--header .menu__label,
.menu--header .menu__link {
  height: 100%;
}
.menu--header .menu__link {
  display: grid;
  place-items: center;
  font: 700 1.6rem/1 "Montserrat", sans-serif;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.menu--header .menu__link-jp {
  display: none;
}
.menu--header .menu__submenu {
  position: absolute;
  top: calc(100% + 1.6rem);
  left: 50%;
  z-index: 20;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 18rem;
  padding: 1.2rem 0;
  background: #fff;
  border-radius: 0.8rem;
  -webkit-box-shadow: 0 0.5rem 2rem rgba(10, 165, 242, 0.1);
          box-shadow: 0 0.5rem 2rem rgba(10, 165, 242, 0.1);
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateX(-50%) translateY(0.8rem);
          transform: translateX(-50%) translateY(0.8rem);
  pointer-events: none;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
}
.menu--header .menu__submenu::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 1.6rem;
}
.menu--header .menu__submenu-link {
  display: block;
  padding: 1.2rem 2.4rem;
  font: 400 1.4rem/1.5 "Hiragino-Kaku-Gothic-ProN-W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "游ゴシック体", "Hiragino Sans", "Noto Sans JP", sans-serif;
  white-space: nowrap;
}
.menu--drawer {
  width: min(100%, 1200px);
  margin-inline: auto;
}
.menu--drawer .menu__drawer-desktop {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(4rem, 8vw, 12rem);
}
.menu--drawer .menu__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
}
.menu--drawer .menu__item--drawer {
  display: block;
}
.menu--drawer .menu__link {
  display: inline-block;
  font: 700 1.6rem/1.4 "Montserrat", sans-serif;
  letter-spacing: 0.04em;
}
.menu--drawer .menu__link-jp {
  display: none;
}
.menu--drawer .menu__submenu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem;
  margin-top: 2rem;
  padding-left: 2.4rem;
  border-left: 1px solid #dfe4eb;
}
.menu--drawer .menu__submenu-link {
  font: 400 1.6rem/1.5 "Hiragino-Kaku-Gothic-ProN-W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "游ゴシック体", "Hiragino Sans", "Noto Sans JP", sans-serif;
}
.menu--footer .menu__footer-desktop {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4rem;
}
@media screen and (max-width: 1280px) {
  .menu--footer .menu__footer-desktop {
    gap: 2.4rem;
  }
}
.menu--footer .menu__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
}
.menu--footer .menu__link {
  display: inline-block;
  font: 400 1.6rem/1.5 "Hiragino-Kaku-Gothic-ProN-W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "游ゴシック体", "Hiragino Sans", "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
}
.menu--footer .menu__submenu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.2rem;
  margin-top: 1.6rem;
  padding-left: 2.4rem;
  border-left: 1px solid #dfe4eb;
}
.menu--footer .menu__submenu-link {
  font: 400 1.4rem/1.5 "Hiragino-Kaku-Gothic-ProN-W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "游ゴシック体", "Hiragino Sans", "Noto Sans JP", sans-serif;
}
.menu__main--mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .menu--drawer, .menu--footer {
    width: 100%;
  }
  .menu--drawer .menu__drawer-desktop,
  .menu--drawer .menu__footer-desktop, .menu--footer .menu__drawer-desktop,
  .menu--footer .menu__footer-desktop {
    display: none;
  }
  .menu--drawer .menu__main--mobile, .menu--footer .menu__main--mobile {
    display: block;
  }
  .menu--drawer .menu__item--mobile, .menu--footer .menu__item--mobile {
    border-top: 1px solid #dfe4eb;
  }
  .menu--drawer .menu__item--mobile:last-child, .menu--footer .menu__item--mobile:last-child {
    border-bottom: 1px solid #dfe4eb;
  }
  .menu--drawer .menu__label, .menu--footer .menu__label {
    min-height: 6.4rem;
  }
  .menu--drawer .menu__link, .menu--footer .menu__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 6.4rem;
    padding-block: 1.6rem;
    font: 400 1.6rem/1.5 "Hiragino-Kaku-Gothic-ProN-W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "游ゴシック体", "Hiragino Sans", "Noto Sans JP", sans-serif;
    letter-spacing: 0.04em;
  }
  .menu--drawer .menu__toggle, .menu--footer .menu__toggle {
    position: relative;
    display: block;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 4.8rem;
            flex: 0 0 4.8rem;
    width: 4.8rem;
    height: 4.8rem;
    margin-left: auto;
    padding: 0;
    color: #222;
    background: transparent;
    border: 0;
    cursor: pointer;
  }
  .menu--drawer .menu__toggle.is-open .menu__toggle-icon::after, .menu--footer .menu__toggle.is-open .menu__toggle-icon::after {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  .menu--drawer .menu__toggle-icon, .menu--footer .menu__toggle-icon {
    position: absolute;
    inset: 0;
    width: 2.4rem;
    height: 2.4rem;
    margin: auto;
  }
  .menu--drawer .menu__toggle-icon::before, .menu--drawer .menu__toggle-icon::after, .menu--footer .menu__toggle-icon::before, .menu--footer .menu__toggle-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.6rem;
    height: 0.2rem;
    background: currentcolor;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .menu--drawer .menu__toggle-icon::after, .menu--footer .menu__toggle-icon::after {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
            transform: translate(-50%, -50%) rotate(90deg);
    -webkit-transition: -webkit-transform 0.2s ease;
    transition: -webkit-transform 0.2s ease;
    transition: transform 0.2s ease;
    transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  }
  .menu--drawer .menu__submenu, .menu--footer .menu__submenu {
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: max-height 0.35s ease, opacity 0.25s ease, visibility 0s linear 0.35s;
    transition: max-height 0.35s ease, opacity 0.25s ease, visibility 0s linear 0.35s;
  }
  .menu--drawer .menu__submenu.is-open, .menu--footer .menu__submenu.is-open {
    visibility: visible;
    opacity: 1;
    -webkit-transition: max-height 0.35s ease, opacity 0.25s ease, visibility 0s linear;
    transition: max-height 0.35s ease, opacity 0.25s ease, visibility 0s linear;
  }
  .menu--drawer .menu__submenu-list, .menu--footer .menu__submenu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.4rem;
    margin: 0;
    padding: 1.6rem 0 3.6rem 4rem;
    border-left: 1px solid #dfe4eb;
  }
  .menu--drawer .menu__submenu-link, .menu--footer .menu__submenu-link {
    color: #222;
    font: 400 1.4rem/1.5 "Hiragino-Kaku-Gothic-ProN-W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "游ゴシック体", "Hiragino Sans", "Noto Sans JP", sans-serif;
  }
}

.header {
  position: fixed;
  top: 1.5rem;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding-inline: 40px;
  pointer-events: none;
}
@media screen and (max-width: 1080px) {
  .header {
    top: 1.6rem;
    padding-inline: 24px;
  }
}
@media screen and (max-width: 767px) {
  .header {
    padding-inline: 16px;
  }
}
.header__inner {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.4rem;
  width: min(100%, 1200px);
  height: 8rem;
  margin-inline: auto;
  padding-inline: 3.2rem 1.6rem;
  background: #fff;
  border-radius: 999px;
  -webkit-box-shadow: 0 0.5rem 2rem rgba(10, 165, 242, 0.1);
          box-shadow: 0 0.5rem 2rem rgba(10, 165, 242, 0.1);
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .header__inner {
    height: 6.4rem;
    padding-inline: 1.6rem;
  }
}
.header__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  height: 5.6rem;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .header__logo {
    height: 3.55rem;
  }
}
.header__logo-link, .header__logo-img {
  display: block;
  height: 100%;
}
.header__desktop {
  height: 100%;
  margin-left: auto;
}
@media screen and (max-width: 1080px) {
  .header__desktop {
    display: none;
  }
}
.header__hamburger {
  display: none;
}
@media screen and (max-width: 1080px) {
  .header__hamburger {
    position: relative;
    z-index: 3;
    display: grid;
    gap: 0.6rem;
    width: 2.8rem;
    margin-left: auto;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
  }
}
.header__hamburger-line {
  display: block;
  width: 2.8rem;
  height: 0.3rem;
  background: #222;
  border-radius: 999px;
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transition: transform 0.25s ease, opacity 0.25s ease, -webkit-transform 0.25s ease;
}
.header__drawer {
  position: fixed;
  inset: 0;
  z-index: 1;
  display: none;
  width: 100%;
  height: 100dvh;
  padding: 13.6rem 40px 6.4rem;
  overflow-y: auto;
  background: #fff;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(-0.8rem);
          transform: translateY(-0.8rem);
  pointer-events: none;
  -webkit-transition: opacity 0.25s ease, visibility 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, visibility 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
}
@media screen and (max-width: 1080px) {
  .header__drawer {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .header__drawer {
    padding: 10.4rem 24px 4rem;
  }
}
.header__drawer-inner {
  width: 100%;
  min-height: 100%;
}
.header.is-menu-open {
  pointer-events: auto;
}
.header.is-menu-open .header__drawer {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
}
.header.is-menu-open .header__hamburger-line:nth-child(1) {
  -webkit-transform: translateY(0.9rem) rotate(45deg);
          transform: translateY(0.9rem) rotate(45deg);
}
.header.is-menu-open .header__hamburger-line:nth-child(2) {
  opacity: 0;
}
.header.is-menu-open .header__hamburger-line:nth-child(3) {
  -webkit-transform: translateY(-0.9rem) rotate(-45deg);
          transform: translateY(-0.9rem) rotate(-45deg);
}

.footer {
  padding-block: 8rem;
  color: #222;
  font: 400 1.6rem/1.5 "Hiragino-Kaku-Gothic-ProN-W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "游ゴシック体", "Hiragino Sans", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-block: 4rem 8rem;
  }
}
.footer__content {
  display: grid;
  grid-template: "company navigation" auto "company copyright" 1fr/minmax(28rem, 1fr) auto;
  gap: 4rem 8rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: min(100% - 80px, 1720px);
  margin-inline: auto;
}
@media screen and (max-width: 1280px) {
  .footer__content {
    gap: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .footer__content {
    grid-template: "navigation" auto "company" auto "copyright" auto/1fr;
    width: 100%;
    padding-inline: 24px;
  }
}
.footer__company {
  grid-area: company;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
}
.footer__company-name, .footer__company-info, .footer__company-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem;
}
.footer__company-name {
  font-weight: 600;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .footer__company-name {
    font-size: 1.8rem;
  }
}
.footer__logo {
  display: block;
  width: 18.6rem;
  height: auto;
}
.footer__info {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.6rem;
}
.footer__info dt {
  font-weight: 600;
}
.footer__sns {
  color: #222;
  font-weight: 600;
  text-decoration: none;
}
.footer__navigation {
  grid-area: navigation;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
  max-width: 50rem;
}
.footer__menu-misc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 4rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .footer__menu-misc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 1.6rem;
  }
}
.footer__copyright {
  grid-area: copyright;
  align-self: end;
  color: #808080;
  font: 500 1.2rem/1.5 "Montserrat", sans-serif;
  letter-spacing: 0.04em;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: 1rem;
    text-align: center;
  }
}

.top {
  overflow: hidden;
}

.top-mv {
  background: url("../public/img/top/mv-bg.webp") bottom center/cover no-repeat;
}
.top-mv__container {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 1080px;
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-inline: 4%;
  margin-inline: auto;
  width: 100%;
  max-width: calc(1428px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .top-mv__container {
    max-width: 100%;
    padding-inline: 16px;
  }
}
@media screen and (max-width: 1280px) {
  .top-mv__container {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .top-mv__container {
    min-height: initial;
    max-height: 671px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.4rem;
    padding-bottom: 4rem;
    padding-inline: 0;
  }
}
.top-mv__head {
  padding: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 11%;
}
@media screen and (max-height: 700px) {
  .top-mv__head {
    gap: 5%;
  }
}
@media screen and (max-width: 767px) {
  .top-mv__head {
    width: 100%;
    padding-top: 0;
    padding-inline: 16px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: initial;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.top-mv__scroll {
  color: #0aa5f2;
  gap: 8px;
  justify-self: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.top-mv__scroll::after {
  content: "";
  display: block;
  width: 2px;
  height: 9.8rem;
  background: currentcolor;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-animation: scroll-line 2s ease-in-out infinite;
          animation: scroll-line 2s ease-in-out infinite;
}
@media screen and (max-height: 700px) {
  .top-mv__scroll::after {
    height: 6.8rem;
  }
}
@media screen and (max-width: 767px) {
  .top-mv__scroll::after {
    border-width: 1px;
  }
}
.top-mv__scroll-text {
  font: 500 1.6rem/1.5 "Montserrat", sans-serif;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
}
@media screen and (max-width: 767px) {
  .top-mv__scroll-text {
    font-size: 1.2rem;
  }
}
.top-mv__content {
  width: 100%;
  height: 100%;
  overflow: hidden;
  -ms-flex-item-align: center;
      align-self: center;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .top-mv__content {
    width: 100%;
    height: initial;
    aspect-ratio: 1/1;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}
.top-mv__visual {
  display: block;
  width: 104%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .top-mv__visual {
    -webkit-transform: translateX(8%);
            transform: translateX(8%);
  }
}
.top-mv__title {
  gap: 3.4rem;
}
.top-mv__qt {
  width: 100%;
  max-width: 443px;
  height: auto;
  aspect-ratio: 443/212;
}
@media screen and (max-width: 767px) {
  .top-mv__qt {
    max-width: 299px;
  }
}
.top-mv__ray {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  opacity: 0;
  -webkit-animation: mv-line-draw 2.5s cubic-bezier(0, 0, 0.2, 1) forwards, mv-line-fade 0.4s ease-out forwards;
          animation: mv-line-draw 2.5s cubic-bezier(0, 0, 0.2, 1) forwards, mv-line-fade 0.4s ease-out forwards;
}
.top-mv__ray--01 {
  stroke-width: 270;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.top-mv__ray--02 {
  stroke-width: 180;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.top-mv__ray--03 {
  stroke-width: 180;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.top-mv__ray--04 {
  stroke-width: 180;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.top-rsn {
  padding-block: 12rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .top-rsn {
    padding-block: 6rem;
  }
}
.top-rsn__deco--01 {
  top: 0;
  right: 0;
  -webkit-transform: translate(5.2083333333%, 4.7846889952%);
          transform: translate(5.2083333333%, 4.7846889952%);
}
@media screen and (max-width: 767px) {
  .top-rsn__deco--01 {
    -webkit-transform: translate(16%, -19.1082802548%);
            transform: translate(16%, -19.1082802548%);
  }
}
.top-rsn__deco--02 {
  bottom: 0;
  left: 0;
  -webkit-transform: translate(4.4270833333%, 12.6126126126%);
          transform: translate(4.4270833333%, 12.6126126126%);
}
@media screen and (max-width: 767px) {
  .top-rsn__deco--02 {
    -webkit-transform: translate(-2.6666666667%, 13.309352518%);
            transform: translate(-2.6666666667%, 13.309352518%);
  }
}
.top-rsn__head, .top-rsn__content {
  max-width: 880px;
}
.top-rsn__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
.top-rsn__hl {
  font-weight: 600;
  font-size: 3.2rem;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .top-rsn__hl {
    font-size: 2.4rem;
  }
}
.top-rsn__text {
  font-size: 1.8rem;
  line-height: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6.4rem;
}

.top-sol {
  background: #ecf4fa;
  padding-block: 12rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .top-sol {
    padding-block: 6rem;
    gap: 6.4rem;
  }
}
.top-sol__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6.4rem;
}
.top-sol__list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem;
}
@media screen and (min-width: 1281px) and (max-width: 1366px) {
  .top-sol__list {
    gap: 3.2rem;
  }
}
@media screen and (min-width: 1153px) and (max-width: 1280px) {
  .top-sol__list {
    gap: 2.4rem;
  }
}
@media screen and (max-width: 980px) {
  .top-sol__list {
    max-width: 70rem;
    margin-inline: auto;
    grid-template-columns: 1fr;
  }
}
.top-sol__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 1152px) {
  .top-sol__item {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .top-sol__item {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1281px) and (max-width: 1366px) {
  .top-sol__item .card--business {
    padding: 3.2rem;
    gap: 3.2rem;
  }
}
@media screen and (min-width: 1153px) and (max-width: 1280px) {
  .top-sol__item .card--business {
    padding: 2.4rem;
    gap: 2.4rem;
  }
}
@media screen and (max-width: 1152px) {
  .top-sol__item .card--business {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 1152px) {
  .top-sol__item .card__image {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 3/4;
  }
}
@media screen and (max-width: 1152px) {
  .top-sol__item .card__text {
    height: initial;
  }
}

.top-ach {
  position: relative;
  z-index: 1;
  padding-block: 8rem 4rem;
  background: url("../public/img/top/ach-bg.jpg") top/cover no-repeat;
  background-attachment: fixed;
  height: 100vh;
  min-height: 96rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .top-ach {
    height: initial;
    min-height: 100vh;
    padding-block: 31.6rem 21.5rem;
  }
}
.top-ach__content {
  font-size: 1.8rem;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
.top-ach__gallery {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.top-ach__image {
  width: 25%;
  background: center/cover no-repeat;
  position: absolute;
  pointer-events: initial;
  will-change: transform;
}
@media screen and (max-width: 1366px) {
  .top-ach__image {
    width: 20%;
  }
}
@media screen and (max-width: 767px) {
  .top-ach__image {
    width: 64%;
    max-width: 25rem;
  }
}
.top-ach__image--left {
  aspect-ratio: 48/36;
  background-image: url("../public/img/top/ach-img1.jpg");
  top: 50%;
  left: 4rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .top-ach__image--left {
    aspect-ratio: 24/18;
    top: 9.6rem;
    left: 0;
    -webkit-transform: none;
            transform: none;
  }
}
.top-ach__image--right {
  width: 12.5%;
  aspect-ratio: 24/32;
  background-image: url("../public/img/top/ach-img2.jpg");
  top: 8.33%;
  right: 8.33%;
}
@media screen and (max-width: 767px) {
  .top-ach__image--right {
    width: 32%;
    aspect-ratio: 12/16;
    right: 0;
    top: 4rem;
  }
}
.top-ach__image--bottom {
  aspect-ratio: 48/27;
  background-image: url("../public/img/top/ach-img3.jpg");
  bottom: 4rem;
  right: 4rem;
}
@media screen and (max-width: 767px) {
  .top-ach__image--bottom {
    aspect-ratio: 240/135;
    right: unset;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.top-news {
  padding-block: 12rem;
}
@media screen and (max-width: 767px) {
  .top-news {
    padding-block: 6rem;
  }
}
.top-news__deco--01 {
  top: 0;
  left: 0;
  -webkit-transform: translate(5.2083333333%, -15.1515151515%);
          transform: translate(5.2083333333%, -15.1515151515%);
}
@media screen and (max-width: 767px) {
  .top-news__deco--01 {
    right: 0;
    left: unset;
    -webkit-transform: translate(16%, -19.1082802548%);
            transform: translate(16%, -19.1082802548%);
  }
}
.top-news__deco--02 {
  bottom: 0;
  right: 0;
  -webkit-transform: translate(-3.3854166667%, 29.7297297297%);
          transform: translate(-3.3854166667%, 29.7297297297%);
}
@media screen and (max-width: 767px) {
  .top-news__deco--02 {
    left: 0;
    right: unset;
    -webkit-transform: translate(-2.6666666667%, 13.309352518%);
            transform: translate(-2.6666666667%, 13.309352518%);
  }
}
.top-news__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 867px);
  gap: 4rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top-news__inner {
    grid-template-columns: 1fr;
  }
}
.top-news__content {
  max-width: 867px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
.top-news__button {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.top-links {
  margin-top: -12rem;
  padding-block: 12rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-links {
    margin-top: -6rem;
    padding-block: 6rem;
  }
}
.top-links__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.solutions__wrap {
  padding-block: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6.4rem;
}
@media screen and (max-width: 767px) {
  .solutions__wrap {
    padding-block: 4rem;
    gap: 4rem;
  }
}

.sol-archive__content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .sol-archive__content {
    gap: 6.4rem;
  }
}

.sol-overview {
  position: relative;
  z-index: 2;
}
.sol-overview__layout {
  max-width: calc(1200px - 16rem);
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 767px) {
  .sol-feat {
    padding-block: 8rem;
  }
}
.sol-feat__deco {
  top: 0;
  left: 0;
  -webkit-transform: translate(-35.3333333333%, -28.0701754386%);
          transform: translate(-35.3333333333%, -28.0701754386%);
}
@media screen and (max-width: 767px) {
  .sol-feat__deco {
    -webkit-transform: translate(-3.2%, -35.0318471338%);
            transform: translate(-3.2%, -35.0318471338%);
  }
}
.sol-feat__list {
  list-style: none;
  counter-reset: feat;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
@media screen and (max-width: 980px) {
  .sol-feat__list {
    max-width: 58rem;
    margin-inline: auto;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .sol-feat__list {
    gap: 3.2rem;
  }
}
.sol-feat__item {
  counter-increment: feat;
  padding: 8rem 4rem 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #ecf4fa;
  border-radius: 2.4rem;
}
@media screen and (max-width: 767px) {
  .sol-feat__item {
    padding: 4.8rem 2.4rem 2.4rem;
  }
}
.sol-feat__item::before {
  content: counter(feat, decimal-leading-zero);
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  font: 500 12rem/1 "Montserrat", sans-serif;
  color: #fff;
  text-align: right;
  opacity: 0.8;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .sol-feat__item::before {
    top: 5px;
  }
}
.sol-feat__item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
  width: 100%;
}
.sol-feat__item-icon {
  width: 4.8rem;
  aspect-ratio: 1/1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.sol-feat__item-title {
  font: 600 2.4rem/1.5 "Hiragino-Kaku-Gothic-ProN-W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "游ゴシック体", "Hiragino Sans", "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
}
.sol-feat__item-desc {
  letter-spacing: 0.04em;
}

.sol-business {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6.4rem;
}
@media screen and (max-width: 767px) {
  .sol-business {
    gap: 4rem;
  }
}

.sol-concept {
  padding-block: 0;
  position: relative;
}
.sol-concept__pin {
  width: 100%;
  height: 100lvh;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.sol-concept__pin img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sol-concept__pin-tint {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  background: rgba(95, 176, 216, 0.7);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  pointer-events: none;
}
.sol-concept__panel {
  width: 100%;
  margin-top: -100lvh;
  padding-top: 100lvh;
  position: relative;
  z-index: 2;
  color: #fff;
}
.sol-concept__content {
  padding-top: 16rem;
  padding-bottom: 16rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8rem;
}
@media screen and (max-width: 767px) {
  .sol-concept__content {
    padding-top: 8rem;
    padding-bottom: 8rem;
    gap: 4rem;
  }
}
.sol-concept__heading {
  font: 600 4rem/1.5 "Hiragino-Kaku-Gothic-ProN-W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "游ゴシック体", "Hiragino Sans", "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sol-concept__heading {
    font-size: 2.4rem;
  }
}
.sol-concept__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 24rem);
  gap: 8rem;
}
@media screen and (max-width: 980px) {
  .sol-concept__list {
    grid-template-columns: repeat(2, 24rem);
  }
}
@media screen and (max-width: 767px) {
  .sol-concept__list {
    width: 100%;
    max-width: 24rem;
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
}
.sol-concept__item {
  aspect-ratio: 1/1;
  padding: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font: 600 2rem/1.5 "Hiragino-Kaku-Gothic-ProN-W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "游ゴシック体", "Hiragino Sans", "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
  text-align: center;
  color: #0aa5f2;
  background: #fff;
  border-radius: 16px;
}
.sol-concept__marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.sol-concept__marquee-track {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2%;
  -webkit-animation: loop 20s linear infinite;
          animation: loop 20s linear infinite;
}
.sol-concept__marquee-line {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 106px;
}
.sol-concept__marquee-line img {
  width: 100%;
  height: auto;
  display: block;
}

.sol-role__flow {
  width: 100%;
  aspect-ratio: 1120/400;
  position: relative;
}
@media screen and (max-width: 980px) {
  .sol-role__flow {
    max-width: 450px;
    margin-inline: auto;
    aspect-ratio: 343/980;
  }
}
.sol-role__flow-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  display: block;
  position: absolute;
  inset: 0;
}
@media screen and (max-width: 980px) {
  .sol-role__flow-svg--pc {
    display: none;
  }
}
.sol-role__flow-svg--sp {
  display: none;
}
@media screen and (max-width: 980px) {
  .sol-role__flow-svg--sp {
    display: block;
  }
}
.sol-role__flow-circle {
  fill: #fff;
  stroke: #eee;
  stroke-width: 4;
}
.sol-role__flow-line {
  stroke: #eee;
  stroke-width: 4;
  stroke-linecap: round;
}
.sol-role__flow-light {
  fill: none;
  stroke: #00bfff;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 5 200;
  stroke-dashoffset: 5;
  -webkit-filter: drop-shadow(0 0 8px rgba(0, 191, 255, 0.8));
          filter: drop-shadow(0 0 8px rgba(0, 191, 255, 0.8));
  -webkit-animation: role-flow 6s linear infinite;
          animation: role-flow 6s linear infinite;
}
.sol-role__flow-content {
  width: 25%;
  container-type: inline-size;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 980px) {
  .sol-role__flow-content {
    width: 69.970845481%;
    left: 50%;
  }
}
.sol-role__flow-content--left {
  left: 12.5%;
}
@media screen and (max-width: 980px) {
  .sol-role__flow-content--left {
    left: 50%;
    top: 12.2448979592%;
  }
}
.sol-role__flow-content--right {
  left: 87.5%;
}
@media screen and (max-width: 980px) {
  .sol-role__flow-content--right {
    left: 50%;
    top: 87.7551020408%;
  }
}
.sol-role__flow-content--center {
  width: 35.7142857143%;
  left: 50%;
}
@media screen and (max-width: 980px) {
  .sol-role__flow-content--center {
    width: 99.1253644315%;
  }
}
.sol-role__flow-content--center .sol-role__flow-inner {
  padding-inline: 20cqw;
}
@media screen and (max-width: 980px) {
  .sol-role__flow-content--center .sol-role__flow-inner {
    padding-inline: 18.8235294118cqw;
  }
}
.sol-role__flow-content--center .sol-role__flow-title {
  font-size: clamp(2.8rem, 8cqw, 3.2rem);
}
@media screen and (max-width: 767px) {
  .sol-role__flow-content--center .sol-role__flow-title {
    font-size: clamp(2.4rem, 7.0588235294cqw, 3.2rem);
  }
}
.sol-role__flow-content--center .sol-role__flow-subtitle {
  font-size: 1.6rem;
  line-height: 2;
}
.sol-role__flow-content--center .sol-role__flow-text {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .sol-role__flow-content--center .sol-role__flow-text {
    font-size: 1.4rem;
  }
}
.sol-role__flow-inner {
  width: 100%;
  padding-inline: 17.8571428571cqw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.6rem;
  text-align: center;
  word-break: break-word;
}
@media screen and (max-width: 980px) {
  .sol-role__flow-inner {
    padding-inline: 16.6666666667cqw;
  }
}
.sol-role__flow-heading {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
}
.sol-role__flow-title {
  font-weight: 600;
  font-size: clamp(2.1rem, 8.5714285714cqw, 2.4rem);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .sol-role__flow-title {
    font-size: clamp(1.8rem, 7.5cqw, 2.4rem);
  }
}
.sol-role__flow-subtitle {
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.sol-role__flow-text {
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .sol-role__flow-text {
    font-size: 1.2rem;
  }
}

.sol-flow__menu-list {
  counter-reset: flow;
  list-style-type: none;
}
.sol-flow__menu-item {
  counter-increment: flow;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.sol-flow__menu-item::after {
  content: "";
  display: block;
  width: 2rem;
  aspect-ratio: 1/1;
  background: url("../public/img/common/flow-down.svg") center/contain no-repeat;
}
.sol-flow__menu-item:last-child::after {
  display: none;
}
.sol-flow__menu-link {
  gap: 1.6rem;
}
.sol-flow__menu-link::before {
  content: counter(flow, decimal-leading-zero);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 2rem;
  text-align: center;
}
.sol-flow__menu-link:hover {
  color: #222;
}
.sol-flow__menu-link.is-current:hover {
  color: #0aa5f2;
}
.sol-flow__list {
  max-width: 880px;
  list-style-type: none;
  counter-reset: flow;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.sol-flow__list-item {
  counter-increment: flow;
  position: relative;
  display: grid;
  grid-template-columns: 5.6rem 1fr 24rem;
  grid-template-areas: "ctr body img";
  gap: 4rem;
  z-index: 1;
  scroll-margin-top: 11.6rem;
}
@media screen and (max-width: 767px) {
  .sol-flow__list-item {
    grid-template-columns: 5.6rem 1fr;
    grid-template-areas: "ctr body" "ctr img";
    gap: 1.6rem;
    scroll-margin-top: 9.6rem;
  }
}
.sol-flow__list-item::before {
  content: "";
  grid-area: ctr;
  border-inline: 1px solid #0aa5f2;
  justify-self: center;
  height: calc(100% + 4rem);
}
.sol-flow__list-item::after {
  content: counter(flow, decimal-leading-zero);
  grid-area: ctr;
  width: 5.6rem;
  aspect-ratio: 1/1;
  font: 500 2.4rem/1.5 "Montserrat", sans-serif;
  letter-spacing: 0.04em;
  color: #0aa5f2;
  background: #fff;
  border: 2px solid #0aa5f2;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sol-flow__list-item:last-child::before {
  display: none;
}
.sol-flow__list-body {
  grid-area: body;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.sol-flow__list-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 5.6rem;
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #0aa5f2;
}
.sol-flow__list-text {
  letter-spacing: 0.04em;
}
.sol-flow__list-image {
  grid-area: img;
  width: 100%;
  aspect-ratio: 24/16;
  border-radius: 16px;
  overflow: hidden;
}

.achievements__pagination {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .achievements__pagination {
    margin-top: 2.4rem;
  }
}

.ach-sum__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .ach-sum__stats {
    grid-template-columns: 1fr;
  }
}
.ach-sum__stat {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 0;
  min-height: 224px;
  padding: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #fff;
  border: 1px solid #dfe4eb;
  border-radius: 16px;
}
.ach-sum__stat-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.4rem;
}
.ach-sum__stat-label {
  min-width: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
@media screen and (max-width: 1366px) {
  .ach-sum__stat-label {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .ach-sum__stat-label {
    font-size: 2.4rem;
  }
}
.ach-sum__stat-icon {
  width: 60px;
  height: 60px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.ach-sum__stat-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 4px;
}
.ach-sum__stat-num {
  color: transparent;
  background: -webkit-gradient(linear, left top, left bottom, from(#0aa5f2), to(#25e6bf));
  background: linear-gradient(to bottom, #0aa5f2 0%, #25e6bf 100%);
  -webkit-background-clip: text;
          background-clip: text;
  font: 700 8rem/1.1 "Montserrat", sans-serif;
  letter-spacing: 0.04em;
}
.ach-sum__stat-unit {
  font-weight: 600;
  font-size: 3.2rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.ach-sum__stat-note {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #b3b3b3;
}

.ach-case__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.ach-case__cats {
  padding-bottom: 6.4rem;
}

.ach-single__article {
  min-width: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
.ach-single__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid #dfe4eb;
}
.ach-single__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
}
.ach-single__title {
  font-weight: 300;
  font-size: 4rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .ach-single__title {
    font-size: 24px;
  }
}
.ach-single__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
.ach-single__lead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
  min-height: 48px;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .ach-single__lead {
    font-size: 18px;
  }
}
.ach-single__lead::before {
  content: "";
  width: 8px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  min-height: 48px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#0aa5f2), to(#25e6bf));
  background: linear-gradient(to bottom, #0aa5f2 0%, #25e6bf 100%);
}
.ach-single__dl {
  padding-bottom: 4rem;
}
.ach-single__dl-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 35px;
  padding-block: 1.6rem;
  border-bottom: 1px solid #dfe4eb;
}
.ach-single__dl-row:last-child {
  border-bottom: none;
}
.ach-single__dl-label {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 120px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 4px 8px;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.04em;
  text-align: center;
  background: #ecf4fa;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .ach-single__dl-label {
    width: 100px;
    font-size: 16px;
  }
}
.ach-single__dl-value {
  min-width: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  min-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .ach-single__dl-value {
    font-size: 16px;
  }
}
.ach-single__gallery {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
}
.ach-single__gallery-slider {
  width: 100%;
}
.ach-single__slide {
  width: 100%;
  aspect-ratio: 880/660;
  background: #fff;
}

.sitemap__section {
  max-width: 1080px;
  padding-inline: 40px;
  margin-block: 80px;
}
@media screen and (max-width: 767px) {
  .sitemap__section {
    padding-inline: 16px;
    margin-block: 40px;
  }
}
.sitemap__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 454px));
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px 20px;
}
@media screen and (max-width: 767px) {
  .sitemap__list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.sitemap__list-item--2 {
  grid-column: span 2;
}
@media screen and (max-width: 767px) {
  .sitemap__list-item--2 {
    grid-column: span 1;
  }
}
.sitemap__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 26px;
  font-size: 1.8rem;
  line-height: 1.5em;
  letter-spacing: 0.04em;
  padding: 12px 0 12px 16px;
  border-bottom: 1px solid #dfe4eb;
}
.sitemap__link::before {
  content: "";
  display: block;
  width: 14px;
  aspect-ratio: 14/9;
  background: url("../public/img/common/arrow-right.svg") no-repeat center/100% 100%;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.sitemap__link:hover::before {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.sitemap__sublinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  padding-left: 32px;
  margin-top: 24px;
}
.sitemap__sublink {
  font-size: 1.6rem;
  line-height: 1.5em;
  letter-spacing: 0.04em;
}

.faq__list {
  margin-block: 80px;
}
@media screen and (max-width: 767px) {
  .faq__list {
    margin-block: 40px;
  }
}
.faq__a-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  font-size: 1.6rem;
  line-height: 2em;
  letter-spacing: 0.04em;
  padding: 16px 24px;
  background-color: #ecf4fa;
  border-radius: 16px;
  overflow: hidden;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.faq__a-text::before {
  content: "A";
  display: block;
  font: 500 1.8rem "Montserrat", sans-serif;
}

.faq-accordion__head:hover .faq-accordion__head-text::before, .faq-accordion__head[aria-expanded=true] .faq-accordion__head-text::before {
  color: currentcolor;
}
.faq-accordion__head-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.faq-accordion__head-text::before {
  content: "Q";
  display: block;
  font: 500 1.8rem "Montserrat", sans-serif;
  color: #9fbcd1;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.workstyle {
  overflow-x: hidden;
}

.welfare {
  padding-block: 80px;
}
@media screen and (max-width: 767px) {
  .welfare {
    padding-block: 40px;
  }
}
.welfare__list {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .welfare__list {
    margin-top: 40px;
    grid-template-columns: 1fr;
  }
}
.welfare__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  padding: 32px 24px;
  background: #ecf4fa;
  border-radius: 16px;
}
.welfare__icon {
  width: 80px;
  height: 80px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.welfare__text {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.welfare__title {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
}
.welfare__desc {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.04em;
}

.educational {
  padding-block: 80px;
}
@media screen and (max-width: 767px) {
  .educational {
    padding-block: 40px;
  }
}
.educational__deco--01 {
  top: 80px;
  left: 10.4166666667%;
}
@media screen and (max-width: 767px) {
  .educational__deco--01 {
    top: 0;
    left: 5.3333333333%;
  }
}
.educational__deco--02 {
  right: -2.0833333333%;
  bottom: -9.375%;
}
@media screen and (max-width: 767px) {
  .educational__deco--02 {
    right: -5.3333333333%;
    bottom: -16%;
  }
}
.educational__list {
  margin-top: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .educational__list {
    margin-top: 40px;
  }
}
.educational__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
}
@media screen and (max-width: 767px) {
  .educational__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .educational__item--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.educational__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .educational__body {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    gap: 24px;
  }
}
.educational__title {
  max-width: 100%;
}
.educational__desc {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.04em;
}
.educational__picture {
  width: 500px;
  height: 375px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
  display: block;
  border-radius: 16px;
}
@media screen and (max-width: 767px) {
  .educational__picture {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    height: 274px;
  }
}

.career {
  padding-block: 80px;
}
@media screen and (max-width: 767px) {
  .career {
    padding-block: 40px;
  }
}
.career__lead {
  margin-top: 64px;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .career__lead {
    margin-top: 40px;
    padding-inline: 16px;
    text-align: left;
  }
}
.career__scroll {
  width: 100%;
  margin-top: -4rem;
}
@media screen and (max-width: 767px) {
  .career__scroll {
    margin-top: 4rem;
  }
}
.career__list {
  width: 1200px;
  margin-block: 202px 0;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 1200px) {
  .career__list {
    width: 62.5vw;
    margin-top: 10.5208333333vw;
  }
}
@media screen and (max-width: 767px) {
  .career__list {
    width: min(360px, 100%);
    margin-top: 103px;
  }
}
.career__item {
  width: 440px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1200px) {
  .career__item {
    width: 22.9166666667vw;
  }
}
@media screen and (max-width: 767px) {
  .career__item {
    width: 38.8888888889%;
  }
}
.career__item + .career__item {
  -webkit-transform: translate(-60px, -60px);
          transform: translate(-60px, -60px);
}
@media screen and (max-width: 1200px) {
  .career__item + .career__item {
    -webkit-transform: translate(-3.125vw, -3.125vw);
            transform: translate(-3.125vw, -3.125vw);
  }
}
@media screen and (max-width: 767px) {
  .career__item + .career__item {
    -webkit-transform: translate(-21.4285714286%, -37px);
            transform: translate(-21.4285714286%, -37px);
  }
}
.career__item + .career__item + .career__item {
  -webkit-transform: translate(-120px, -176px);
          transform: translate(-120px, -176px);
}
@media screen and (max-width: 1200px) {
  .career__item + .career__item + .career__item {
    -webkit-transform: translate(-6.25vw, -9.1666666667vw);
            transform: translate(-6.25vw, -9.1666666667vw);
  }
}
@media screen and (max-width: 767px) {
  .career__item + .career__item + .career__item {
    -webkit-transform: translate(-42.8571428571%, -103px);
            transform: translate(-42.8571428571%, -103px);
  }
}
.career__item--01 {
  color: #2ec7e5;
}
.career__item--03 {
  color: #0aa5f2;
}
.career__item--03 .career__illust {
  width: 89px;
}
@media screen and (max-width: 1200px) {
  .career__item--03 .career__illust {
    width: 4.6354166667vw;
  }
}
@media screen and (max-width: 767px) {
  .career__item--03 .career__illust {
    width: 31.7857142857%;
  }
}
@media screen and (max-width: 767px) {
  .career__item--03 .career__body {
    margin-left: 12.8571428571%;
  }
}
.career__item--05 {
  color: #2c6ff5;
}
.career__item--05 .career__illust {
  width: 136px;
}
@media screen and (max-width: 1200px) {
  .career__item--05 .career__illust {
    width: 7.0833333333vw;
  }
}
@media screen and (max-width: 767px) {
  .career__item--05 .career__illust {
    width: 48.5714285714%;
  }
}
@media screen and (max-width: 767px) {
  .career__item--05 .career__stair {
    height: 20px;
  }
}
@media screen and (max-width: 767px) {
  .career__item--05 .career__body {
    margin-left: 25.7142857143%;
  }
}
.career__head {
  width: 100%;
}
.career__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-inline: 60px 80px;
}
@media screen and (max-width: 1200px) {
  .career__top {
    padding-inline: 3.125vw 4.1666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .career__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    padding-inline: 0;
  }
}
.career__year {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 4px;
}
.career__year-num {
  font: 500 8rem/1.5 "Montserrat", sans-serif;
  letter-spacing: 0.04em;
  color: currentcolor;
}
@media screen and (max-width: 1200px) {
  .career__year-num {
    font-size: 4.1666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .career__year-num {
    font-size: 4rem;
    line-height: 1;
  }
}
.career__year-unit {
  padding-bottom: 3px;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #222;
}
@media screen and (max-width: 1200px) {
  .career__year-unit {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 767px) {
  .career__year-unit {
    padding-bottom: 1.5px;
    font-size: 1.2rem;
  }
}
.career__illust {
  width: 100px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 1200px) {
  .career__illust {
    width: 5.2083333333vw;
  }
}
@media screen and (max-width: 767px) {
  .career__illust {
    width: 35.7142857143%;
  }
}
.career__stair {
  width: 100%;
  height: 100px;
  display: block;
}
@media screen and (max-width: 1200px) {
  .career__stair {
    height: 5.2083333333vw;
  }
}
@media screen and (max-width: 767px) {
  .career__stair {
    height: 50px;
  }
}
.career__stair-tread {
  fill: currentcolor;
}
.career__stair-riser {
  fill: #4dc4ff;
  opacity: 0.5;
}
.career__body {
  width: 380px;
  margin-top: 24px;
  padding-left: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 1200px) {
  .career__body {
    width: 19.7916666667vw;
    margin-top: 1.25vw;
    padding-left: 3.125vw;
  }
}
@media screen and (max-width: 767px) {
  .career__body {
    width: 74.2857142857%;
    margin-top: 8px;
    padding-left: 0;
    gap: 8px;
  }
}
.career__title {
  font-weight: 400;
  font-size: 3.2rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: currentcolor;
}
@media screen and (max-width: 1200px) {
  .career__title {
    font-size: 1.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .career__title {
    font-size: 1.4rem;
  }
}
.career__desc {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #222;
}
@media screen and (max-width: 1200px) {
  .career__desc {
    font-size: 0.8333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .career__desc {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}
.career__desc br {
  display: none;
}

.license {
  padding-block: 80px;
  background: #ecf4fa;
}
@media screen and (max-width: 767px) {
  .license {
    padding-block: 40px;
  }
}
.license__list {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .license__list {
    margin-top: 40px;
    grid-template-columns: 1fr;
  }
}
.license__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  padding: 32px 24px;
  background: #fff;
  border-radius: 16px;
}
.license__title {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
}
.license__desc {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.04em;
}

.interview {
  overflow-x: hidden;
}
.interview__main {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .interview__main {
    padding-bottom: 40px;
  }
}
.interview__container {
  padding-inline: 4%;
  margin-inline: auto;
  width: 100%;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .interview__container {
    max-width: 100%;
    padding-inline: 16px;
  }
}
.interview__nav {
  padding-block: 40px 0;
  padding-inline: 4%;
  margin-inline: auto;
  width: 100%;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .interview__nav {
    max-width: 100%;
    padding-inline: 16px;
  }
}
@media screen and (max-width: 767px) {
  .interview__nav {
    padding-block: 24px;
  }
}
.interview__nav:last-child {
  padding-block: 40px;
}
@media screen and (max-width: 767px) {
  .interview__nav:last-child {
    padding-block: 24px;
  }
}
.interview__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .interview__tabs {
    gap: 8px;
  }
}
.interview__tab-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  min-width: 0;
}
.interview__tab {
  width: 100%;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  text-align: left;
  color: #222;
  background: #fff;
  border: 2px solid #dfe4eb;
  border-radius: 16px;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .interview__tab {
    padding: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 16px;
  }
}
.interview__tab:hover, .interview__tab:focus-visible {
  border-color: #0aa5f2;
  color: #0aa5f2;
}
.interview__tab.is-current {
  color: #0aa5f2;
  background: #ecf4fa;
  border-color: #0aa5f2;
  cursor: default;
}
.interview__tab-thumb {
  width: 100px;
  height: 100px;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .interview__tab-thumb {
    width: 80px;
    height: 80px;
  }
}
.interview__tab-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  min-width: 0;
  word-break: break-word;
}
@media screen and (max-width: 767px) {
  .interview__tab-text {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
.interview__tab-name {
  font: 600 2.4rem/1.5 "Hiragino-Kaku-Gothic-ProN-W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "游ゴシック体", "Hiragino Sans", "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .interview__tab-name {
    font-size: 1.6rem;
  }
}
.interview__tab-role {
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .interview__tab-role {
    font-size: 1.2rem;
  }
}
.interview__panel {
  display: none;
}
.interview__panel.is-active {
  display: block;
}
.interview__profile {
  padding-block: 80px 108px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .interview__profile {
    padding-block: 24px 147px;
  }
}
.interview__photo {
  width: 100%;
  aspect-ratio: 1200/720;
  overflow: hidden;
  border-radius: 24px;
}
@media screen and (max-width: 767px) {
  .interview__photo {
    border-radius: 16px;
  }
}
.interview__card {
  width: 480px;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  position: absolute;
  z-index: 1;
  right: 40px;
  bottom: 0;
  color: #222;
  background: -webkit-gradient(linear, left top, left bottom, from(#eef5fd), to(#fbfcfe));
  background: linear-gradient(to bottom, #eef5fd 0%, #fbfcfe 100%);
  border-radius: 16px;
}
@media screen and (max-width: 767px) {
  .interview__card {
    width: auto;
    padding: 24px;
    gap: 8px;
    right: 0;
    left: 40px;
  }
}
.interview__card-name {
  font: 600 2.4rem/1.5 "Hiragino-Kaku-Gothic-ProN-W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "游ゴシック体", "Hiragino Sans", "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .interview__card-name {
    font-size: 1.8rem;
  }
}
.interview__card-role {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .interview__card-role {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.interview__qa {
  margin-block: 64px;
  counter-reset: qa;
}
@media screen and (max-width: 767px) {
  .interview__qa {
    margin-block: 40px;
  }
}
.interview__qa-text {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.04em;
  word-break: break-word;
}
@media screen and (max-width: 767px) {
  .interview__qa-text {
    font-size: 1.4rem;
  }
}
.interview__qa-text + .interview__qa-text,
.interview__qa-text p + p {
  margin-top: 3.2rem;
}
.interview__sched {
  padding-block: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .interview__sched {
    gap: 32px;
  }
}
.interview__sched::before {
  content: "";
  width: 1px;
  position: absolute;
  inset-block: 24px;
  left: 70px;
  background: #dfe4eb;
}
@media screen and (max-width: 767px) {
  .interview__sched::before {
    left: 70px;
  }
}
.interview__sched-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
  position: relative;
  word-break: break-word;
}
@media screen and (max-width: 767px) {
  .interview__sched-item {
    gap: 20px;
  }
}
.interview__sched-time {
  width: 50px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font: 500 1.6rem/1.5 "Montserrat", sans-serif;
  letter-spacing: 0.04em;
  color: #0aa5f2;
}
@media screen and (max-width: 767px) {
  .interview__sched-time {
    font-size: 1.4rem;
  }
}
.interview__sched-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .interview__sched-text {
    gap: 8px;
  }
}
.interview__sched-task {
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #0aa5f2;
}
@media screen and (max-width: 767px) {
  .interview__sched-task {
    font-size: 1.6rem;
  }
}
.interview__sched-desc {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .interview__sched-desc {
    font-size: 1.4rem;
  }
}

.interview-accordion__item {
  padding-inline: 0;
  counter-increment: qa;
}
.interview-accordion__inner {
  padding-top: 24px;
}
.interview-accordion__head {
  gap: 16px;
  font-size: 2.4rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .interview-accordion__head {
    font-size: 1.8rem;
  }
}
.interview-accordion__head:hover .interview-accordion__head-text::before, .interview-accordion__head[aria-expanded=true] .interview-accordion__head-text::before {
  color: currentcolor;
}
.interview-accordion__head-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.interview-accordion__head-text::before {
  content: "Q" counter(qa);
  display: block;
  font: 500 1.6rem/1.5 "Montserrat", sans-serif;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: #9fbcd1;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .interview-accordion__head-text::before {
    font-size: 1.4rem;
  }
}

.jobs {
  overflow-x: hidden;
}
.jobs__inner, .jobs__tabs {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .jobs__inner, .jobs__tabs {
    max-width: 100%;
    padding-inline: 16px;
  }
}
.jobs__tabs {
  padding-top: 4rem;
}
@media screen and (max-width: 767px) {
  .jobs__tabs {
    padding: 4rem 16px 0;
  }
}
.jobs__tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .jobs__tab-list {
    gap: 0.8rem;
  }
}
.jobs__tab-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  min-width: 0;
}
.jobs__tab-btn {
  width: 100%;
  height: 59px;
  padding: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
  color: #222;
  background: #fff;
  border: 2px solid #dfe4eb;
  border-radius: 16px;
  -webkit-transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.jobs__tab-btn:hover, .jobs__tab-btn:focus-visible {
  color: #0aa5f2;
  border-color: #0aa5f2;
}
.jobs__tab-btn.is-active {
  color: #0aa5f2;
  background: #ecf4fa;
  border-color: #0aa5f2;
  pointer-events: none;
}
.jobs__section {
  padding-block: 8rem;
}
@media screen and (max-width: 767px) {
  .jobs__section {
    padding-block: 4rem;
  }
}
.jobs__panel {
  display: none;
}
.jobs__panel.is-active {
  display: block;
}
.jobs__detail {
  padding: 2.4rem;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: #222;
  background: #ecf4fa;
  border-radius: 16px;
}
.jobs__detail-row {
  padding-block: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4rem;
  border-bottom: 2px solid #fff;
}
@media screen and (max-width: 767px) {
  .jobs__detail-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.6rem;
  }
}
.jobs__detail-row:last-child {
  border-bottom: 0;
}
.jobs__detail-term {
  width: 120px;
  min-height: 32px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .jobs__detail-term {
    width: 100%;
  }
}
.jobs__detail-desc {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  min-width: 0;
  line-height: 2;
  word-break: break-word;
}

.jobs-accordion__head:hover {
  color: #0aa5f2;
}
.jobs-accordion__head:disabled:hover {
  color: #222;
}

.reason__list {
  list-style-type: none;
  counter-reset: reason;
  max-width: 1920px;
  padding-inline: 40px;
  margin-block: 80px 120px;
}
@media screen and (max-width: 767px) {
  .reason__list {
    padding-inline: 2.13%;
    margin-block: 40px;
  }
}
.reason__list-item {
  counter-increment: reason;
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(0, 960px);
  gap: 80px;
  padding: 160px 120px 120px;
  border-radius: 24px;
}
@media screen and (max-width: 1536px) {
  .reason__list-item {
    padding: 112px 84px 84px;
  }
}
@media screen and (max-width: 1280px) {
  .reason__list-item {
    gap: 40px;
    padding: 80px 60px 60px;
  }
}
@media screen and (max-width: 980px) {
  .reason__list-item {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .reason__list-item {
    padding: 16px 16px 40px;
    border-radius: 16px;
  }
}
.reason__list-item:nth-child(odd) {
  background-color: #ecf4fa;
}
.reason__item-img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 16px;
  overflow: hidden;
}
.reason__item-block {
  display: grid;
  grid-template-columns: repeat(2, auto) 1fr;
  grid-template-rows: auto 1fr;
  padding-block: 40px;
}
@media screen and (max-width: 767px) {
  .reason__item-block {
    padding-block: 0;
  }
}
.reason__item-block::before {
  content: "REASON";
  font: 500 1.6rem "Montserrat", sans-serif;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #0aa5f2;
  grid-row: 1;
  grid-column: 1;
  align-self: center;
  margin-right: 10px;
}
.reason__item-block::after {
  content: counter(reason, decimal-leading-zero);
  font-size: 4.8rem;
  font-weight: 600;
  line-height: 1;
  color: transparent;
  background: -webkit-gradient(linear, left top, right top, from(#0aa5f2), to(#25e6bf));
  background: linear-gradient(to right, #0aa5f2 0%, #25e6bf 100%);
  -webkit-background-clip: text;
          background-clip: text;
  grid-row: 1;
  grid-column: 2;
  justify-self: center;
}
.reason__item-content {
  grid-row: 2;
  grid-column: 1/-1;
  font-size: 1.8rem;
  line-height: 2em;
  letter-spacing: 0.04em;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .reason__item-content {
    font-size: 16px;
    margin-top: 24px;
  }
}
.reason__item-title {
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.5em;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .reason__item-title {
    font-size: 24px;
    margin-bottom: 16px;
  }
}

.news-archive__cats {
  padding-block: 2.4rem;
}
.news-archive__list {
  width: 100%;
  min-width: 0;
  padding-block: 4rem;
}
@media screen and (max-width: 767px) {
  .news-archive__list {
    padding-block: 2.4rem;
  }
}
.news-archive__pagination {
  padding-block: 4rem;
}
@media screen and (max-width: 767px) {
  .news-archive__pagination {
    padding-block: 0 4rem;
  }
}
.news-archive .empty-post {
  padding-block: 2.4rem;
}

.news-single__content, .news-single__article {
  gap: 4rem;
}
.news-single__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.news-single__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
}
.news-single__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
}
.news-single__title {
  font-weight: 300;
  font-size: 4rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid #dfe4eb;
}
@media screen and (max-width: 767px) {
  .news-single__title {
    font-size: 24px;
  }
}
.news-single__body > * + * {
  margin-top: 2em;
}
.news-single__body p {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.04em;
}

.recruit__section {
  padding-block: 80px;
}
@media screen and (max-width: 767px) {
  .recruit__section {
    padding-block: 40px;
  }
}
.recruit__content {
  padding-top: 64px;
}
@media screen and (max-width: 767px) {
  .recruit__content {
    padding-top: 40px;
  }
}
.recruit__message, .recruit__stats {
  position: relative;
  z-index: 2;
}
.recruit__message-content {
  max-width: calc(1040px + 8%);
  display: grid;
  grid-template-columns: 32.69% 1fr;
  gap: 7.69%;
}
@media screen and (max-width: 767px) {
  .recruit__message-content {
    max-width: 100%;
    grid-template-columns: 100%;
    gap: 40px;
  }
}
.recruit__message-image {
  aspect-ratio: 340/453;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .recruit__message-image {
    border-radius: 16px;
  }
}
@media screen and (max-width: 767px) {
  .recruit__message-image {
    aspect-ratio: 240/320;
    margin-inline: auto;
    width: 70%;
  }
}
.recruit__message-body {
  font-weight: 300;
  letter-spacing: 0.04em;
}
.recruit__message-heading {
  padding-bottom: 40px;
  font-weight: 600;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .recruit__message-heading {
    padding-bottom: 24px;
    font-size: 16px;
  }
}
.recruit__message-name {
  padding-top: 40px;
  font-weight: 600;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .recruit__message-name {
    padding-top: 24px;
    font-size: 16px;
  }
}
.recruit__flow {
  background: #ecf4fa;
}
.recruit__flow-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  list-style: none;
  counter-reset: step;
}
@media screen and (min-width: 981px) and (max-width: 1080px) {
  .recruit__flow-list {
    gap: 20px;
  }
}
@media screen and (max-width: 980px) {
  .recruit__flow-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.recruit__flow-item {
  letter-spacing: 0.04em;
  position: relative;
}
@media screen and (min-width: 981px) {
  .recruit__flow-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    padding-top: 26px;
  }
}
@media screen and (max-width: 980px) {
  .recruit__flow-item {
    padding-left: 26px;
  }
}
.recruit__flow-item::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 980px) {
  .recruit__flow-item::before {
    top: 5px;
    left: 0;
    -webkit-transform: none;
            transform: none;
  }
}
.recruit__flow-item::after {
  content: "";
  width: calc(100% + 40px);
  height: 1px;
  background: #fff;
  position: absolute;
  top: 5px;
  left: 50%;
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
@media screen and (min-width: 981px) and (max-width: 1080px) {
  .recruit__flow-item::after {
    width: calc(100% + 20px);
  }
}
@media screen and (max-width: 980px) {
  .recruit__flow-item::after {
    top: 15px;
    left: 0;
    width: 1px;
    height: calc(100% + 40px);
  }
}
.recruit__flow-item:last-child::after {
  display: none;
}
.recruit__flow-icon {
  counter-increment: step;
}
.recruit__flow-icon::before {
  content: "STEP " counter(step, decimal-leading-zero);
  display: block;
  font: 500 1.4rem "Montserrat", sans-serif;
  color: #0aa5f2;
  line-height: 1.5em;
  padding-bottom: 16px;
}
.recruit__flow-icon img {
  margin-inline: auto;
  width: 80px;
  height: 80px;
}
.recruit__flow-title {
  padding-block: 8px;
  font-weight: 300;
  font-size: 2rem;
}
.recruit__flow-desc {
  font-size: 1.4rem;
  word-break: break-all;
}
.recruit__flow-deco--01 {
  top: 0;
  left: 0;
  -webkit-transform: translate(4.01vw, -29.5055821372%);
          transform: translate(4.01vw, -29.5055821372%);
}
@media screen and (max-width: 767px) {
  .recruit__flow-deco--01 {
    width: 45.8666666667%;
    -webkit-transform: translate(-16vw, -18.7898089172%);
            transform: translate(-16vw, -18.7898089172%);
  }
}
.recruit__flow-deco--02 {
  bottom: 0;
  right: 0;
  -webkit-transform: translate(-3.33vw, 73.3333333333%);
          transform: translate(-3.33vw, 73.3333333333%);
}
@media screen and (max-width: 767px) {
  .recruit__flow-deco--02 {
    -webkit-transform: translate(0.68vw, 91.0071942446%);
            transform: translate(0.68vw, 91.0071942446%);
  }
}
.recruit__stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media screen and (max-width: 979px) {
  .recruit__stats-grid {
    grid-template-columns: 100%;
  }
}
.recruit__stats-item {
  padding: 24px;
  background: #fff;
  border: 1px solid #dfe4eb;
  border-radius: 16px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 979px) {
  .recruit__stats-item {
    -webkit-box-ordinal-group: var(--order);
        -ms-flex-order: var(--order);
            order: var(--order);
  }
}
.recruit__stats-item--newHire {
  padding-top: 28px;
}
@media screen and (min-width: 980px) {
  .recruit__stats-item--newHire {
    grid-row: span 2/span 2;
  }
}
.recruit__stats-item-head {
  gap: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.recruit__stats-label {
  padding-top: 6px;
  font-weight: 600;
  font-size: 2.4rem;
}
@media screen and (min-width: 980px) and (max-width: 1080px) {
  .recruit__stats-label {
    font-size: 18px;
  }
}
.recruit__stats-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 60px;
  height: 60px;
}
.recruit__stats-value {
  margin-block: -16px;
  font-weight: 600;
  font-size: 3.2rem;
}
.recruit__stats-value .xs {
  font-size: 2rem;
}
.recruit__stats-value--my8 {
  margin-block: 8px;
}
.recruit__stats-number {
  font: 700 8rem "Montserrat", sans-serif;
  line-height: 1.5em;
  font-weight: 700;
  font-size: 8rem;
  color: transparent;
  background: -webkit-gradient(linear, left top, right top, from(#0aa5f2), to(#25e6bf));
  background: linear-gradient(to right, #0aa5f2 0%, #25e6bf 100%);
  -webkit-background-clip: text;
          background-clip: text;
}
.recruit__stats-note {
  font-weight: 300;
  font-size: 1.4rem;
  color: #b3b3b3;
}
@media screen and (min-width: 980px) and (max-width: 1080px) {
  .recruit__stats-note {
    font-size: 12px;
  }
}
.recruit__stats-donut {
  padding: 22px 0 30px;
}
.recruit__stats-donut-canvas {
  width: 200px;
  height: 200px;
  margin-inline: auto;
}
.recruit__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .recruit__links {
    grid-template-columns: 100%;
    gap: 16px;
  }
}
.recruit__link-card {
  padding: 24px;
  background: #ecf4fa;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .recruit__link-card {
    padding-inline: 16px;
  }
}
.recruit__link-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .recruit__link-body {
    padding: 0;
  }
}
.recruit__link-title-en {
  display: block;
  font-weight: 500;
  font-size: 1.4rem;
  color: #9fbcd1;
  line-height: 1.5em;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.recruit__link-title-jp {
  font-weight: 300;
  font-size: 2.4rem;
  line-height: 1.5em;
  letter-spacing: 0.04em;
  padding-block: 8px 16px;
}
.recruit__link-image {
  width: 120px;
  aspect-ratio: 120/160;
  overflow: hidden;
  border-radius: 8px;
}
.recruit__anchor-link::after {
  width: 14px;
  height: 8px;
  -webkit-mask-image: url("../public/img/recruit/anchor-arrow.svg");
          mask-image: url("../public/img/recruit/anchor-arrow.svg");
}

.company__dl-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 120px;
  padding-block: 24px;
}
@media screen and (max-width: 980px) {
  .company__dl-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.company__dl-row:not(:last-child) {
  border-bottom: 2px solid #fff;
}
.company__dt {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5em;
  letter-spacing: 0.04em;
}
.company__dd {
  font-size: 1.6rem;
  line-height: 2em;
  letter-spacing: 0.04em;
}

.company-msg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
  padding-block: 80px 64px;
}
@media screen and (max-width: 980px) {
  .company-msg {
    gap: 40px;
    padding-block: 40px 0;
  }
}
.company-msg__block {
  display: grid;
  grid-template-columns: minmax(0, 400px) minmax(0, 720px);
  gap: 80px;
}
@media screen and (max-width: 980px) {
  .company-msg__block {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.company-msg__img {
  display: block;
  width: 100%;
  aspect-ratio: 400/593;
  border-radius: 16px;
  overflow: hidden;
}
@media screen and (max-width: 980px) {
  .company-msg__img {
    width: 70%;
    min-width: 240px;
    justify-self: center;
  }
}
.company-msg__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  font-size: 1.6rem;
  line-height: 2em;
  letter-spacing: 0.04em;
}
.company-msg__heading {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 2em;
  letter-spacing: 0.04em;
}
.company-msg__heading--small {
  font-size: 2rem;
}
.company-msg__note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.company-philo {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
  padding-block: 80px;
  margin-bottom: 80px;
}
@media screen and (max-width: 980px) {
  .company-philo {
    gap: 40px;
    padding-block: 40px;
    margin-block: 40px;
  }
}
.company-philo__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media screen and (max-width: 980px) {
  .company-philo__list {
    grid-template-columns: 1fr;
  }
}
.company-philo__deco--01 {
  top: 5px;
  left: -14.3%;
  width: 25.42%;
  -webkit-transform: translate(5.2083333333%, -15.1515151515%);
          transform: translate(5.2083333333%, -15.1515151515%);
}
@media screen and (max-width: 767px) {
  .company-philo__deco--01 {
    left: -70px;
    top: 0;
    width: 46%;
    -webkit-transform: translate(16%, -19.1082802548%);
            transform: translate(16%, -19.1082802548%);
  }
}
.company-philo__deco--02 {
  top: calc(100% + 120px);
  right: -14.6%;
  width: 23.5%;
  -webkit-transform: translate(5.2083333333%, -15.1515151515%);
          transform: translate(5.2083333333%, -15.1515151515%);
}
@media screen and (max-width: 980px) {
  .company-philo__deco--02 {
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .company-philo__deco--02 {
    top: calc(100% + 68px);
    width: 46%;
    -webkit-transform: translate(16%, -19.1082802548%);
            transform: translate(16%, -19.1082802548%);
  }
}
.company-philo__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  padding: 40px 24px 32px;
  border-radius: 24px;
  background-color: #ecf4fa;
}
.company-philo__item-icon {
  display: block;
  width: 80px;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.company-philo__item-heading {
  font-size: 2.4rem;
  line-height: 1.5em;
  letter-spacing: 0.04em;
  text-align: center;
}
.company-philo__item-text {
  font-size: 1.6rem;
  line-height: 2em;
  letter-spacing: 0.04em;
}

.company-mvv {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
  padding-block: 80px;
}
@media screen and (max-width: 980px) {
  .company-mvv {
    gap: 40px;
    padding-block: 40px;
  }
}
.company-mvv__block {
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(0, 480px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
}
@media screen and (max-width: 980px) {
  .company-mvv__block {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.company-mvv__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.company-mvv__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 980px) {
  .company-mvv__img {
    max-width: 400px;
    margin-inline: auto;
  }
}
.company-mvv__heading {
  font: 500 1.6rem "Montserrat", sans-serif;
  line-height: 1.5em;
  letter-spacing: 0.04em;
  color: #0aa5f2;
  border-bottom: 1px solid #0aa5f2;
  text-transform: uppercase;
  padding-bottom: 8px;
}
.company-mvv__subheading {
  font-size: 1.8rem;
  line-height: 1.5em;
  letter-spacing: 0.04em;
}
.company-mvv__text {
  font-size: 1.4rem;
  line-height: 1.5em;
  letter-spacing: 0.04em;
  margin-top: 8px;
}

.company-prof {
  padding-block: 80px;
  background-color: #ecf4fa;
}
@media screen and (max-width: 980px) {
  .company-prof {
    padding-block: 40px;
  }
}
.company-prof__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
}
@media screen and (max-width: 980px) {
  .company-prof__container {
    gap: 40px;
  }
}

.company-acc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  padding-block: 80px;
}
@media screen and (max-width: 980px) {
  .company-acc {
    gap: 40px;
    padding-block: 40px;
  }
}
.company-acc__block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 980px) {
  .company-acc__block {
    grid-template-columns: 1fr;
  }
}
.company-acc__map {
  width: 100%;
  height: 400px;
  margin-bottom: 16px;
}
@media screen and (max-width: 980px) {
  .company-acc__map {
    height: 237px;
  }
}
.company-acc__map iframe {
  width: 100%;
  height: 100%;
}
.company-acc__heading {
  font-size: 1.8rem;
  line-height: 1.5em;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.company-acc__text {
  font-size: 1.6rem;
  line-height: 1.5em;
  letter-spacing: 0.04em;
}
.company-acc__note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 1.6rem;
  line-height: 1.5em;
  letter-spacing: 0.04em;
  margin-top: 16px;
}
.company-acc__note::before {
  content: "";
  display: block;
  width: 24px;
  aspect-ratio: 1/1;
  background: url("../public/img/company/train-icon.svg") no-repeat center/100% 100%;
}

.privacy__list {
  list-style: none;
  counter-reset: num;
  padding-block: 80px;
}
@media screen and (max-width: 767px) {
  .privacy__list {
    padding-block: 40px;
  }
}
.privacy__item:not(:last-child) {
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .privacy__item:not(:last-child) {
    margin-bottom: 32px;
  }
}
.privacy__title {
  font-weight: 300;
  font-size: 2.4rem;
  line-height: 1.5em;
  letter-spacing: 0.04em;
  counter-increment: num;
  padding-bottom: 24px;
}
.privacy__title::before {
  content: counter(num, decimal-leading-zero);
  display: inline-block;
  padding-right: 16px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  color: #0aa5f2;
  line-height: 1.5em;
}
.privacy__text {
  font-weight: 300;
  letter-spacing: 0.04em;
}
.privacy__text ol {
  margin: 8px 0 8px 22px;
}
.privacy__callout {
  margin-top: 16px;
  padding: 16px 24px;
  background: #ecf4fa;
  border-radius: 16px;
}

.is-menu-locked,
.overflow {
  overflow: hidden;
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.pc-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .pc-flex {
    display: none;
  }
}

.pc-inline {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .pc-inline {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.sp-flex {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.center {
  text-align: center;
}

.nowrap {
  white-space: nowrap;
}

.inactive {
  display: none;
}

@property --angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 300deg;
}
@-webkit-keyframes loop {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}
@keyframes loop {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}
@-webkit-keyframes reveal-right-diag {
  from {
    -webkit-clip-path: polygon(0% 0%, 0% 0%, -1em 100%, -1em 100%);
            clip-path: polygon(0% 0%, 0% 0%, -1em 100%, -1em 100%);
  }
  to {
    -webkit-clip-path: polygon(0% 0%, calc(100% + 1em) 0%, 100% 100%, -1em 100%);
            clip-path: polygon(0% 0%, calc(100% + 1em) 0%, 100% 100%, -1em 100%);
  }
}
@keyframes reveal-right-diag {
  from {
    -webkit-clip-path: polygon(0% 0%, 0% 0%, -1em 100%, -1em 100%);
            clip-path: polygon(0% 0%, 0% 0%, -1em 100%, -1em 100%);
  }
  to {
    -webkit-clip-path: polygon(0% 0%, calc(100% + 1em) 0%, 100% 100%, -1em 100%);
            clip-path: polygon(0% 0%, calc(100% + 1em) 0%, 100% 100%, -1em 100%);
  }
}
@-webkit-keyframes reveal-down-diag {
  from {
    -webkit-clip-path: polygon(0% -1em, 100% 0, 100% 0, 0 -1em);
            clip-path: polygon(0% -1em, 100% 0, 100% 0, 0 -1em);
  }
  to {
    -webkit-clip-path: polygon(0% -1em, 100% 0, 100% calc(100% + 1em), 0 100%);
            clip-path: polygon(0% -1em, 100% 0, 100% calc(100% + 1em), 0 100%);
  }
}
@keyframes reveal-down-diag {
  from {
    -webkit-clip-path: polygon(0% -1em, 100% 0, 100% 0, 0 -1em);
            clip-path: polygon(0% -1em, 100% 0, 100% 0, 0 -1em);
  }
  to {
    -webkit-clip-path: polygon(0% -1em, 100% 0, 100% calc(100% + 1em), 0 100%);
            clip-path: polygon(0% -1em, 100% 0, 100% calc(100% + 1em), 0 100%);
  }
}
@-webkit-keyframes slide-up {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slide-up {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fade-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(3rem);
            transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fade-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(3rem);
            transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes clip-text {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
@keyframes clip-text {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
@-webkit-keyframes text-reveal {
  0%, 50% {
    -webkit-transform-origin: 0 50%;
            transform-origin: 0 50%;
  }
  60% {
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
  }
}
@keyframes text-reveal {
  0%, 50% {
    -webkit-transform-origin: 0 50%;
            transform-origin: 0 50%;
  }
  60% {
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
  }
}
@-webkit-keyframes deco-draw {
  from {
    stroke-dashoffset: 100;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes deco-draw {
  from {
    stroke-dashoffset: 100;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes deco-fade {
  0% {
    opacity: 0;
  }
  20%, 100% {
    opacity: 1;
  }
}
@keyframes deco-fade {
  0% {
    opacity: 0;
  }
  20%, 100% {
    opacity: 1;
  }
}
@-webkit-keyframes mv-line-draw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes mv-line-draw {
  to {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes mv-line-fade {
  to {
    opacity: 1;
  }
}
@keyframes mv-line-fade {
  to {
    opacity: 1;
  }
}
@-webkit-keyframes scroll-line {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  45% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  55% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}
@keyframes scroll-line {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  45% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  55% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}
@-webkit-keyframes pbnr-ray-draw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes pbnr-ray-draw {
  to {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes pbnr-ray-fade {
  0% {
    opacity: 0;
  }
  20%, 100% {
    opacity: 1;
  }
}
@keyframes pbnr-ray-fade {
  0% {
    opacity: 0;
  }
  20%, 100% {
    opacity: 1;
  }
}
@-webkit-keyframes role-flow {
  0% {
    stroke-dashoffset: 5;
  }
  100% {
    stroke-dashoffset: -100;
  }
}
@keyframes role-flow {
  0% {
    stroke-dashoffset: 5;
  }
  100% {
    stroke-dashoffset: -100;
  }
}
@property --angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 300deg;
}
[data-anima] {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

[data-anima=reveal-right-diag] {
  -webkit-clip-path: polygon(0% 0%, 0% 0%, -1em 100%, -1em 100%);
          clip-path: polygon(0% 0%, 0% 0%, -1em 100%, -1em 100%);
}
[data-anima=reveal-right-diag].animate {
  -webkit-animation-name: reveal-right-diag;
          animation-name: reveal-right-diag;
}

[data-anima=reveal-down-diag] {
  -webkit-clip-path: polygon(0% -1em, 100% 0, 100% 0, 0 -1em);
          clip-path: polygon(0% -1em, 100% 0, 100% 0, 0 -1em);
}
[data-anima=reveal-down-diag].animate {
  -webkit-animation-name: reveal-down-diag;
          animation-name: reveal-down-diag;
}

[data-anima=fade-in] {
  opacity: 0;
}
[data-anima=fade-in].animate {
  -webkit-animation-name: fade-in;
          animation-name: fade-in;
}

[data-anima=fade-up] {
  opacity: 0;
  -webkit-transform: translateY(3rem);
          transform: translateY(3rem);
}
[data-anima=fade-up].animate {
  -webkit-animation-name: fade-up;
          animation-name: fade-up;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
          animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

[data-anima=slide-up] {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
[data-anima=slide-up].animate {
  -webkit-animation-name: slide-up;
          animation-name: slide-up;
}

[data-split-anima] {
  visibility: hidden;
}

[data-split-anima=title] .split-word {
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
}
[data-split-anima=title] .split-char {
  display: inline-block;
}

[data-svg-anima=chars] svg > path {
  opacity: 0;
  visibility: hidden;
}

input[type=radio],
input[type=checkbox] {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #fff;
  border: 1px solid #dfe4eb;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
}

input[type=radio] {
  border-radius: 50%;
}
input[type=radio]::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  background: #0aa5f2;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.15s ease;
  transition: -webkit-transform 0.15s ease;
  transition: transform 0.15s ease;
  transition: transform 0.15s ease, -webkit-transform 0.15s ease;
}
input[type=radio]:checked::after {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

input[type=checkbox] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 4px;
}
input[type=checkbox]::after {
  width: 12px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  opacity: 0;
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
  content: "";
  background: url("../public/img/common/check.svg") no-repeat center/contain;
  position: absolute;
  inset: 0;
  margin: auto;
}
input[type=checkbox]:checked::after {
  opacity: 1;
}

span.wpcf7-list-item {
  margin: 0;
}

.wpcf7-acceptance label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  position: relative;
  cursor: pointer;
}

.wpcf7-acceptance span.wpcf7-list-item-label {
  display: inline;
  font: 300 1.6rem/2 "Hiragino-Kaku-Gothic-ProN-W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "游ゴシック体", "Hiragino Sans", "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
  color: #222;
  margin-top: -3px;
}

.wpcf7-form-control-wrap[data-name=postal_code] .wpcf7-not-valid-tip,
.wpcf7-form-control-wrap[data-name=address] .wpcf7-not-valid-tip,
.wpcf7-form-control-wrap[data-name=resume] .wpcf7-not-valid-tip,
.wpcf7-form-control-wrap[data-name=work-history] .wpcf7-not-valid-tip {
  display: none;
}

.wpcf7-response-output {
  display: none !important;
  visibility: hidden;
  opacity: 0;
}