@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 1280px) {
  html {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #1a1a1a;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

.layout-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}

.common-button {
  font-family: "Oswald", sans-serif;
  display: inline-block;
  background: linear-gradient(to right, #0097e0 0%, #0097e0 43%, #006c9f 100%);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 1.4375rem 1.25rem;
  text-transform: uppercase;
  max-width: 20.3125rem;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 10;
}

.common-button::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1.25px;
  background: rgba(255, 255, 255, 0.62);
  transform: scaleX(0.25);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.common-button:hover::after {
  transform: scaleX(0);
}

.common-button.product__button {
  background: #fff;
}

.common-button.product__button span {
  background: linear-gradient(to right, #71d1ff 0%, #0097e0 43%, #006c9f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.common-button.product__button::after {
  background: rgba(0, 151, 224, 0.65);
}

.sub-common-head {
  text-align: center;
}

.sub-common-title {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: 3.75rem;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1;
  color: transparent;
  background: linear-gradient(to right, #71d1ff 0%, #0097e0 43%, #006c9f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sub-common-title {
    font-size: 2rem;
  }
}

.sub-common-subtitle {
  margin-top: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: normal;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sub-common-subtitle {
    font-size: 1.125rem;
    margin-top: 1rem;
  }
}

.sub-common-subtitle.sub-recruitsec__subtitle {
  letter-spacing: 0.1em;
}

.common-title--en {
  width: 100%;
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  color: transparent;
  background: linear-gradient(to right, #71d1ff 0%, #0097e0 43%, #006c9f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  position: relative;
}
@media screen and (max-width: 767px) {
  .common-title--en {
    font-size: 2.5rem;
  }
}

.common-title--en::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 100%;
  height: 0.1875rem;
  background: linear-gradient(to right, #71d1ff 0%, #0097e0 43%, #006c9f 100%);
}

.common-title {
  margin-top: 2.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.06em;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .common-title {
    font-size: 1.25rem;
    margin-top: 1.25rem;
  }
}

.common-title--en.product__title-en {
  color: #fff;
  background: unset;
  -webkit-text-fill-color: unset;
}

.common-title--en.product__title-en::after,
.common-title--en.voice__title-en::after {
  content: none;
}

.common-title.product__title {
  color: #fff;
  position: relative;
  display: inline-block;
}

.common-title.voice__title {
  position: relative;
  display: inline-block;
}

.common-title.product__title::before,
.common-title.voice__title::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: 0;
  width: 100%;
  height: 0.1875rem;
  background: #fff;
}

.common-title--en.voice__title-en,
.common-title.voice__title::before {
  background-color: #0097e0;
  color: #0097e0;
}

.common-title.recruit__title {
  font-weight: 500;
}

.about {
  background-color: #fff;
  margin-top: 10rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .about {
    margin-top: 3.75rem;
    margin-bottom: 2.5rem;
  }
}

.about__inner {
  padding-left: 5rem;
  max-width: 90rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .about__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.about__content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .about__content-wrapper {
    flex-direction: column;
  }
}

.about__content {
  max-width: 40rem;
  width: 48%;
}
@media screen and (max-width: 767px) {
  .about__content {
    max-width: 600px;
    width: 100%;
  }
}

.about__text {
  margin-top: 5rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .about__text {
    margin-top: 2.5rem;
    font-size: 1rem;
    line-height: 1.2;
  }
}

.about__images {
  max-width: 41.5625rem;
  width: 49%;
}
@media screen and (max-width: 767px) {
  .about__images {
    max-width: 600px;
    width: 100%;
    margin-top: 2.5rem;
  }
}

.about__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 665/524;
  -o-object-fit: cover;
     object-fit: cover;
}

.about__image-wrapper {
  margin-top: 0.3125rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .about__image-wrapper {
    flex-direction: column;
    margin-top: 1.25rem;
  }
}

.about__image02 {
  max-width: 22.25rem;
  width: 100%;
  height: 100%;
  aspect-ratio: 356/262;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .about__image02 {
    max-width: 600px;
    width: 50%;
  }
}

.about__logo {
  max-width: 21.5625rem;
  width: 100%;
  height: auto;
  aspect-ratio: 345/192;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 5.0625rem;
  margin-top: 7.0625rem;
}
@media screen and (max-width: 767px) {
  .about__logo {
    max-width: 500px;
    width: 40%;
    margin-left: auto;
    margin-top: -1.25rem;
    margin-right: 0;
  }
}

.access {
  padding-top: 2.5rem;
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .access {
    padding-top: 1.25rem;
    margin-bottom: 5rem;
  }
}

.access__inner.inner {
  text-align: center;
}

.access__title {
  font-family: "Oswald", sans-serif;
  font-size: 3.75rem;
  font-weight: 700;
  display: inline-block;
  color: transparent;
  background: linear-gradient(to right, #71d1ff 0%, #0097e0 43%, #006c9f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: normal;
  line-height: 1.5;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .access__title {
    font-size: 2rem;
  }
}

.access__transport {
  margin-top: 2.25rem;
  max-width: 48.125rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .access__transport {
    max-width: 37.5rem;
    margin-top: 1.25rem;
  }
}

.access__method {
  display: flex;
  width: 100%;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .access__method {
    flex-direction: column;
    justify-content: center;
  }
}

.access__method:not(:first-child) {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .access__method:not(:first-child) {
    margin-top: 2.5rem;
  }
}

.access__icon-wrapper {
  display: flex;
  align-items: center;
  max-width: 17.1875rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .access__icon-wrapper {
    max-width: 37.5rem;
    justify-content: center;
  }
}

.access__icon {
  max-width: 6.5rem;
  width: 100%;
  aspect-ratio: 104/77;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .access__icon {
    max-width: 3.75rem;
  }
}

.access__label {
  margin-left: 1.1875rem;
  display: inline-block;
  max-width: 9.5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .access__label {
    margin-left: 0.625rem;
    max-width: 8.75rem;
  }
}

.access__label span {
  display: inline-block;
  width: 100%;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  background-color: #0097e0;
  padding: 0.25rem 0.75rem;
  border-radius: 0.3125rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .access__label span {
    font-size: 0.875rem;
  }
}

.access__text {
  margin-left: 2rem;
  font-size: 1.25rem;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: normal;
  line-height: 1.6;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .access__text {
    font-size: 0.875rem;
    margin-left: 0;
    margin-top: 0.625rem;
  }
}

.access__map {
  margin-top: 5rem;
  max-width: 60rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .access__map {
    margin-top: 2.5rem;
    max-width: 37.5rem;
  }
}

.access__map img {
  width: 100%;
  aspect-ratio: 96/54;
}

.breadcrumb {
  margin-top: 2rem;
  color: #034495;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    margin-top: 1.25rem;
  }
}

.breadcrumb__inner {
  margin: auto;
  padding: 0 1.5625rem;
  max-width: 83.375rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .breadcrumb__inner {
    padding: 0 1.25rem;
    max-width: 37.5rem;
  }
}

.breadcrumb span {
  font-size: 0.75rem;
  font-weight: 500;
  color: #034495;
  margin-right: 0.25rem;
  margin-left: 0.25rem;
}

.breadcrumb span.current-item {
  margin-left: 0.5rem;
}

.company-profile {
  padding-top: 5rem;
  padding-bottom: 8.75rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .company-profile {
    padding-top: 2.5rem;
    padding-bottom: 5rem;
  }
}

.company-profile__title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #0097e0;
  letter-spacing: normal;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .company-profile__title {
    font-size: 1.25rem;
  }
}

.company-profile__content {
  margin-top: 3.75rem;
  max-width: 78.5625rem;
  width: 100%;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .company-profile__content {
    flex-direction: column-reverse;
    max-width: 37.5rem;
    margin-top: 2.5rem;
  }
}

.company-profile__image {
  max-width: 45.9375rem;
  width: 58.4%;
}
@media screen and (max-width: 767px) {
  .company-profile__image {
    max-width: 37.5rem;
    width: 100%;
    margin-top: 1.875rem;
  }
}

.company-profile__image img {
  width: 100%;
  aspect-ratio: 735/414;
  -o-object-fit: cover;
     object-fit: cover;
}

.company-profile__info {
  max-width: 28.875rem;
  width: 36.7%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .company-profile__info {
    max-width: 37.5rem;
    width: 100%;
  }
}

.company-profile__row {
  display: flex;
  border-bottom: 1px solid #0097e0;
  padding: 1rem 1rem;
}

.company-profile__row:first-child {
  border-top: 1px solid #0097e0;
}

.company-profile__term {
  max-width: 5rem;
  width: 19%;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0097e0;
  line-height: 0.5;
  text-align: justify;
  text-justify: inter-ideograph;
  margin-top: 0.5625rem;
}
@media screen and (max-width: 767px) {
  .company-profile__term {
    width: 30%;
    font-size: 0.875rem;
  }
}

.company-profile__term::after {
  content: "";
  display: inline-block;
  width: 100%;
  font-size: 0;
}

.company-profile__description {
  max-width: 18.75rem;
  width: 70%;
  margin-left: 1.5rem;
  font-size: 1.125rem;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: normal;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .company-profile__description {
    width: 79%;
    max-width: 26.25rem;
    font-size: 0.875rem;
  }
}

.company-profile__description span {
  display: inline-block;
}

.company-profile__deco {
  position: absolute;
  top: 55%;
  right: 0;
  max-width: 15.4375rem;
  width: 100%;
  opacity: 0.5;
}

.company-profile__img img {
  aspect-ratio: 247/130;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.company-profile__bg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 100rem;
  width: 100%;
}

.company-profile__bg img {
  width: 100%;
  aspect-ratio: 1440/170;
  -o-object-position: center;
     object-position: center;
}

.contact.sub-recruit {
  padding-top: 2.8125rem;
  padding-bottom: 7.5rem;
  margin-top: unset;
  margin-bottom: unset;
}
@media screen and (max-width: 767px) {
  .contact.sub-recruit {
    padding-bottom: 5rem;
  }
}

.contact .sub-recruit__bg {
  top: -3.4375rem;
}
@media screen and (max-width: 767px) {
  .contact .sub-recruit__bg {
    top: 0;
  }
}

.contact__title {
  font-size: 2rem;
  font-weight: 700;
  color: #0097e0;
  text-align: center;
  letter-spacing: normal;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .contact__title {
    font-size: 1.25rem;
  }
}

.contact__form {
  max-width: 57.5rem;
  width: 100%;
  margin-top: 4.5625rem;
  background-color: #fafafa;
  padding: 5rem 8.75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .contact__form {
    max-width: 37.5rem;
    padding: 2rem 1.5rem;
    margin-top: 2.5rem;
  }
}

.contact__form-wrap + .contact__form-wrap {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .contact__form-wrap + .contact__form-wrap {
    margin-top: 1.5rem;
  }
}

.contact__form.contact__form--confirm .contact__form-wrap {
  margin-top: 1.5rem;
}

.contact__form.contact__form--confirm .contact__form-input {
  margin-top: 0;
}

.contact__form-label {
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  letter-spacing: 0;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .contact__form-label {
    font-size: 0.875rem;
  }
}

.contact__label-tag {
  max-width: 2.25rem;
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  background-color: #0097e0;
  padding: 0.1875rem 0.5rem;
  margin-right: 0.5rem;
}

.contact__input,
.contact__select,
.contact__textarea,
.wpcf7-text,
.wpcf7-textarea,
.wpcf7-select {
  margin-top: 0.5rem;
  max-width: 40rem;
  width: 100%;
  font-size: 1rem;
  letter-spacing: normal;
  line-height: 1.5;
  padding: 0.5rem;
  border: 1px solid #ddd;
  background-color: #fff;
  border-radius: 0;
}
@media screen and (max-width: 767px) {
  .contact__input,
  .contact__select,
  .contact__textarea,
  .wpcf7-text,
  .wpcf7-textarea,
  .wpcf7-select {
    font-size: 0.875rem;
    padding: 0.5rem;
  }
}

.contact__textarea {
  resize: vertical;
  height: 15rem;
}

.contact__form-input,
.contact__form-radio,
.contact__form-textarea {
  margin-top: 0.5rem;
}

.contact__form-privacy {
  margin-top: 1.5rem;
}

.contact__checkbox {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  letter-spacing: 0.03125rem;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .contact__checkbox-text {
    font-size: 0.8125rem;
    letter-spacing: normal;
    white-space: nowrap;
  }
}

.contact__checkbox-input {
  margin-right: 0.5rem;
}

.contact__link {
  color: #034495;
  text-decoration: underline;
}

.contact__form-privacy input {
  display: none;
}

.contact__form-privacy input + span {
  cursor: pointer;
  display: inline-block;
  padding: 0 0 0 2rem;
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  color: #333;
}
@media screen and (max-width: 767px) {
  .contact__form-privacy input + span {
    padding-left: 1.25rem;
  }
}

.contact__form-privacy input + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #ddd;
  display: block;
  width: 0.9375rem;
  height: 0.9375rem;
}

