@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3757523646vw;
  }
}
@media (min-width: 1163px) {
  html {
    font-size: 100%;
  }
}

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

@media screen and (min-width: 768px) {
  a,
  button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  a:hover,
  button:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

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

.fadeIn {
  -webkit-transform: translate3d(0, 50px, 0);
          transform: translate3d(0, 50px, 0);
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 0;
}

.fadeIn.animated {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
}

/*左から右テキストエフェクト*/
.leftAnime {
  opacity: 0;
  overflow: hidden;
  display: inline-block;
}

.leftAnimeInner {
  display: inline-block;
}

.slideAnimeLeftRight {
  -webkit-animation-name: slideTextX100;
          animation-name: slideTextX100;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-70%);
            transform: translateX(-70%);
    /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}

@keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-70%);
            transform: translateX(-70%);
    /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  -webkit-animation-name: slideTextX-100;
          animation-name: slideTextX-100;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}

@keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}
/* animation */
@-webkit-keyframes passing-bar {
  0% {
    left: 0;
    right: auto;
    width: 0;
  }
  50% {
    left: 0;
    right: auto;
    width: 100%;
  }
  51% {
    left: auto;
    right: 0;
    width: 100%;
  }
  100% {
    left: auto;
    right: 0;
    width: 0;
  }
}
@keyframes passing-bar {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
@-webkit-keyframes passing-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes passing-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* css */
.passing .passing-box {
  display: block;
  text-align: center;
}

.passing .passing-bar {
  position: relative;
  display: inline-block;
  /*　後ほど解説　*/
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.passing .passing-bar:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  /* 任意の値 */
  background: -webkit-gradient(linear, left top, right top, color-stop(0.15%, #08AAB5), color-stop(99.83%, #0058C0));
  background: linear-gradient(90deg, #08AAB5 0.15%, #0058C0 99.83%);
}

.passing .passing-txt {
  opacity: 0;
  /* 後ほど解説 */
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  /* 任意の値 */
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.5;
}

.passing.move .passing-bar:before {
  -webkit-animation: passing-bar 1s ease 0s 1 normal forwards;
  animation: passing-bar 1s ease 0s 1 normal forwards;
}

.passing.move .passing-txt {
  -webkit-animation: passing-txt 0s ease 0.5s 1 normal forwards;
  animation: passing-txt 0s ease 0.5s 1 normal forwards;
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  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;
  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]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* 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;
}

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-inner {
  width: 100%;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1163px;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

.c-btn {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.861px;
  border: 1px solid #fff;
  padding: 0.4375rem 4rem 0.4375rem 1.375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-btn {
    font-size: 1rem;
    letter-spacing: 1.2px;
    padding: 0.6875rem 5.5625rem 0.6875rem 1.875rem;
  }
}

.c-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.0625rem;
  height: 1.0625rem;
  background: url(../img/arrow.svg) no-repeat center/contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-btn::after {
    width: 1.5rem;
    height: 1.5rem;
    right: 1.875rem;
  }
}

.c-btn:hover::after {
  right: 1.5625rem;
}

.c-btn--blue {
  border: none;
  padding: 0;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .c-btn--blue {
    background: -webkit-gradient(linear, left top, right top, color-stop(0.15%, #08AAB5), color-stop(99.83%, #0058C0));
    background: linear-gradient(90deg, #08AAB5 0.15%, #0058C0 99.83%);
    padding: 0.75rem 3.25rem 0.8125rem 1.125rem;
  }
}

.c-btn--blue::after {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-btn--blue::after {
    display: block;
    right: 0.8125rem;
  }
}

.c-btn--blue:hover::after {
  right: 0.5rem;
}

.c-section-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.7777777778;
  letter-spacing: 3px;
  position: relative;
  color: #fff;
  text-align: center;
  padding-top: 3.125rem;
  padding-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-section-title {
    font-size: 1.875rem;
    line-height: 1.7333333333;
    padding-top: 4.8125rem;
    padding-bottom: 2.5625rem;
  }
}

.c-section-title::before {
  content: attr(data-en);
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 4.5625rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 1;
  opacity: 0.3;
}
@media screen and (min-width: 768px) {
  .c-section-title::before {
    font-size: 8.0625rem;
  }
}

.c-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1.1875rem;
  height: 0.125rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .c-section-title::after {
    width: 2.125rem;
  }
}

.c-section-title--service {
  text-align: left;
  background: -webkit-gradient(linear, left top, right top, color-stop(0.15%, #08AAB5), color-stop(99.83%, #0058C0));
  background: linear-gradient(90deg, #08AAB5 0.15%, #0058C0 99.83%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 1.3125rem;
}
@media screen and (min-width: 768px) {
  .c-section-title--service {
    padding-bottom: 1.6875rem;
  }
}

.c-section-title--service::before {
  content: attr(data-en);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  font-size: 4.5625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1;
  opacity: 0.1;
  background: -webkit-gradient(linear, left top, right top, color-stop(0.15%, #08AAB5), color-stop(99.83%, #0058C0));
  background: linear-gradient(90deg, #08AAB5 0.15%, #0058C0 99.83%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .c-section-title--service::before {
    font-size: 8.0625rem;
  }
}

.c-section-title--service::after {
  left: 0;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  width: 1.1875rem;
  height: 0.125rem;
  background: -webkit-gradient(linear, left top, right top, color-stop(0.15%, #08AAB5), color-stop(99.83%, #0058C0));
  background: linear-gradient(90deg, #08AAB5 0.15%, #0058C0 99.83%);
}
@media screen and (min-width: 768px) {
  .c-section-title--service::after {
    width: 2.125rem;
  }
}

.c-section-title--recruit {
  padding-top: 3.125rem;
  padding-bottom: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-section-title--recruit {
    text-align: left;
    padding-top: 6.25rem;
    padding-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .c-section-title--recruit::before {
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@media screen and (min-width: 768px) {
  .c-section-title--recruit::after {
    display: none;
  }
}

.c-section-title--work {
  padding-bottom: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-section-title--work {
    padding-bottom: 0.625rem;
  }
}

.p-company {
  padding: 3rem 0 3.75rem;
  background: url(../img/bg_company.jpg) no-repeat center/cover;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-company {
    padding: 3.75rem 0 7.375rem;
  }
}

.p-company__read {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-company__read {
    margin-top: 3.75rem;
  }
}

.p-company__read img {
  margin-inline: auto;
}

.p-company__text {
  margin-top: 1.5625rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7142857143;
  letter-spacing: 0.7px;
  display: block;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-company__text {
    margin-top: 3.1875rem;
    font-size: 0.9375rem;
    line-height: 1.7333333333;
    letter-spacing: 0.75px;
    font-weight: 700;
  }
}

.p-company__btn {
  margin-top: 3rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-company__btn {
    margin-top: 4.5rem;
  }
}

.p-footer {
  background: rgba(0, 0, 0, .85);
  color: #fff;
  padding: 2.5rem 0 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding: 6.1875rem 0 6.375rem;
  }
}

.p-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  padding: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-footer__inner {
    padding: 0 6.25rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3.3125rem;
  }
}

.p-footer__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  text-align: center;
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-footer__left {
    display: block;
    text-align: left;
    width: 33.9176829268%;
  }
}

.p-footer__contents {
  padding-top: 3.125rem;
  border-top: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .p-footer__contents {
    border-top: none;
    padding-top: 0;
    padding-bottom: 1.1875rem;
    border-bottom: 1px solid #fff;
  }
}

.p-footer__logo img {
  margin-inline: auto;
  max-width: 5.875rem;
}
@media screen and (min-width: 768px) {
  .p-footer__logo img {
    margin-inline: unset;
  }
}

.p-footer__name {
  margin-top: 1.125rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 768px) {
  .p-footer__name {
    margin-top: 0.9375rem;
    font-size: 1.125rem;
    letter-spacing: 1.8px;
  }
}

.p-footer__address {
  margin-top: 0.3125rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7142857143;
  letter-spacing: 0.7px;
}
@media screen and (min-width: 768px) {
  .p-footer__address {
    font-weight: 500;
  }
}

.p-footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.7px;
}
@media screen and (min-width: 768px) {
  .p-footer__wrap {
    margin-top: 0;
    gap: 1.25rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    font-weight: 500;
  }
}

.p-footer__tel a {
  text-decoration: underline;
}

.p-footer__access {
  padding-top: 0.8125rem;
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-footer__access {
    display: block;
  }
}

.p-footer__access-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.p-footer__table {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7142857143;
  letter-spacing: 0.7px;
  margin-inline: auto;
  text-align: center;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-footer__table {
    margin-top: 0.3125rem;
    text-align: left;
    padding-bottom: 0;
    margin-inline: unset;
  }
}

.p-footer__table tr {
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 3rem;
     -moz-column-gap: 3rem;
          column-gap: 3rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-footer__table tr {
    margin-top: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-footer__table th {
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-footer__table th {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-footer__table td {
  padding-top: 0.625rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.6px;
}
@media screen and (min-width: 768px) {
  .p-footer__table td {
    padding-top: 0;
    font-size: 0.875rem;
    line-height: 1.7142857143;
    letter-spacing: 0.7px;
  }
}

.p-footer__map {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-footer__map {
    margin-top: 0;
    width: 61.9664634146%;
  }
}

.p-footer__map iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 345/204;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-footer__map iframe {
    aspect-ratio: 813/335;
  }
}

.p-header-nav {
  height: 100vh;
  width: 100%;
  overflow: auto;
  padding-top: 9rem;
  padding-left: 1.0625rem;
  padding-right: 1.0625rem;
  background: rgba(0, 0, 0, .9);
}
@media screen and (min-width: 768px) {
  .p-header-nav {
    padding-top: 0;
    height: inherit;
    margin-left: 1.875rem;
    padding-right: 0;
    width: 100%;
    overflow: visible;
    overflow: initial;
    background: rgba(255, 255, 255, 0);
  }
}

.p-header-nav__wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-header-nav__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
  }
}

.p-header-nav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.125rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-header-nav__items {
    gap: 1.875rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.p-header-nav__item {
  border-bottom: 1px solid #fff;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 1.2px;
  padding-bottom: 0.625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-header-nav__item {
    border-bottom: none;
    padding-bottom: 0;
  }
}

.p-header-nav__item a {
  display: inline-block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-header-nav__item a {
    display: inline;
  }
}

.p-header-nav__item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-70%);
          transform: translateY(-70%);
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/arrow-menu.svg) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .p-header-nav__item::after {
    display: none;
  }
}

.p-header-nav__item span {
  padding-left: 1.1875rem;
  display: inline-block;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-header-nav__item span {
    display: none;
  }
}

.p-header-nav__item span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0.3125rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.625rem;
  height: 0.625rem;
  background: url(../img/icon-menu.png) no-repeat center/contain;
}

@media screen and (min-width: 768px) {
  .p-header-nav__item:hover {
    text-decoration: underline;
  }
}

.p-header-nav__item--btn:hover {
  text-decoration: none;
}

.p-header-nav__item--btn {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header-nav__item--btn {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .p-header-nav__item--recruit {
    display: none;
  }
}

.p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 8.625rem;
  z-index: 100;
}

.p-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -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;
  padding-left: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 0 6.25rem;
  }
}

.p-header__logo {
  background: rgba(255, 255, 255, .8);
  padding: 0.75rem 0.6875rem 0.6875rem 1.0625rem;
  z-index: 99;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    padding: 0.9375rem 0.9375rem 1rem 1.4375rem;
  }
}

.p-header__logo img {
  max-width: 4.6875rem;
}
@media screen and (min-width: 768px) {
  .p-header__logo img {
    max-width: 6.25rem;
  }
}

.p-header__nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
}
@media screen and (min-width: 768px) {
  .p-header__nav {
    display: block;
    position: static;
  }
}

.p-header__hamburger {
  position: absolute;
  top: 2.0625rem;
  right: 0.9375rem;
  z-index: 100;
  height: inherit;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-header__hamburger {
    display: none;
  }
}

.p-header__hamburger span {
  width: 2.6875rem;
  height: 0.125rem;
  background-color: #fff;
  display: block;
  border-radius: 0.125rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}

.p-header__hamburger span:nth-child(2) {
  margin-top: 12px;
  margin-bottom: 12px;
}

.p-header__hamburger.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 14px;
}

.p-header__hamburger--sub.open span:nth-child(1) {
  background-color: #fff;
}

.p-header__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.p-header__hamburger.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: -14px;
}

.p-header__hamburger--sub.open span:nth-child(3) {
  background-color: #fff;
}

/* 特定セクションでのスタイル */
@media screen and (min-width: 768px) {
  .p-header.is-active .p-header__hamburger span {
    background: -webkit-gradient(linear, left top, right top, color-stop(0.15%, #08AAB5), color-stop(99.83%, #0058C0));
    background: linear-gradient(90deg, #08AAB5 0.15%, #0058C0 99.83%);
  }
}

@media screen and (min-width: 768px) {
  .p-header.is-active .p-header-nav__item {
    background: -webkit-gradient(linear, left top, right top, color-stop(0.15%, #08AAB5), color-stop(99.83%, #0058C0));
    background: linear-gradient(90deg, #08AAB5 0.15%, #0058C0 99.83%);
    -webkit-background-clip: text;
    color: transparent;
    background-clip: text;
  }
}

.p-header.is-active .p-header-nav__item--btn {
  color: #fff;
}

.p-mv {
  position: relative;
  height: 100dvh;
  width: 100%;
}

.p-mv__swiper {
  width: 100%;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

.p-mv__swiper .swiper-slide source,
.p-mv__swiper .swiper-slide img {
  width: 100%;
  height: 100dvh;
  aspect-ratio: 375/762;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-mv__swiper .swiper-slide source,
  .p-mv__swiper .swiper-slide img {
    aspect-ratio: 1512/982;
  }
}

.p-mv__container {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -67%);
          transform: translate(-50%, -67%);
  z-index: 1;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-mv__container {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.p-mv__title {
  text-align: center;
}

.p-mv__title img {
  max-width: 21.5625rem;
  width: 100%;
  height: 100%;
  aspect-ratio: 345/98;
  -o-object-fit: cover;
     object-fit: cover;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-mv__title img {
    max-width: 44.0625rem;
    aspect-ratio: 705/199;
  }
}

.p-mv__en {
  margin-top: 0.375rem;
  color: #fff;
  text-align: center;
  font-size: 0.9375rem;
  font-family: "Roboto", sans-serif;
  font-weight: 200;
}
@media screen and (min-width: 768px) {
  .p-mv__en {
    font-size: 1.875rem;
    margin-top: 1rem;
  }
}

.p-mv__scroll {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.p-mv__scroll.hidden {
  opacity: 0;
  pointer-events: none;
}

.p-mv__scroll.is-active .type a {
  background: -webkit-gradient(linear, left top, right top, color-stop(0.15%, #08AAB5), color-stop(99.83%, #0058C0));
  background: linear-gradient(90deg, #08AAB5 0.15%, #0058C0 99.83%);
  -webkit-background-clip: text;
  color: transparent;
  background-clip: text;
}

.p-mv__scroll.is-active .type a::after {
  background: -webkit-gradient(linear, left top, right top, color-stop(0.15%, #08AAB5), color-stop(99.83%, #0058C0));
  background: linear-gradient(90deg, #08AAB5 0.15%, #0058C0 99.83%);
}

.type {
  position: relative;
  width: 100%;
  height: 100vh;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.type a {
  display: inline-block;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 10px 10px 70px;
  color: #fff;
  font-size: 0.625rem;
  font-family: "Roboto", sans-serif;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-decoration: none;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
}
.type a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 60px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .type a::after {
    height: 100px;
  }
}
.type a:hover {
  opacity: 0.5;
}
@media screen and (min-width: 768px) {
  .type a {
    right: 5rem;
    font-size: 1.25rem;
    padding: 10px 10px 110px;
  }
}

#type01 a::after {
  -webkit-animation: sdl01 2.5s cubic-bezier(1, 0, 0, 1) infinite;
          animation: sdl01 2.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@-webkit-keyframes sdl01 {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}

@keyframes sdl01 {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
#type02 a::after {
  -webkit-animation: sdl02 3.5s cubic-bezier(1, 0, 0, 1) infinite;
          animation: sdl02 3.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@-webkit-keyframes sdl02 {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  25% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  25.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  40%, 100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}

@keyframes sdl02 {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  25% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  25.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  40%, 100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
.p-recruit {
  padding: 1.5rem 0 2.9375rem;
  background: url(../img/bg_recruit-sp.jpg) no-repeat center/cover;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-recruit {
    padding: 2.3125rem 0 5.8125rem;
    background: url(../img/bg_recruit.jpg) no-repeat center/cover;
  }
}

.p-recruit__text {
  margin-top: 2.3125rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7142857143;
  letter-spacing: 0.7px;
  display: block;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-recruit__text {
    margin-top: 1.0625rem;
    text-align: left;
    font-size: 0.9375rem;
    line-height: 1.7333333333;
    letter-spacing: 0.75px;
    margin-inline: unset;
  }
}

.p-recruit__btn {
  margin-top: 2.9375rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-recruit__btn {
    margin-top: 3.125rem;
    text-align: left;
  }
}

.p-service {
  padding: 2.5rem 0 5.1875rem;
  position: relative;
  background: #fff;
  overflow: hidden;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-service {
    padding: 5.625rem 0 8.75rem;
  }
}

.p-service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0; /* 最初は横幅を0に設定 */
  background: #F1F1F1;
  -webkit-transition: width 1s ease-out;
  transition: width 1s ease-out;
  z-index: -1;
}

.p-service.animate::before {
  width: 80%;
}

.p-service__title {
  text-align: left;
}

.p-service__container {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-service__container {
    margin-top: 3.75rem;
  }
}

.p-service__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .p-service__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-service__item:nth-child(n+2) {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-service__item:nth-child(n+2) {
    margin-top: 0;
  }
}

.p-service__body {
  background: #fff;
  padding: 1.4375rem 1.25rem 1.1875rem 1.875rem;
  z-index: 1;
  margin-top: -2.125rem;
  margin-left: calc(50% - 50vw);
  margin-right: 3%;
}
@media screen and (min-width: 768px) {
  .p-service__body {
    position: absolute;
    width: 49.8652291105%;
    margin-top: 0;
    margin-right: auto;
    padding: 2.1875rem 3.0625rem 2.5rem 3.375rem;
    max-width: 34.6875rem;
    margin-left: unset;
  }
}

.p-service__number {
  font-size: 0.8125rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 1.3px;
  background: -webkit-gradient(linear, left top, right top, color-stop(0.15%, #08AAB5), color-stop(99.83%, #0058C0));
  background: linear-gradient(90deg, #08AAB5 0.15%, #0058C0 99.83%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .p-service__number {
    font-size: 1.25rem;
    letter-spacing: 2px;
  }
}

.p-service__read {
  margin-top: 0.3125rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4375;
  letter-spacing: 1.6px;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, .5);
}
@media screen and (min-width: 768px) {
  .p-service__read {
    font-size: 1.5rem;
    line-height: 1.4583333333;
    letter-spacing: 2.4px;
    padding-bottom: 1.3125rem;
  }
}

.p-service__read span {
  font-size: 0.625rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  position: relative;
  padding-left: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-service__read span {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding-left: 1.875rem;
  }
}

.p-service__read span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0.25rem;
  width: 0.625rem;
  height: 0.625rem;
  background: url(../img/icon-service.png) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .p-service__read span::before {
    width: 1rem;
    height: 1rem;
    left: 0.5rem;
  }
}

.p-service__text {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7142857143;
  letter-spacing: 0.7px;
}
@media screen and (min-width: 768px) {
  .p-service__text {
    margin-top: 1.25rem;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.7333333333;
    letter-spacing: 0.75px;
  }
}

.p-service__img {
  margin-left: 10%;
  margin-right: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-service__img {
    margin-left: auto;
    width: 71.2488769093%;
    min-width: 49.5625rem;
    margin-right: unset;
    height: 100%;
    display: inline-block;
  }
}

.p-service__img .passing .passing-bar {
  display: block;
}

.p-service__btn {
  margin-top: 3.75rem;
  background: #fff;
  position: relative;
}

.p-service__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3.75rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.0625rem;
  height: 1.0625rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: url(../img/arrow_blue.svg) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .p-service__btn::after {
    width: 1.5rem;
    height: 1.5rem;
    right: 27.5625rem;
  }
}

.p-service__btn:hover:after {
  right: 3.4375rem;
}
@media screen and (min-width: 768px) {
  .p-service__btn:hover:after {
    right: 27.25rem;
  }
}

.p-service__btn a {
  display: block;
  text-align: center;
  width: 100%;
  background: #fff;
  background: -webkit-gradient(linear, left top, right top, color-stop(0.15%, #08AAB5), color-stop(99.83%, #0058C0));
  background: linear-gradient(90deg, #08AAB5 0.15%, #0058C0 99.83%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0.9375rem 0 1.0625rem;
  border: 1px solid;
  -o-border-image: linear-gradient(90deg, #08AAB5 0.15%, #0058C0 99.83%);
     border-image: -webkit-gradient(linear, left top, right top, color-stop(0.15%, #08AAB5), color-stop(99.83%, #0058C0));
     border-image: linear-gradient(90deg, #08AAB5 0.15%, #0058C0 99.83%);
  border-image-slice: 1;
}

.p-test {
  color: red;
  font-size: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-test {
    font-size: 3.125rem;
  }
}

.p-work {
  padding: 1.25rem 0 5.625rem;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(8, 170, 181, .5)), color-stop(48%, rgba(0, 88, 192, .5)), color-stop(48%, #fff), to(#fff));
  background: linear-gradient(180deg, rgba(8, 170, 181, .5) 0%, rgba(0, 88, 192, .5) 48%, #fff 48%, #fff 100%);
}
@media screen and (min-width: 768px) {
  .p-work {
    padding: 3.75rem 0 8.125rem;
  }
}

.p-work__container {
  position: relative;
}

.p-work__swiper {
  margin-top: 0.625rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-work__swiper {
    margin-top: 3.75rem;
  }
}

.p-work__swiper .swiper-slide source,
.p-work__swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  aspect-ratio: 345/270;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-work__swiper .swiper-slide source,
  .p-work__swiper .swiper-slide img {
    aspect-ratio: 360/449;
  }
}

.p-work__swiper .swiper-slide {
  position: relative;
  max-height: 16.875rem;
}
@media screen and (min-width: 768px) {
  .p-work__swiper .swiper-slide {
    max-height: 100%;
  }
}

.p-work__swiper .swiper-slide p {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.375rem 0 0.5625rem;
  background: rgba(0, 0, 0, .75);
  color: #fff;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.4666666667;
  letter-spacing: 1.125px;
}

.p-work__container .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -25px;
}

.swiper-pagination-bullet-active {
  background: -webkit-gradient(linear, left top, right top, color-stop(0.15%, #08AAB5), color-stop(99.83%, #0058C0));
  background: linear-gradient(90deg, #08AAB5 0.15%, #0058C0 99.83%);
}

.p-work__container .swiper-button-prev {
  left: -1.25rem;
  width: 2.5rem;
}

.p-work__container .swiper-button-prev img {
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, .25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, .25);
}

.p-work__container .swiper-button-next {
  right: -1.25rem;
  width: 2.5rem;
}

.p-work__container .swiper-button-next img {
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, .25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, .25);
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}
/*# sourceMappingURL=styles.css.map */