.contact__form-privacy input + span::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 2px;
  transform: rotate(-45deg);
  display: block;
  width: 11px;
  height: 6px;
  border-bottom: 2px solid #333;
  border-left: 2px solid #333;
  transition: 0.3s;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .contact__form-privacy input + span::after {
    top: 4px;
  }
}

.contact__form-privacy input:checked + span::after {
  opacity: 1;
}

.contact__form-submit {
  margin-top: 3.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__form-submit {
    margin-top: 2.5rem;
  }
}

.contact__button.common-button {
  max-width: 20.3125rem;
  padding: 1.0625rem 2.5rem;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .contact__button.common-button {
    max-width: 15rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}

.confirm__btn-wrap {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.confirm__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0097e0;
  text-align: center;
  letter-spacing: normal;
  line-height: 1.2;
}

.confirm__item {
  font-size: 1.125rem;
  font-weight: 400;
  color: #333;
  letter-spacing: 0;
  line-height: 1.5;
}

.confirm__item + .confirm__item {
  margin-top: 1rem;
}

.contact__button + .contact__button {
  margin-top: 1.5rem;
}

.wpcf7-spinner {
  display: none;
}

.confirm__btn {
  max-width: 20.3125rem;
  width: 100%;
  height: auto;
  padding: 1.0625rem 2.5rem;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
}

.contact__form-submit p {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .contact__form-submit p {
    flex-direction: column;
    gap: 0;
  }
}

.contact__submit-input,
.contact__back-button {
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
  border-radius: 0;
}
@media screen and (max-width: 767px) {
  .contact__submit-input,
  .contact__back-button {
    font-size: 1.25rem;
  }
}

.contact__submit-input:hover,
.contact__back-button:hover {
  opacity: 0.8;
}

.contact__submit-input::after,
.contact__back-button::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 100%;
  height: 1.25px;
  background: rgba(255, 255, 255, 0.62);
  transform: translateY(-50%) scaleX(0.25);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact__submit-input:hover::after,
.contact__back-button:hover::after {
  transform: translateY(-50%) scaleX(0);
}

.wpcf7-submit::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 100%;
  height: 1.25px;
  background: rgba(255, 255, 255, 0.62);
  transform: translateY(-50%) scaleX(0.25);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.wpcf7-submit:hover::after {
  transform: translateY(-50%) scaleX(0);
}

.contact__form.contact__form--complete {
  margin-top: 2.5rem;
  text-align: center;
}

.contact__thanks {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .contact__thanks {
    font-size: 1rem;
  }
}

.contact__button.common-button {
  margin-inline: auto;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .contact__button.common-button {
    font-size: 1rem;
  }
}

.contact__button-wrapper {
  text-align: center;
  margin-top: 2.5rem;
}

.contact__form.contact__form--confirm .contact__form-input {
  font-size: 1.125rem;
  font-weight: 500;
}

.contact__back-button {
  display: block !important;
}

.wpcf7-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-select select {
  color: #333;
  border-radius: 0;
  background-image: url(../images/common/contact-arrow.svg);
  background-repeat: no-repeat;
  background-size: 1.25rem;
  background-position: right 0.8125rem top 0.5rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

.contact__select option:first-child {
  color: #ccc;
}

.form-select select::-ms-expand {
  display: none;
}

.form-select select:focus {
  border: 1px solid #ccc;
  box-shadow: none;
  outline: none;
}

.footer {
  background: linear-gradient(to right, #2d9ed5, #007dba);
  padding-top: 2.8125rem;
  padding-bottom: 1.40625rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 2.5rem;
    padding-bottom: 0.625rem;
  }
}

.footer__inner {
  max-width: 90rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    max-width: 600px;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.footer__content {
  max-width: 80.3125rem;
  padding-left: 5rem;
  padding-right: 1.5625rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .footer__content {
    flex-direction: column;
    max-width: 600px;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.footer__col {
  flex: 1;
}

.footer__col--info {
  max-width: 22.8125rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .footer__col--info {
    margin-left: 0;
    max-width: 600px;
    width: 100%;
  }
}

.footer__col--map {
  margin-left: 1.875rem;
  max-width: 34.4375rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .footer__col--map {
    margin-left: 0;
    max-width: 600px;
    width: 100%;
    margin-top: 1.875rem;
  }
}

.footer__col--nav {
  margin-left: 2rem;
  max-width: 12rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .footer__col--nav {
    margin-left: 0;
    max-width: 600px;
    width: 100%;
  }
}

.footer__logo {
  max-width: 8.75rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    max-width: 6.25rem;
  }
}

.footer__logo img {
  max-width: 8.75rem;
  height: auto;
  aspect-ratio: 140/78;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .footer__logo img {
    max-width: 6.25rem;
  }
}

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

.footer__company {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  .footer__company {
    font-size: 1rem;
  }
}

.footer__address {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.625;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  .footer__address {
    font-size: 0.875rem;
    line-height: 1.2;
  }
}

.footer__tel {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.625;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  .footer__tel {
    font-size: 0.875rem;
    line-height: 1.2;
  }
}

.footer__office {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.625;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  .footer__office {
    font-size: 0.875rem;
    line-height: 1.2;
  }
}

.footer__license {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.625;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  .footer__license {
    font-size: 0.875rem;
    line-height: 1.2;
    margin-top: 0.625rem;
  }
}

.footer__license span,
.footer__time span,
.footer__holiday span {
  font-weight: 500;
}

.footer__time {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.625;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  .footer__time {
    font-size: 0.875rem;
    line-height: 1.2;
    margin-top: 0.625rem;
  }
}

.footer__holiday {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.625;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  .footer__holiday {
    font-size: 0.875rem;
    line-height: 1.2;
    margin-top: 0.625rem;
  }
}

.footer__map-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2;
  text-align: left;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .footer__map-title {
    font-size: 1.5rem;
  }
}

.footer__map iframe {
  width: 100%;
  max-width: 100%;
  height: 19.375rem;
}

.footer__nav {
  margin-top: 4.0625rem;
  border-left: 0.0625rem solid #fff;
}
@media screen and (max-width: 767px) {
  .footer__nav {
    margin-top: 1.25rem;
    border-left: none;
  }
}

.footer__nav-item a {
  display: inline-block;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  padding: 0.75rem 0.625rem 0.75rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .footer__nav-item a {
    font-size: 0.875rem;
    line-height: 1.2;
    padding: 0.625rem 0.625rem 0.625rem 0.625rem;
  }
}

.footer__copyright {
  margin-top: 6.25rem;
  font-weight: 400;
  text-align: center;
  font-size: 0.75rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    margin-top: 2.5rem;
  }
}

.footer__nav-item:first-child a {
  padding-top: 1.375rem;
}
@media screen and (max-width: 767px) {
  .footer__nav-item:first-child a {
    padding-top: 0.625rem;
  }
}

.gallery {
  position: absolute;
  top: 87%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .gallery {
    top: 95%;
  }
}

.gallery__inner.inner {
  max-width: 83.125rem;
  margin: 0 auto;
}

.gallery__list {
  display: flex;
  justify-content: center;
}

.gallery__item {
  width: 100%;
}

.gallery__item img {
  width: 100%;
  height: auto;
  aspect-ratio: 426/511;
  -o-object-fit: cover;
     object-fit: cover;
}

.header {
  height: 5rem;
  background-color: rgba(255, 255, 255, 0.75);
}
@media screen and (max-width: 767px) {
  .header {
    height: 3.125rem;
  }
}

.header__inner.inner {
  max-width: unset;
  padding-left: 2.0625rem;
  padding-right: 2.0625rem;
  height: inherit;
  display: flex;
  justify-content: space-between;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .header__inner.inner {
    padding: 0;
  }
}

.header__logo {
  max-width: 7.875rem;
  width: 100%;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .header__logo {
    max-width: 5rem;
  }
}

.header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
  padding: 0 2rem;
}
@media screen and (max-width: 767px) {
  .header__logo a {
    padding: 0 1rem;
  }
}

.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

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

.header__nav-list {
  display: flex;
  height: inherit;
}

.header__nav-item {
  height: inherit;
}

.header__nav-item--contact {
  margin-left: 0.84375rem;
  display: flex;
  align-items: center;
}

.header__nav-item a {
  padding: 0 1.5rem;
  height: inherit;
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  color: #003149;
}

.header__nav-item--contact a {
  font-size: 1rem;
  padding: 0.75rem 2.5rem;
  position: relative;
  height: initial;
  color: #fff;
  background: linear-gradient(to right, #35bbfc 0%, #0097e0 43%, #006c9f 100%);
}

.header__nav-item--contact a::before {
  content: "";
  margin-right: 0.625rem;
  width: 1.3125rem;
  height: 1.375rem;
  display: inline-block;
  background-image: url(../images/common/mail-icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.header__hamburger {
  display: none;
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 3.75rem;
  height: inherit;
  background: linear-gradient(to right, #35bbfc 0%, #0097e0 43%, #006c9f 100%);
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .header__hamburger {
    display: block;
  }
}

.header__hamburger.is-open {
  background-color: transparent;
}

.header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 1.875rem;
  height: 1px;
  background-color: #fff;
  transition: 0.5s;
}

.header__hamburger span:nth-of-type(1) {
  top: -0.5rem;
}

.header__hamburger span:nth-of-type(2) {
  top: 0;
}

.header__hamburger span:nth-of-type(3) {
  top: 0.5rem;
}

.header__hamburger.is-open span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.header__hamburger.is-open span:nth-of-type(3) {
  top: -0.125rem;
  transform: translateX(-50%) rotate(-45deg);
}

.header__drawer {
  margin-top: 3.125rem;
  padding: 6.25rem 0;
  position: absolute;
  z-index: 900;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.95);
  overflow-y: scroll;
  scrollbar-width: none;
  transition: 0.6s;
}

.header__drawer.is-open {
  right: 0;
}

.header__drawer::-webkit-scrollbar {
  display: none;
}

.header__drawer-item a {
  padding: 0.9375rem 0 0.9375rem 20%;
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #003149;
  text-transform: uppercase;
}

.job-detail {
  padding-top: 2.5rem;
  position: relative;
}

.job-detail .sub-recruit__bg {
  top: 0;
}

.job-detail__head {
  text-align: center;
}

.job-detail__label {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #1a1a1a;
}
@media screen and (max-width: 767px) {
  .job-detail__label {
    font-size: 1rem;
  }
}

.job-detail__title {
  margin-top: 1.5rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1;
  color: #0097e0;
}
@media screen and (max-width: 767px) {
  .job-detail__title {
    margin-top: 1rem;
    font-size: 1.5rem;
  }
}

.job-detail__img {
  margin-top: 5rem;
  max-width: 50rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .job-detail__img {
    margin-top: 2.5rem;
    max-width: 37.5rem;
    width: 100%;
  }
}

.job-detail__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 80/45;
}

.job-detail__description {
  padding-top: 5rem;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .job-detail__description {
    padding-top: 2.5rem;
    padding-bottom: 3.75rem;
  }
}

.job-detail__description-inner {
  max-width: 55rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .job-detail__description-inner {
    max-width: 37.5rem;
  }
}

.job-detail__content,
.job-detail__welfare {
  margin-top: 2.5rem;
  max-width: 50rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .job-detail__content,
  .job-detail__welfare {
    margin-top: 1.5rem;
    max-width: 37.5rem;
    width: 100%;
  }
}

.job-detail__content h3,
.job-detail__welfare h3 {
  background-color: #0089d1;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.0625rem;
  padding: 0.5rem 1rem;
}
@media screen and (max-width: 767px) {
  .job-detail__content h3,
  .job-detail__welfare h3 {
    font-size: 1rem;
    padding: 0.5rem 0.75rem;
  }
}

.job-detail__content h3:not(:first-child) {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .job-detail__content h3:not(:first-child) {
    margin-top: 1.5rem;
  }
}

.job-detail__content p {
  font-size: 1.25rem;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.6;
  letter-spacing: normal;
  margin-top: 1.5rem;
  margin-left: 1.5rem;
}
@media screen and (max-width: 767px) {
  .job-detail__content p {
    font-size: 1rem;
    margin-top: 1rem;
    margin-left: 0.5rem;
  }
}

.job-detail__content ul {
  margin-top: 2.25rem;
  margin-left: 1.5rem;
  list-style-type: disc;
}
@media screen and (max-width: 767px) {
  .job-detail__content ul {
    margin-top: 1.5rem;
    margin-left: 0.5rem;
  }
}

.job-detail__content ul li {
  font-size: 1.25rem;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.6;
  letter-spacing: normal;
  margin-left: 1.5rem;
}
@media screen and (max-width: 767px) {
  .job-detail__content ul li {
    font-size: 1rem;
  }
}

.job-detail__welfare-list {
  margin-top: 3.75rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 2.5rem;
  -moz-column-gap: 1.875rem;
       column-gap: 1.875rem;
  align-items: flex-start;
  justify-content: center;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .job-detail__welfare-list {
    margin-top: 2rem;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1.5rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}

.job-detail__list-item {
  background-color: #fff;
  box-shadow: 0 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.25);
  padding: 0 1rem 2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .job-detail__list-item {
    padding: 0 0.5rem 1.5rem;
  }
}

.job-detail__list-icon {
  max-width: 5.125rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .job-detail__list-icon {
    max-width: 3.75rem;
  }
}

.job-detail__list-icon img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}

.job-detail__list-label {
  margin-top: 1.125rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #595752;
  letter-spacing: normal;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .job-detail__list-label {
    margin-top: 0.75rem;
    font-size: 1rem;
  }
}

.job-detail__welfare-text {
  font-size: 1.25rem;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.6;
  letter-spacing: normal;
  margin-top: 3.75rem;
  margin-left: 1.5rem;
}
@media screen and (max-width: 767px) {
  .job-detail__welfare-text {
    font-size: 1rem;
    margin-top: 2rem;
    margin-left: 0.5rem;
  }
}

.mv {
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
  min-height: 25rem;
}

.mv {
  position: relative;
  z-index: 1;
  height: 100vh;
  min-height: 25rem;
}

.mv__inner {
  height: inherit;
  min-height: inherit;
}

.mv__title-wrapper {
  position: absolute;
  z-index: 10;
  top: 61.7%;
  left: 2.5rem;
  transform: translateY(-50%);
  width: 100%;
  max-width: 50rem;
  width: 100%;
}

.mv__swiper,
.mv__swiper .swiper-img,
.mv__swiper .swiper-img img {
  height: inherit;
  min-height: inherit;
  width: 100%;
}

.mv__swiper .swiper-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mv__content {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 90rem;
  margin-inline: auto;
  height: inherit;
  min-height: inherit;
}

.mv__line {
  position: absolute;
  z-index: 5;
  top: 63.7%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
}

.mv__line img {
  width: 100%;
  aspect-ratio: 1440/215;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 25% center;
     object-position: 25% center;
}

.mv__lead {
  max-width: 50rem;
  background-color: rgba(0, 151, 224, 0.9);
  font-size: 3.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.19em;
  line-height: 1.2;
  padding-top: 1.125rem;
  padding-bottom: 1.625rem;
  padding-left: 3.3125rem;
}

.mv__sub {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: normal;
  line-height: 1;
  margin-top: 1.25rem;
  margin-left: 3.375rem;
}

.mv__img {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .mv {
    background-position: top right -155px;
    min-height: 42.5rem;
  }
  .mv__inner {
    min-height: inherit;
  }
  .mv__swiper .swiper-img:first-child img {
    -o-object-position: 78% 0;
       object-position: 78% 0;
  }
  .mv__title-wrapper {
    top: 62.5%;
    left: 0;
    text-align: center;
    max-width: 31.25rem;
    width: 100%;
    padding-right: 0.9375rem;
  }
  .mv__lead {
    font-size: 1.5rem;
    padding: 0.5rem 0.9375rem 0.5rem 1.875rem;
    word-break: keep-all;
    text-align: left;
    max-width: 29.375rem;
    width: 100%;
    letter-spacing: 0.09em;
  }
  .mv__lead span {
    display: inline-block;
  }
  .mv__sub {
    font-size: 1.125rem;
    margin-top: 0.3125rem;
    margin-left: 1.875rem;
    text-align: center;
    line-height: 1.5;
    text-align: left;
  }
  .mv__line {
    top: 62.5%;
  }
  .mv__line img {
    width: 100%;
    aspect-ratio: 1440/500;
    -o-object-position: 58% center;
       object-position: 58% center;
  }
}
.p-404 {
  background-color: #fafcfc;
  margin-top: 100px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.p-404__inner.inner {
  text-align: center;
}

.p-404__text {
  font-size: 1.125rem;
  line-height: 1.5;
  margin-top: 1.25rem;
}

.p-404__title {
  font-size: 1.5rem;
  line-height: 1.5;
}

.p-404__btn {
  margin-top: 6.25rem;
}

.policy-feature {
  margin-top: 10rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .policy-feature {
    margin-top: 5rem;
  }
}

.policy-feature__bg {
  position: absolute;
  top: -10rem;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .policy-feature__bg {
    top: -5rem;
  }
}

.policy-feature.policy-feature--01 .policy-feature__bg {
  left: 50%;
  transform: translateX(-50%);
  max-width: 90rem;
}

.policy-feature__bg img {
  width: 100%;
  aspect-ratio: 1440/212;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.policy-feature__content {
  margin-top: 2.5rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .policy-feature__content {
    margin-top: 2rem;
    flex-direction: column;
  }
}

.policy-feature__img {
  width: 64%;
  max-width: 50.5rem;
}
@media screen and (max-width: 767px) {
  .policy-feature__img {
    max-width: 37.5rem;
    width: 100%;
    margin-right: 1rem;
  }
}

.policy-feature__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 808/455;
}

.policy-feature__box {
  max-width: 32.3125rem;
  width: 41%;
  margin-left: -9.0625rem;
  background-color: #0097e0;
  background-image: url(../images/policy/policy-textbg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  box-shadow: 0.625rem 0.625rem 0rem rgba(0, 92, 137, 0.1);
  padding: 4.6875rem 1.125rem 4.6875rem 2.6875rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .policy-feature__box {
    max-width: 37.5rem;
    width: 100%;
    margin-left: unset;
    margin-right: unset;
    padding: 1.25rem 0.5rem 1.25rem 0.9375rem;
    margin-left: 1rem;
    margin-top: -2rem;
  }
}

.policy-feature__text {
  font-size: 1rem;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .policy-feature__text {
    font-size: 0.8125rem;
    letter-spacing: normal;
    line-height: 1.8;
  }
}

.policy-feature.policy-feature--02 {
  margin-top: 7.5rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .policy-feature.policy-feature--02 {
    margin-top: 3.75rem;
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
  }
}

@media screen and (max-width: 767px) {
  .policy-feature.policy-feature--03 {
    margin-top: 3.75rem;
  }
}

.policy-feature.policy-feature--02 .policy-feature__content {
  flex-direction: row-reverse;
  margin-top: 2.0625rem;
}
@media screen and (max-width: 767px) {
  .policy-feature.policy-feature--02 .policy-feature__content {
    margin-top: 2rem;
    flex-direction: column-reverse;
  }
}

.policy-feature.policy-feature--02 .policy-feature__bg {
  position: absolute;
  top: 0;
  left: 50%;
  width: 87.5%;
  height: 100%;
  background-color: #f2fbfe;
  z-index: -1;
  max-width: 78.8125rem;
  transform: translateX(-50%);
}
@media screen and (max-width: 1440px) {
  .policy-feature.policy-feature--02 .policy-feature__bg {
    left: 0;
    transform: translateX(0);
  }
}
@media screen and (max-width: 767px) {
  .policy-feature.policy-feature--02 .policy-feature__bg {
    width: 100%;
  }
}

.policy-feature.policy-feature--02 .policy-feature__box {
  margin-left: 0;
  margin-right: -9.0625rem;
  background-image: url(../images/policy/policy-textbg-reverse.png);
  color: #003149;
  background-color: #fff;
  z-index: 5;
  padding: 3.75rem 1.125rem 3.75rem 3rem;
}
@media screen and (max-width: 767px) {
  .policy-feature.policy-feature--02 .policy-feature__box {
    margin-top: 0;
    padding: 1.25rem 0.5rem 1.25rem 0.9375rem;
    margin-left: unset;
    margin-right: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .policy-feature.policy-feature--02 .policy-feature__img {
    margin-right: unset;
    margin-left: 1rem;
    margin-top: -2rem;
  }
}

.policy-feature.policy-feature--03 .policy-feature__bg {
  position: absolute;
  top: 0.8125rem;
  left: 50%;
  transform: translateX(-50%);
  max-width: 90rem;
  width: 100%;
}

.policy {
  margin-top: 4.6875rem;
  margin-bottom: 10.9375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .policy {
    margin-top: 2.5rem;
    margin-bottom: 5rem;
  }
}

.policy__bg {
  position: absolute;
  top: -7.8125rem;
  left: 50%;
  transform: translateX(-50%);
  max-width: 90rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .policy__bg {
    top: -3.75rem;
  }
}

.policy__bg img {
  width: 100%;
  aspect-ratio: 1440/170;
  -o-object-fit: cover;
     object-fit: cover;
}

.policy__inner.inner {
  max-width: 70.75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .policy__inner.inner {
    max-width: 37.5rem;
  }
}

.policy__title {
  font-size: 2rem;
  font-weight: 700;
  color: #0097e0;
  letter-spacing: normal;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .policy__title {
    font-size: 1.25rem;
  }
}

.policy__text {
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .policy__text {
    margin-top: 1.5rem;
  }
}

.policy__paragraph {
  font-size: 1rem;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: normal;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .policy__paragraph {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}

.policy__items {
  margin-top: 2.8125rem;
}

.policy__item:not(:first-child) {
  margin-top: 2.8125rem;
}

.policy__term {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0097e0;
  letter-spacing: normal;
  line-height: 1;
  padding-left: 0.5rem;
  padding-top: 0.1875rem;
  padding-bottom: 0.1875rem;
  border-left: 3px solid #0097e0;
}
@media screen and (max-width: 767px) {
  .policy__term {
    font-size: 1rem;
  }
}

.policy__description {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #0097e0;
}

.policy__description-text {
  font-size: 1rem;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: normal;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .policy__description-text {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}

.policy__list-item {
  font-size: 1rem;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: normal;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .policy__list-item {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}

.policy__info-wrapper {
  margin-top: 1rem;
}

.policy__info-item {
  display: flex;
  align-items: center;
}

.policy__info-item:not(:first-child) {
  margin-top: 1rem;
}

.policy__info-item-title {
  display: inline-block;
  max-width: 4.25rem;
  width: 100%;
  background-color: #0097e0;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.5rem 0.5rem;
}
@media screen and (max-width: 767px) {
  .policy__info-item-title {
    font-size: 0.875rem;
  }
}

.policy__info-item-title span {
  margin-left: 1.125rem;
}
@media screen and (max-width: 767px) {
  .policy__info-item-title span {
    margin-left: 1.4375rem;
  }
}

.policy__info-item-title.policy__info-item-title--02 {
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .policy__info-item-title.policy__info-item-title--02 {
    letter-spacing: 0.2em;
  }
}

.policy__info-item-text {
  margin-left: 1rem;
  font-size: 1rem;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: normal;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .policy__info-item-text {
    font-size: 0.875rem;
  }
}

.policy__footer {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: normal;
  line-height: 2;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .policy__footer {
    font-size: 0.875rem;
  }
}

.product-detail {
  margin-top: 4.5625rem;
}
@media screen and (max-width: 767px) {
  .product-detail {
    margin-top: 1.875rem;
  }
}

.product-detail__content {
  display: flex;
  max-width: 67.5rem;
  margin-inline: auto;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .product-detail__content {
    flex-direction: column;
    align-items: center;
    max-width: 37.5rem;
    margin-inline: auto;
  }
}

.product-detail__text-body {
  max-width: 29.5625rem;
  width: 44%;
}
@media screen and (max-width: 767px) {
  .product-detail__text-body {
    width: 100%;
    max-width: 37.5rem;
  }
}

.product-detail__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0097e0;
  line-height: 1;
  letter-spacing: normal;
  border-left: 0.25rem solid #0097e0;
  padding-left: 1rem;
  padding-top: 0.59375rem;
  padding-bottom: 0.59375rem;
}
@media screen and (max-width: 767px) {
  .product-detail__title {
    font-size: 1.25rem;
  }
}

.product-detail__text {
  margin-top: 1rem;
}

.product-detail__text p {
  font-size: 1.125rem;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.9;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .product-detail__text p {
    font-size: 1rem;
    line-height: 1.8;
  }
}

.product-detail__text p + p {
  margin-top: 1.75rem;
}

.product-detail__img {
  max-width: 36rem;
  width: 54%;
}
@media screen and (max-width: 767px) {
  .product-detail__img {
    margin-top: 2.5rem;
    width: 100%;
    max-width: 37.5rem;
  }
}

.product-detail__img img {
  width: 100%;
  aspect-ratio: 576/486;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-detail__feature {
  margin-top: 7.8125rem;
}
@media screen and (max-width: 767px) {
  .product-detail__feature {
    margin-top: 3.75rem;
  }
}

.product-feature__inner.inner {
  max-width: 70.4375rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .product-feature__inner.inner {
    max-width: 37.5rem;
  }
}

.product-feature__list {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.625rem 1.125rem;
}
@media screen and (max-width: 767px) {
  .product-feature__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.625rem 1.125rem;
    margin-top: 2.5rem;
  }
}

.product-feature__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border: 0.1875rem solid #ddf8ff;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .product-feature__item {
    justify-content: flex-start;
  }
}

.product-feature__number {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: #007dba;
}
@media screen and (max-width: 767px) {
  .product-feature__number {
    font-size: 1.25rem;
  }
}

.product-feature__text {
  margin-left: 1rem;
  font-size: 1.25rem;
  font-weight: 400;
  color: #007dba;
  line-height: 1.6;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  .product-feature__text {
    font-size: 1rem;
    line-height: 1.8;
  }
}

.product-detail__record {
  margin-top: 5rem;
  padding-top: 5rem;
  padding-bottom: 7.5rem;
  background-color: #f2fbfe;
}
@media screen and (max-width: 767px) {
  .product-detail__record {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    padding-bottom: 3.75rem;
  }
}

.record__inner.inner {
  max-width: 70.4375rem;
}

.product {
  background-image: url("../images/top/product-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 10.875rem 0 5.625rem;
}
@media screen and (max-width: 767px) {
  .product {
    padding: 5rem 0 5rem;
  }
}

.product__inner.inner {
  max-width: 83rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .product__inner.inner {
    max-width: 600px;
    width: 100%;
    margin-inline: auto;
  }
}

.product__title-wrapper {
  text-align: center;
}

.product__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.5rem;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .product__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product__item img {
  width: 100%;
  aspect-ratio: 29/24;
  -o-object-fit: cover;
     object-fit: cover;
}

.product__label {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .product__label {
    margin-top: 0.625rem;
    font-size: 1.125rem;
  }
}

.product__button-wrapper {
  margin-top: 5.875rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .product__button-wrapper {
    margin-top: 2.5rem;
  }
}

.profile {
  background-color: #ebf8ff;
  padding-top: 5.4375rem;
  padding-bottom: 26.5625rem;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .profile {
    padding-top: 5rem;
    padding-bottom: 9.375rem;
  }
}

@media screen and (max-width: 767px) {
  .profile__inner.inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.profile__title-wrapper {
  position: relative;
}

.profile__title-en {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 6.25rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .profile__title-en {
    font-size: 2.5rem;
    line-height: 1.2;
  }
}

.profile__title {
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  color: #0097e0;
  padding-bottom: 0.3125rem;
  border-bottom: 2px solid #0097e0;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .profile__title {
    font-size: 1.5rem;
    top: 75%;
  }
}

.profile__content {
  margin-top: 2.5rem;
}

.profile__catch {
  font-size: 2.5rem;
  font-weight: 900;
  color: transparent;
  letter-spacing: 0.2em;
  line-height: 1.5;
  background-image: linear-gradient(to right, #0097e0, #0097e0);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .profile__catch {
    font-size: 1.75rem;
    letter-spacing: 0.05em;
  }
}

.profile__text {
  margin-top: 4.375rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .profile__text {
    font-size: 1rem;
    margin-top: 2.5rem;
  }
}

.profile__text + .profile__text {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .profile__text + .profile__text {
    margin-top: 1.25rem;
  }
}

.profile__subhead {
  margin-top: 8.375rem;
}
@media screen and (max-width: 767px) {
  .profile__subhead {
    margin-top: 3.75rem;
  }
}

.profile__subtitle {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  color: #0097e0;
  padding-bottom: 0.3125rem;
  border-bottom: 2px solid #0097e0;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .profile__subtitle {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-top: 2.5rem;
  }
}

.profile__list {
  margin-top: 3.125rem;
  max-width: 53.375rem;
  margin-inline: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .profile__list {
    max-width: 37.5rem;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
}

@media screen and (max-width: 767px) {
  .profile__item-wrap02 {
    order: 1;
  }
  .profile__item-wrap01 {
    order: 2;
  }
  .profile__item-wrap03 {
    order: 3;
  }
  .profile__item-logo-wrap {
    order: 4;
  }
}
.profile__bg {
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90rem;
  z-index: 1;
}
@media screen and (max-width: 1440px) {
  .profile__bg {
    left: 0;
    width: 100vw;
    transform: translateY(-50%);
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}

.profile__bg img {
  width: 100%;
  aspect-ratio: 1440/462;
  -o-object-fit: cover;
     object-fit: cover;
}

.profile__item-wrap01,
.profile__item-logo-wrap {
  margin: 0 auto;
  z-index: 10;
}

.profile__item-wrap02,
.profile__item-wrap03 {
  display: flex;
  justify-content: space-between;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .profile__item-wrap02,
  .profile__item-wrap03 {
    justify-content: center;
    gap: 1.875rem;
  }
}

@media screen and (max-width: 767px) {
  .profile__item-wrap01 {
    margin-top: -0.9375rem;
  }
}

.profile__item-wrap02 {
  max-width: 53.375rem;
  width: 100%;
  margin: 0 auto;
  margin-top: -4.875rem;
}
@media screen and (max-width: 767px) {
  .profile__item-wrap02 {
    max-width: 21.875rem;
    margin-top: unset;
  }
}

.profile__item-logo-wrap {
  margin-top: -7.1875rem;
}
@media screen and (max-width: 767px) {
  .profile__item-logo-wrap {
    margin-top: 0;
    max-width: 5rem;
  }
}

.profile__item-wrap03 {
  max-width: 41rem;
  width: 100%;
  margin: 0 auto;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .profile__item-wrap03 {
    margin-top: -0.9375rem;
  }
}

.profile__item {
  background-color: #fff;
  border-radius: 50%;
  width: 17.875rem;
  height: 17.875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.08);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .profile__item {
    width: 9.375rem;
    height: 9.375rem;
    justify-content: flex-start;
    padding-top: 1.25rem;
  }
}

.profile__item img {
  width: 5.625rem;
  height: 5.625rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .profile__item img {
    width: 3.75rem;
    height: 3.75rem;
  }
}

.profile__caption {
  font-size: 1.375rem;
  font-weight: 700;
  color: #0097e0;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .profile__caption {
    margin-top: 0.3125rem;
    font-size: 0.75rem;
    line-height: 1.2;
    letter-spacing: normal;
  }
}

.record__inner.inner {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .record__inner.inner {
    max-width: 37.5rem;
  }
}

.record__title {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  color: #0097e0;
  line-height: 1;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  .record__title {
    font-size: 1.5rem;
  }
}

.record__title:after {
  content: "";
  display: block;
  width: 81.3%;
  height: 6px;
  background-color: #0097e0;
  margin-top: 1rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .record__title:after {
    width: 70%;
    height: 4px;
  }
}

.record__list {
  margin-top: 3.75rem;
  max-width: 67.5rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .record__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
  }
}

.record__img {
  width: 100%;
}

.record__img img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.record__name {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.6;
  letter-spacing: normal;
}

.record__button-wrapper {
  margin-top: 8.75rem;
}

.record__link.common-button {
  font-size: 1.125rem;
  font-weight: 700;
}

.recruit-detail {
  margin-top: 5rem;
  padding-top: 5rem;
  padding-bottom: 7.5rem;
  background-color: #f2fbfe;
}

.recruit-detail__inner.inner {
  text-align: center;
}

.recruit-detail__title {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  color: transparent;
  background: linear-gradient(to right, #71d1ff 0%, #0097e0 43%, #006c9f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  letter-spacing: 0.0625rem;
  line-height: 1.5;
}

.recruit-detail__list {
  margin-top: 3.75rem;
  max-width: 60.5rem;
  width: 100%;
  margin-inline: auto;
  padding: 5rem 5rem;
  background-color: #fff;
  text-align: left;
  border-radius: 1rem;
  box-shadow: 0 0 1.25rem 0 rgba(61, 94, 72, 0.1);
}
@media screen and (max-width: 767px) {
  .recruit-detail__list {
    margin-top: 2.5rem;
    max-width: 37.5rem;
    padding: 2.5rem 1.25rem;
  }
}

.recruit-detail__item {
  display: flex;
  align-items: flex-start;
}

.recruit-detail__item:not(:first-child) {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .recruit-detail__item:not(:first-child) {
    margin-top: 1.5rem;
  }
}

.recruit-detail__term {
  max-width: 12.25rem;
  width: 24.2%;
  font-size: 1.125rem;
  font-weight: 700;
  color: #007dba;
  letter-spacing: 0.02em;
  line-height: 1.11112;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #0097e0;
}
@media screen and (max-width: 767px) {
  .recruit-detail__term {
    max-width: 12.5rem;
    width: 33%;
    font-size: 1rem;
    padding-bottom: 1rem;
    line-height: 1.25;
  }
}

.recruit-detail__description {
  max-width: 38.25rem;
  width: 75.7%;
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.02em;
  line-height: 1.25;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #dddddd;
}
@media screen and (max-width: 767px) {
  .recruit-detail__description {
    max-width: 25rem;
    width: 66%;
    font-size: 0.875rem;
    padding-bottom: 1rem;
    padding-left: 8px;
    line-height: 1.429;
  }
}

.recruit-detail__button-wrapper {
  margin-top: 3.75rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .recruit-detail__button-wrapper {
    margin-top: 2.5rem;
  }
}

.recruit {
  background-color: #fff;
  padding-top: 13.5rem;
  padding-bottom: 9.6875rem;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .recruit {
    padding-top: 6.25rem;
    padding-bottom: 5rem;
  }
}

.recruit__inner {
  max-width: 75rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .recruit__inner {
    max-width: 600px;
    width: 100%;
    margin-inline: auto;
  }
}

.recruit__title-wrapper {
  text-align: left;
  max-width: 40rem;
  width: 100%;
}

.recruit__list-wrapper {
  margin-top: 6.5rem;
}
@media screen and (max-width: 524px) {
  .recruit__list-wrapper {
    margin-top: 2.5rem;
  }
}

.recruit__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .recruit__list {
    max-width: 40rem;
    margin-inline: auto;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 524px) {
  .recruit__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}

.recruit__item {
  background-color: #f9feff;
  box-shadow: 0 0 1.5rem rgba(33, 80, 103, 0.16);
  text-align: left;
  transition: all 0.3s;
  padding: 1.5rem;
}
.recruit__item:hover {
  box-shadow: none;
}
@media screen and (max-width: 767px) {
  .recruit__item {
    padding: 1rem;
  }
}

.recruit__item a:hover {
  opacity: 1;
}

.recruit__img img {
  width: 100%;
  aspect-ratio: 352/264;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: all 0.3s;
}

.recruit__item a:hover .recruit__img img {
  transform: scale(1.05);
}

.recruit__body {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .recruit__body {
    margin-top: 0.625rem;
  }
}

.recruit__position {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0097e0;
  letter-spacing: normal;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .recruit__position {
    font-size: 1rem;
  }
}

.recruit__info {
  margin-top: 1.5rem;
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .recruit__info {
    font-size: 0.875rem;
    margin-top: 0.625rem;
  }
}

.recruit__button-wrapper {
  margin-top: 5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .recruit__button-wrapper {
    margin-top: 3.75rem;
  }
}

.recruit__bg {
  position: absolute;
  top: 7.1875rem;
  left: 0;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 90rem;
}
@media screen and (max-width: 767px) {
  .recruit__bg {
    top: 3.75rem;
  }
}

.recruit__bg img {
  width: 100%;
  aspect-ratio: 1440/170;
  -o-object-fit: cover;
     object-fit: cover;
}

.recruit__bg.recruit__bg--02 {
  top: unset;
  bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .recruit__bg.recruit__bg--02 {
    bottom: 2.5rem;
  }
}

.recruit__bg.recruit__bg--sub-recruitsec {
  bottom: 1.875rem;
  top: unset;
}

.slider-wrapper {
  display: flex;
  overflow: hidden;
}

.slider {
  animation: scroll-left 50s infinite linear 0.5s both;
  display: flex;
}

.slide {
  width: 100px;
  margin-right: 8px;
}

.slide img {
  display: block;
  width: 100%;
  aspect-ratio: 100/140;
  -o-object-fit: cover;
     object-fit: cover;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.slider-wrapper--right .slider {
  animation: scroll-right 50s infinite linear 0.5s both;
}

@keyframes scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
.sub-mv {
  position: relative;
  height: 26.25rem;
}
@media screen and (max-width: 767px) {
  .sub-mv {
    height: 20rem;
  }
}

.sub-mv__content {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.sub-mv__title-en {
  font-family: "Oswald", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .sub-mv__title-en {
    font-size: 2.5rem;
  }
}

.sub-mv__title {
  margin-top: 0.125rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  letter-spacing: normal;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sub-mv__title {
    margin-top: 0.3125rem;
    font-size: 1rem;
  }
}

.sub-mv__img {
  height: inherit;
}

.sub-mv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sub-policy {
  margin-top: 5.125rem;
}
@media screen and (max-width: 767px) {
  .sub-policy {
    margin-top: 2.5rem;
  }
}

.sub-policy__inner {
  margin-inline: auto;
  padding-left: 1.5625rem;
  max-width: 90rem;
}
@media screen and (max-width: 1440px) {
  .sub-policy__inner {
    margin-inline: unset;
    margin-left: auto;
    max-width: 86.75rem;
  }
}
@media screen and (max-width: 767px) {
  .sub-policy__inner {
    max-width: 37.5rem;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: unset;
    margin-inline: auto;
  }
}

.sub-policy__content {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .sub-policy__content {
    flex-direction: column;
  }
}

.sub-policy__body {
  max-width: 34.0625rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sub-policy__lead {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: normal;
  color: transparent;
  background: linear-gradient(to right, #71d1ff 0%, #0097e0 43%, #006c9f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .sub-policy__lead {
    font-size: 2rem;
  }
}

.sub-policy__text-wrapper {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .sub-policy__text-wrapper {
    margin-top: 1.5rem;
  }
}

.sub-policy__text {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #1a1a1a;
}
@media screen and (max-width: 767px) {
  .sub-policy__text {
    font-size: 1rem;
  }
}

.sub-policy__text:not(:first-child) {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .sub-policy__text:not(:first-child) {
    margin-top: 1rem;
  }
}

.sub-policy__img {
  max-width: 47.6875rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .sub-policy__img {
    max-width: 37.5rem;
    width: 100%;
    margin-top: 2rem;
    margin-inline: auto;
  }
}

.sub-policy__img img {
  width: 100%;
  aspect-ratio: 763/511;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .sub-policy__img img {
    aspect-ratio: 600/300;
  }
}

.sub-product {
  margin-top: 3.125rem;
}

.sub-product__content {
  background-color: #f2fbfe;
  padding-top: 5rem;
  padding-bottom: 5rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

.sub-product__list {
  max-width: 67.5rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .sub-product__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}
@media screen and (max-width: 524px) {
  .sub-product__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}

.sub-product__item img {
  margin-inline: auto;
}

.sub-product__label {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: normal;
  color: #1a1a1a;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .sub-product__label {
    font-size: 1rem;
  }
}

.sub-product__tab-content {
  display: none;
}

.sub-product__tab-content.is-active {
  display: block;
}

.sub-recruit {
  margin-top: 4.375rem;
  margin-bottom: 7.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sub-recruit {
    margin-top: 2.5rem;
    margin-bottom: 5rem;
  }
}

.sub-recruit__bg {
  position: absolute;
  top: -3.75rem;
  left: 50%;
  transform: translateX(-50%);
  max-width: 90rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .sub-recruit__bg {
    top: -2.5rem;
  }
}

.sub-recruit__bg img {
  width: 100%;
  aspect-ratio: 1440/170;
  -o-object-fit: cover;
     object-fit: cover;
}

.sub-recruit__title-wrapper {
  text-align: center;
}

.sub-recruit__lead {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .sub-recruit__lead {
    font-size: 1.25rem;
  }
}

.sub-recruit__title {
  margin-top: 0.625rem;
  display: inline-block;
  font-size: 2.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  color: transparent;
  background: linear-gradient(to right, #71d1ff 0%, #0097e0 43%, #006c9f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .sub-recruit__title {
    font-size: 2rem;
    margin-top: 0;
  }
}

.sub-recruit__content {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .sub-recruit__content {
    margin-top: 2rem;
  }
}

.sub-recruit__button-wrapper {
  margin-top: 10rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sub-recruit__button-wrapper {
    margin-top: 3.75rem;
  }
}

.sub-recruit__button.common-button {
  font-size: 1.125rem;
  font-weight: 600;
  padding: 1.5rem 1.4375rem;
}
@media screen and (max-width: 767px) {
  .sub-recruit__button.common-button {
    font-size: 1rem;
    padding: 1.6875rem 1.25rem;
  }
}

.policy-recruit {
  margin-top: 9.375rem;
}
@media screen and (max-width: 767px) {
  .policy-recruit {
    margin-top: 3.75rem;
  }
}

.sub-recruitsec {
  position: relative;
  padding-top: 5.625rem;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .sub-recruitsec {
    padding-top: 1.875rem;
    padding-bottom: 5rem;
  }
}

.sub-recruitsec__bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 90rem;
  width: 100%;
}

.sub-recruitsec__bg img {
  width: 100%;
  aspect-ratio: 1440/170;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.sub-recruitsec__list-title {
  text-align: center;
  margin-top: 3.5rem;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  color: transparent;
  background: linear-gradient(to right, #71d1ff 0%, #0097e0 43%, #006c9f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .sub-recruitsec__list-title {
    font-size: 1.25rem;
    margin-top: 2rem;
  }
}

.sub-recruitsec__list-wrapper {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .sub-recruitsec__list-wrapper {
    margin-top: 2rem;
  }
}

.sub-recruitsec__button-wrapper {
  margin-top: 5.8125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sub-recruitsec__button-wrapper {
    margin-top: 3.75rem;
  }
}

.sub-works {
  margin-top: 4.6875rem;
}

.sub-works__title-wrapper {
  max-width: 67.5rem;
  margin-inline: auto;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .sub-works__title-wrapper {
    max-width: 37.5rem;
    width: 100%;
  }
}

.sub-works__title {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: normal;
  color: transparent;
  background: linear-gradient(to right, #71d1ff 0%, #0097e0 43%, #006c9f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .sub-works__title {
    font-size: 1.875rem;
  }
}

.sub-works__content {
  background-color: #f2fbfe;
  padding-top: 5rem;
  padding-bottom: 5rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}
@media screen and (max-width: 767px) {
  .sub-works__content {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.sub-works__tab {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .sub-works__tab {
    margin-top: 2.5rem;
  }
}

.sub-works__tab-content {
  display: none;
}

.sub-works__tab-content.is-active {
  display: block;
}

@media screen and (max-width: 767px) {
  .tab__inner.inner {
    max-width: 70rem;
    width: 100vw;
    padding-inline: 1.25rem;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}

.tab__list {
  max-width: 70rem;
  margin-inline: auto;
  display: flex;
}
@media screen and (max-width: 767px) {
  .tab__list {
    max-width: none;
    width: -moz-max-content;
    width: max-content;
    min-width: 100%;
  }
}

.sub-product .tab__list {
  max-width: 65.625rem;
}
@media screen and (max-width: 767px) {
  .sub-product .tab__list {
    max-width: none;
    width: -moz-max-content;
    width: max-content;
    min-width: 100%;
  }
}

.tab__item {
  max-width: 15.9375rem;
  width: 100%;
  padding: 5px 5px 0 5px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .tab__item {
    max-width: 9.375rem;
    flex-shrink: 0;
  }
}

.sub-product .tab__item {
  max-width: 13.125rem;
}
@media screen and (max-width: 767px) {
  .sub-product .tab__item {
    max-width: 9.375rem;
    flex-shrink: 0;
  }
}

.tab__link {
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0097E0;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.2;
  position: relative;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}
.tab__link:hover {
  filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
}
@media screen and (max-width: 767px) {
  .tab__link {
    font-size: 1rem;
    padding: 0.625rem 0.625rem;
  }
}

.tab__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: #ffffff;
  clip-path: polygon(0% 0%, 90% 0%, 100% 100%, 0% 100%);
  z-index: -1;
}

.tab__inner {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 767px) {
  .tab__inner {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.tab__inner::-webkit-scrollbar {
  height: 4px;
}

.tab__inner::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 2px;
}

.tab__inner::-webkit-scrollbar-thumb {
  background: #0097e0;
  border-radius: 2px;
}

.tab__inner::-webkit-scrollbar-thumb:hover {
  background: #006c9f;
}

.tab__item:not(:first-child) {
  margin-left: -2.5rem;
}
@media screen and (max-width: 767px) {
  .tab__item:not(:first-child) {
    margin-left: -1.25rem;
  }
}

.tab__item--01 {
  z-index: 10;
}

.tab__item--02 {
  z-index: 9;
}

.tab__item--03 {
  z-index: 8;
}

.tab__item--04 {
  z-index: 7;
}

.tab__item--05 {
  z-index: 6;
}

.tab__item--06 {
  z-index: 5;
}

.tab__item.is-active {
  z-index: 20;
}

.is-active .tab__link::before {
  background-color: #F2FBFE;
}

.voice {
  margin-top: 23.75rem;
  margin-bottom: 6.25rem;
  background-color: #ffffff;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .voice {
    margin-top: 40vw;
  }
}

.voice__bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 90rem;
  width: 100%;
}

.voice__bg.voice__bg--02 {
  top: unset;
  bottom: -5%;
}

.voice__bg img {
  width: 100%;
  aspect-ratio: 1440/170;
  -o-object-fit: cover;
     object-fit: cover;
}

.voice__slider-wrapper {
  max-width: 90rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .voice__slider-wrapper {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.voice__slider {
  position: relative;
  overflow: hidden;
}

.swiper-slide {
  display: flex;
  align-items: center;
}

.voice__list {
  margin-top: 5rem;
  display: flex;
}
@media screen and (max-width: 767px) {
  .voice__list {
    margin-top: 2.5rem;
  }
}

.voice__item.swiper-slide {
  width: 100%;
  background-color: #fafdff;
  box-shadow: 0 0 1.5rem 0 rgba(38, 106, 139, 0.15);
  padding: 4rem;
  width: 56.5625rem;
  flex: 0 0 auto;
  flex-shrink: 0;
  margin-right: 2rem;
  margin-left: 2rem;
}
@media screen and (max-width: 767px) {
  .voice__item.swiper-slide {
    flex-direction: column-reverse;
    padding: 1.25rem;
    max-width: 600px;
    width: 100%;
    margin-right: 0.9375rem;
    margin-left: 0.9375rem;
  }
}

.voice__content {
  max-width: 22.25rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .voice__content {
    max-width: 100%;
    margin-top: 1.25rem;
  }
}

.voice__person {
  display: flex;
  align-items: center;
}

.voice__name {
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
}
@media screen and (max-width: 767px) {
  .voice__name {
    font-size: 1.25rem;
  }
}

.voice__tag {
  margin-left: 0.8125rem;
  display: inline;
  background-color: #0097e0;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.125rem 0.40625rem;
  line-height: 1;
  height: 1.625rem;
}
@media screen and (max-width: 767px) {
  .voice__tag {
    font-size: 0.75rem;
    height: 1.25rem;
    padding: 0.1875rem 0.25rem;
  }
}

.voice__qa {
  margin-top: 2.8125rem;
  font-size: 1rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .voice__qa {
    margin-top: 1.25rem;
    font-size: 0.875rem;
  }
}

.voice__question {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 0.8px solid #0097e0;
  color: #0097e0;
}
@media screen and (max-width: 767px) {
  .voice__question {
    font-size: 0.875rem;
  }
}

.voice__question:not(:first-child) {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .voice__question:not(:first-child) {
    margin-top: 1.25rem;
  }
}

.voice__answer {
  margin-top: 0.25rem;
  max-width: 20.3125rem;
  width: 100%;
  font-size: 1rem;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .voice__answer {
    font-size: 0.875rem;
  }
}

.voice__img {
  max-width: 24.625rem;
  width: 100%;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .voice__img {
    max-width: 25rem;
    width: 100%;
    margin-inline: auto;
  }
}

.voice__img img {
  width: 100%;
  aspect-ratio: 394/512;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .voice__img img {
    aspect-ratio: 400/300;
  }
}

.works {
  background-color: #f2fbfe;
  padding: 10rem 0 8.3125rem;
}
@media screen and (max-width: 767px) {
  .works {
    padding: 5rem 0 5rem;
  }
}

.works__title-wrapper {
  text-align: left;
  max-width: 80rem;
  width: 100%;
}

.works__gallery {
  margin-top: 5rem;
  max-width: 67.5625rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .works__gallery {
    margin-top: 2.5rem;
    max-width: 600px;
    width: 100%;
    margin-inline: auto;
  }
}

.works__gallery img {
  width: 100%;
  aspect-ratio: 1081/378;
  -o-object-fit: cover;
     object-fit: cover;
}

.works__list {
  max-width: 67.5625rem;
  margin-inline: auto;
  margin-top: 3.75rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .works__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 1.25rem;
    max-width: 600px;
    width: 100%;
    margin-inline: auto;
  }
}

.works__item img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.works__label {
  width: 100%;
  margin-top: 1.3125rem;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  color: #1a1a1a;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .works__label {
    font-size: 1rem;
    margin-top: 0.625rem;
  }
}

.works__gallery .works__label {
  text-align: left;
}

.works__button-wrapper {
  text-align: center;
  margin-top: 5.875rem;
}
@media screen and (max-width: 767px) {
  .works__button-wrapper {
    margin-top: 2.5rem;
  }
}

.inner {
  max-width: 83.125rem;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .inner {
    max-width: 37.5rem;
    padding-left: 15px;
    padding-right: 15px;
  }
}

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

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

.p-404 {
  background-color: #fafcfc;
  margin-top: 100px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.p-404__inner.inner {
  text-align: center;
}

.p-404__text {
  font-size: 1.125rem;
  line-height: 1.5;
  margin-top: 1.25rem;
}

.p-404__title {
  font-size: 1.5rem;
  line-height: 1.5;
}

.p-404__btn {
  margin-top: 6.25rem;
}
/*# sourceMappingURL=style.css.map */
