@charset "UTF-8";
.chakra-petch {
  font-family: "Chakra Petch", serif;
  font-style: normal;
}

@font-face {
  font-family: "LINESeed";
  src: url("../font/LINESeedJP_OTF_Rg.woff") format("woff");
  src: url("../font/LINESeedJP_OTF_Rg.woff2") format("woff2");
}
html {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
  font-size: 100%;
}
@media (max-width: 1280px) {
  html {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "LINESeed", sans-serif;
  color: #393e3e;
  background-color: #fff;
  line-height: 1.65;
}

a,
button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover,
button:hover {
  opacity: 0.7;
  cursor: pointer;
}

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
}

.scroll_up.on {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

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

/* 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%;
  height: auto;
  display: block;
}

video {
  vertical-align: bottom;
  width: 100%;
}

/* 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-header {
  width: 90%;
  height: 5.125rem;
  max-height: 8vh;
  margin: auto;
  padding-top: 2vh;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-header {
    width: 95%;
    height: 3.125rem;
  }
}

.l-header__inner {
  width: 90%;
  height: 5.125rem;
  max-height: 8vh;
  min-height: 4rem;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 2.5625rem;
  padding-left: 1rem;
  padding-right: 1rem;
  position: fixed;
  left: 5%;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    width: 95%;
    height: 3.125rem;
    min-height: 3.125rem;
    padding-left: 2%;
    padding-right: 2%;
    left: auto;
  }
}

.l-home__mv-inner {
  height: 90vh;
  position: relative;
}

.l-inner {
  position: relative;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 80rem;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.l-inner--narrow {
  width: 100%;
  max-width: 62.5rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .l-inner--narrow {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.l-page__head {
  padding-top: 5.875rem;
  padding-bottom: 7.5rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .l-page__head {
    padding-top: 3rem;
    padding-bottom: 5.5rem;
  }
}

.l-section {
  position: relative;
  padding: 7.5rem 0;
}
@media screen and (max-width: 767px) {
  .l-section {
    padding: 3.5rem 0;
  }
}

.l-section--with-tab-next {
  /* 84px = .c-section__tab-borderの高さ */
  padding-bottom: 12.75rem;
}
@media screen and (max-width: 767px) {
  .l-section--with-tab-next {
    padding-bottom: 8.75rem;
  }
}

.l-section__snap {
  height: 100vh;
  overflow-y: scroll;
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-section__snap {
    height: auto;
  }
}

.l-section__snap::-webkit-scrollbar {
  display: none;
}

.l-wrapper {
  width: 100%;
  overflow-x: hidden;
}

.c-breadcrmb li {
  display: inline-block;
  font-size: 0.875rem;
  color: #51BDE8;
}
.c-breadcrmb a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #A8A8A8;
}
.c-breadcrmb a::after {
  content: "";
  width: 0.5625rem;
  height: 0.0625rem;
  margin-left: 0.3125rem;
  background-color: #A8A8A8;
}

.c-button {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #279cca;
  color: #fff;
  padding: 1.375rem 5.875rem 1.375rem 3rem;
  line-height: 1;
  border-radius: 1.875rem;
}
@media screen and (max-width: 767px) {
  .c-button {
    min-width: 12.75rem;
    padding: 1rem 5rem 1rem 2.5rem;
  }
}

.c-button::after {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background: url(../images/w-arrow.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.875rem;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .c-button::after {
    width: 1.625rem;
    height: 1.625rem;
  }
}

.c-button--white {
  background-color: #fff;
  color: #279cca;
}

.c-button--white::after {
  background: url(../images/b-arrow.png) no-repeat;
  background-size: contain;
}

.c-page-title {
  font-size: 1rem;
  font-weight: 400;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .c-page-title {
    font-size: 0.875rem;
    margin-top: 3rem;
  }
}

.c-page-title::before {
  content: attr(data-text);
  display: block;
  font-family: "chakra petch", sans-serif;
  font-size: 5.625rem;
  font-weight: 500;
  line-height: 3.9375rem;
  color: #279cca;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .c-page-title::before {
    font-size: 3rem;
    margin-bottom: 0;
  }
}

.c-page-title--white {
  color: #fff;
}

.c-page-title--white::before {
  color: #fff;
}

.c-section--grad {
  background: radial-gradient(38.86% 65.31% at 87.8% 88.54%, #4DA8DD 0%, #62B9DB 100%);
  color: #fff;
}

.c-section--secondary {
  background-color: #F4F5F6;
}

.c-section__title {
  color: #279cca;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .c-section__title {
    font-size: 0.875rem;
  }
}

.c-section__title::before {
  content: attr(data-text);
  display: block;
  font-family: "chakra petch", sans-serif;
  font-size: 5rem;
  line-height: 3.5rem;
  letter-spacing: 0;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .c-section__title::before {
    font-size: 2.5rem;
    margin-bottom: 0;
  }
}

.c-section__title--white,
.c-section__title--white::before {
  color: #fff;
}

.c-section__title--black,
.c-section__title--black::before {
  color: #393e3e;
}

.c-section__title--row {
  margin-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.c-section__title--row::before {
  content: attr(data-text);
  display: inline-block;
  font-family: "chakra petch", sans-serif;
  color: #279cca;
  font-size: 5.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-right: 2rem;
}
@media screen and (max-width: 767px) {
  .c-section__title--row::before {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
}

.c-section__tab .c-section__title {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  top: -9rem;
  left: 2.5rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-section__tab .c-section__title {
    top: -7.5rem;
  }
}
.c-section__tab .c-section__tab-border {
  content: "";
  display: block;
  width: 100%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  border-bottom: 5.25rem solid #fff;
  border-left: 5.25rem solid transparent;
  border-right: 5.25rem solid transparent;
  position: absolute;
  top: -3.5rem;
  left: -5.25rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .c-section__tab .c-section__tab-border {
    border-left: 3rem solid transparent;
    border-right: 3rem solid transparent;
    top: -1rem;
    left: -3rem;
  }
}
.c-section__tab .c-section__tab-border::after {
  content: "";
  width: 1.25rem;
  height: 5.25rem;
  background-color: #fff;
  -webkit-transform: skewX(45deg);
          transform: skewX(45deg);
  position: absolute;
  right: -5.25rem;
  top: 0;
}
@media screen and (max-width: 767px) {
  .c-section__tab .c-section__tab-border::after {
    width: 0.625rem;
    -webkit-transform: skewX(30deg);
            transform: skewX(30deg);
    right: -2.5rem;
  }
}

.c-section--secondary.c-section__tab .c-section__title .c-section__tab-border {
  border-bottom: 5.25rem solid #F4F5F6;
}
.c-section--secondary.c-section__tab .c-section__title .c-section__tab-border::after {
  background-color: #F4F5F6;
}

.c-section--grad.c-section__tab .c-section__title {
  color: #fff;
}
.c-section--grad.c-section__tab .c-section__title .c-section__tab-border {
  border-bottom: 5.25rem solid #62B9DB;
}
.c-section--grad.c-section__tab .c-section__title .c-section__tab-border::after {
  background-color: #62B9DB;
}

.c-section__sub-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-section__sub-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
.c-section__sub-title small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #279cca;
  font-family: "chakra petch", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 0.5rem;
  margin-top: 0.5rem;
}
.c-section__sub-title small::before {
  content: "";
  display: inline-block;
  width: 0.3125rem;
  height: 0.3125rem;
  background-color: #E6001B;
  margin-right: 0.5rem;
}

.c-text {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-inline: calc(50% - 50vw);
}

.c-text__item {
  color: #fff;
  line-height: 1.1;
  white-space: nowrap;
  font-family: "chakra petch", sans-serif;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 7rem;
  white-space: nowrap;
}
.c-text__item:nth-child(odd) {
  -webkit-animation: MoveLeft 80s -40s infinite linear;
          animation: MoveLeft 80s -40s infinite linear;
}
.c-text__item:nth-child(even) {
  -webkit-animation: MoveLeft2 80s infinite linear;
          animation: MoveLeft2 80s infinite linear;
}
@media screen and (max-width: 767px) {
  .c-text__item {
    font-size: 4rem;
  }
}

@-webkit-keyframes MoveLeft {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes MoveLeft {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes MoveLeft2 {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@keyframes MoveLeft2 {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@media screen and (max-width: 767px) {
  .p-about {
    padding-top: 0;
  }
}

.p-about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-about__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.p-about__text-block {
  width: 38.9166666667%;
  margin-right: 7.6666666667%;
}
@media screen and (max-width: 767px) {
  .p-about__text-block {
    width: 100%;
    margin-right: 0;
  }
}

.p-about__title {
  font-size: 2.5rem;
  line-height: 1.4;
  font-weight: bold;
  margin-top: 2rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-about__title {
    font-size: 1.5rem;
    line-height: 1.55;
    margin-bottom: 2rem;
  }
}

.p-about__description {
  margin-bottom: 4rem;
  line-height: 2.35;
}
@media screen and (max-width: 767px) {
  .p-about__description {
    margin-bottom: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-about__button.c-button a {
    background-color: #fff;
    color: #279cca;
  }
}

.p-about__image-block {
  width: 53.3333333333%;
}
@media screen and (max-width: 767px) {
  .p-about__image-block {
    width: 100%;
    margin-top: 3rem;
  }
}

.p-about__bottom-block {
  position: relative;
  overflow: hidden;
  overflow: hidden;
}

.p-about__bottom-copy {
  position: absolute;
  bottom: -20%;
  font-size: 11.25rem;
  line-height: 1.9;
  white-space: nowrap;
  font-family: "chakra petch", sans-serif;
  color: #fff;
  font-weight: 500;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-about__bottom-copy {
    color: #8b9092;
  }
}

.p-career {
  background: url(../images/cta-bg.webp) no-repeat;
  background-size: 100% 100%;
  position: relative;
  overflow: hidden;
}

.p-career__copy {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: 1;
  font-size: 7rem;
  color: #fff;
  line-height: 1.9;
  white-space: nowrap;
  font-family: "chakra petch", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-career__copy {
    bottom: 1.5rem;
    font-size: 3rem;
  }
}

.p-career__heading {
  text-align: center;
  margin-bottom: 2rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-career__heading {
    margin-bottom: 1.5rem;
  }
}

.p-career__description {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-career__description {
    font-size: 1.25rem;
    line-height: 1.75;
  }
}

.c-w-button.p-career__button a {
  padding: 1.5rem 1.125rem 1.5rem 0rem;
  margin-bottom: 2.5rem;
  min-width: 18.75rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .c-w-button.p-career__button a {
    margin-bottom: 1.5rem;
    padding: 1.125rem 0.625rem 1.125rem 0rem;
    min-width: 15rem;
  }
}

.p-career__swiper img {
  -webkit-clip-path: polygon(1.5rem 0, 100% 0, 100% calc(100% - 1.5rem), calc(100% - 1.5rem) 100%, 0 100%, 0 1.5rem);
          clip-path: polygon(1.5rem 0, 100% 0, 100% calc(100% - 1.5rem), calc(100% - 1.5rem) 100%, 0 100%, 0 1.5rem);
}

.p-page-company__head::after {
  content: "";
  width: 16.9375rem;
  max-width: 56%;
  aspect-ratio: 1/1;
  background: url(../images/company/company-head.webp) no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -2.75rem;
  right: 7.5rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-page-company__head::after {
    max-width: 30%;
    bottom: -20%;
    right: 5%;
  }
}

.p-page-company__mv {
  background: url(../images/company/company-mv.webp) no-repeat;
  background-size: cover;
  height: 32.5rem;
  border-radius: 0 0.1875rem 0.1875rem 0;
}
@media screen and (max-width: 767px) {
  .p-page-company__mv {
    background-image: url(../images/company/company-mv-sp.webp);
    height: auto;
    aspect-ratio: 375/208;
    margin-top: -3.5rem;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
  }
}

.p-page-company-message__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-page-company-message__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 3.5rem;
  }
}

.p-page-company-message__box-left {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .p-page-company-message__box-left {
    width: 100%;
    margin-bottom: 2.5rem;
  }
}

.p-page-company-message__box-right {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .p-page-company-message__box-right {
    width: 100%;
  }
}

.p-page-company-message__img {
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-page-company-message__img {
    margin-top: 2.5rem;
  }
}

.p-page-company-message__sub-title {
  font-size: 2rem;
  line-height: 1.65;
  letter-spacing: 0.02em;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-page-company-message__sub-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.p-page-company-message__text {
  line-height: 2.25;
  letter-spacing: 0.02em;
}

.p-page-company-message__text--right {
  text-align: right;
  margin-top: 1rem;
}

.p-page-company-message__text--right span {
  font-size: 1.25rem;
}

.p-page-company-outline__box {
  background-color: #fff;
  padding: 3rem;
  letter-spacing: 0.02em;
  border-radius: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-page-company-outline__box {
    width: 90%;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    margin: auto;
  }
}

.p-page-company-outline__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5%;
     -moz-column-gap: 5%;
          column-gap: 5%;
  padding: 1.5rem 0;
  border-bottom: 1px solid #f1f1f1;
}
@media screen and (max-width: 767px) {
  .p-page-company-outline__item {
    background-color: #fff;
    border: none;
    border-radius: 0.9375rem;
    margin-bottom: 1rem;
    padding: 1.5rem 5%;
  }
}

.p-page-company-outline__item:first-of-type {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .p-page-company-outline__item:first-of-type {
    padding: 1.5rem 5%;
  }
}

.p-page-company-outline__item:last-of-type {
  padding-bottom: 0;
  border: none;
}
@media screen and (max-width: 767px) {
  .p-page-company-outline__item:last-of-type {
    padding: 1.5rem 5%;
  }
}

.p-page-company-outline__head {
  width: 30%;
  font-weight: 700;
}

.p-page-company-outline__content {
  width: 65%;
  word-break: break-all;
}

.p-page-company-history {
  padding-top: 0;
}

.p-page-company-history__box {
  padding-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-page-company-history__box {
    padding-top: 3.5rem;
  }
}

.p-page-company-history__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .p-page-company-history__item {
    display: block;
    margin-bottom: 2rem;
  }
}
.p-page-company-history__item span {
  display: inline-block;
}

.p-page-company-history__date {
  width: 32%;
  font-family: "chakra petch", sans-serif;
  padding-right: 5%;
  border-right: 0.125rem solid #E0E0E0;
  padding-bottom: 4.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-page-company-history__date {
    border: none;
    padding-bottom: 0;
    padding-right: 0;
  }
}

.p-page-company-history__item:first-of-type .p-page-company-history__date::after {
  content: "";
  width: 0.125rem;
  height: 3.5rem;
  background-color: #F4F5F6;
  position: absolute;
  top: 0;
  right: -0.125rem;
}

.p-page-company-history__item:last-of-type .p-page-company-history__date::after {
  content: "";
  width: 0.125rem;
  height: 4.75rem;
  background-color: #F4F5F6;
  position: absolute;
  bottom: 0;
  right: -0.125rem;
}

.p-page-company-history__date--year {
  width: 11.25rem;
  color: #279cca;
  font-size: 5rem;
  font-weight: 400;
  line-height: 3.5rem;
  margin-right: 1rem;
}
@media screen and (max-width: 767px) {
  .p-page-company-history__date--year {
    width: auto;
    font-size: 1.5rem;
  }
}

.p-page-company-history__date--year-fit {
  letter-spacing: -0.04em;
}

.p-page-company-history__date--month {
  width: 2em;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #BDDDEA;
}

.p-page-company-history__content {
  width: 68%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  letter-spacing: 0.02em;
  padding-left: 5%;
  padding-bottom: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-page-company-history__content {
    width: 100%;
    padding-bottom: 0;
    padding-left: 0;
  }
}

.p-page-company-history__content::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-color: #E6001B;
  position: absolute;
  bottom: 4.75rem;
  left: -0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-page-company-history__content::before {
    content: none;
  }
}

.p-page-company-history__content--color {
  width: 5em;
  color: #279cca;
  margin-right: 1.5rem;
}

.p-page-company-history__content-text {
  width: calc(100% - 5em);
}

.p-page-company-access__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  min-height: 26.25rem;
  line-height: 1.75;
  letter-spacing: 0.02em;
  padding-left: calc(100% - 25rem);
  background: url(../images/company/access.webp) no-repeat center left;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-page-company-access__box {
    width: 95%;
    background-position: top center;
    padding-top: 56vw;
    padding-left: 0;
    margin: auto;
  }
}

.p-page-company-access__item {
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-page-company-access__item {
    margin-bottom: 1.5rem;
  }
}

.p-access__item--half {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-access__item--half {
    width: 100%;
  }
}

.p-page-company-access__head {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .p-page-company-access__head {
    margin-bottom: 0;
  }
}

.p-page-company-access__content {
  color: #8A8A8A;
}

.p-page-company-access__content-note {
  color: #393e3e;
  font-size: 80%;
}

.p-cta {
  background: url(../images/cta-bg.webp) no-repeat;
  background-size: cover;
  letter-spacing: 0.02em;
  padding: 5rem 0 3.375rem;
}

.p-cta__list {
  width: 85%;
  max-width: 62rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .p-cta__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.p-cta__item a {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 15rem;
  background-color: #fff;
  color: #279cca;
  font-size: 0.875rem;
  font-weight: 400;
  padding: 0 3.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-cta__item a {
    height: 12.5rem;
    padding: 0 2rem;
  }
}
.p-cta__item a::before {
  content: attr(data-text);
  display: block;
  font-size: 3rem;
  font-family: "chakra petch", sans-serif;
  line-height: 0.7;
  margin-bottom: 1.5rem;
}
.p-cta__item a::after {
  content: "";
  width: 1.9375rem;
  height: 1.9375rem;
  background: url(../images/b-arrow.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 3.5rem;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .p-cta__item a::after {
    right: 2rem;
  }
}

.p-cta__item-contact {
  width: 56%;
}
@media screen and (max-width: 767px) {
  .p-cta__item-contact {
    width: 100%;
  }
}
.p-cta__item-contact a {
  background: #fff url(../images/cta-contact.webp) no-repeat bottom center;
  background-size: contain;
  border-radius: 0.1875rem 0 0 0.1875rem;
}
@media screen and (max-width: 767px) {
  .p-cta__item-contact a {
    background-image: none;
  }
}
.p-cta__item-contact a::after {
  right: 11.75rem;
}
@media screen and (max-width: 767px) {
  .p-cta__item-contact a::after {
    right: 2rem;
  }
}

.p-cta__item-career {
  width: 44%;
}
@media screen and (max-width: 767px) {
  .p-cta__item-career {
    width: 100%;
  }
}
.p-cta__item-career a {
  border-radius: 0 0.1875rem 0.1875rem 0;
}

.p-cta--entry__box {
  background-color: #fff;
  text-align: center;
  padding: 3rem 5%;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-cta--entry__box {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-cta--entry__title {
  color: #279cca;
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.p-cta--entry__title::before {
  content: attr(data-text);
  display: block;
  font-size: 3rem;
  font-family: "chakra petch", sans-serif;
  line-height: 0.7;
  margin-bottom: 1rem;
}

.p-cta--entry__text {
  margin-bottom: 2.5rem;
  line-height: 2.25;
}

.p-facilities {
  background-color: #2c3134;
  padding-top: 0;
}

.p-facilities__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-facilities__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-facilities__text-block {
  width: 38.9166666667%;
}
@media screen and (max-width: 767px) {
  .p-facilities__text-block {
    display: contents;
    width: 100%;
    margin-right: 0;
  }
}

.p-facilities__description {
  margin-top: 2rem;
  margin-bottom: 2.5rem;
  line-height: 1.65;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 2.35;
}
@media screen and (max-width: 767px) {
  .p-facilities__description {
    margin-bottom: 2.5rem;
    color: #fff;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}

@media screen and (max-width: 767px) {
  .p-facilities__button {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
}

@media screen and (max-width: 767px) {
  .p-facilities__button.c-w-button a {
    background-color: #fff;
    color: #279cca;
  }
}

.p-facilities__image-block {
  width: 56.3333333333%;
  margin-right: 4.75%;
}
@media screen and (max-width: 767px) {
  .p-facilities__image-block {
    width: 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 2rem;
  }
}

.p-facilities__image-block img {
  border-radius: 15px;
}
.p-flow {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-flow__inner {
  z-index: 1;
  max-width: 80rem;
  padding: 0 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-flow__inner {
    padding: 0 5%;
  }
}

.p-flow__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-column-gap: 5rem;
     -moz-column-gap: 5rem;
          column-gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-flow__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-flow__text-block,
.p-flow__image-block {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-flow__image-block img {
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .p-flow__image-block {
    margin-top: 1.5rem;
  }
}

.p-flow__number {
  font-size: 1.5rem;
  color: #279cca;
  line-height: 1;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-flow__number {
    font-size: 1rem;
  }
}

.p-flow__title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 3rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-flow__title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
}

.p-flow__description {
  font-size: 1rem;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-flow__description {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

.p-flow__content {
  position: relative;
  text-align: center;
}

.p-flow__video {
  position: absolute;
  max-width: 34.375rem;
  width: 100%;
  aspect-ratio: 540/300;
  -o-object-fit: cover;
     object-fit: cover;
  bottom: 7.5rem;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0;
  -webkit-transition: 0.5s opacity ease;
  transition: 0.5s opacity ease;
}
@media screen and (max-width: 767px) {
  .p-flow__video {
    width: 100%;
  }
}

.p-flow__video--rotate {
  bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-flow__video--rotate {
    bottom: 5rem;
  }
}

.p-flow__video--falling {
  bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-flow__video--falling {
    bottom: 2rem;
  }
}

.p-flow__video.is-playing {
  opacity: 1;
  -webkit-transition: 0.5s opacity ease;
  transition: 0.5s opacity ease;
}

.p-flow__swiper-container .p-flow__swiper {
  overflow: hidden;
  position: relative;
}
.p-flow__swiper-container .p-flow__swiper-bottom {
  border: 0.5rem solid #0086C2;
  border-radius: 3.125rem;
  position: relative;
  margin-top: 1.5rem;
  padding: 2px 0;
}
@media screen and (max-width: 767px) {
  .p-flow__swiper-container .p-flow__swiper-bottom {
    border-width: 4px 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
  }
}
.p-flow__swiper-container .p-flow__swiper-bottom.played {
  margin-top: 18.75rem;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
@media screen and (max-width: 767px) {
  .p-flow__swiper-container .p-flow__swiper-bottom.played {
    margin-top: 12.5rem;
  }
}
.p-flow__swiper-container .p-flow__swiper-bottom.end {
  margin-top: 1.5rem;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.p-flow__swiper-container .swiper-pagination--flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  bottom: 0;
}
.p-flow__swiper-container .swiper-pagination-bullet {
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  background-color: #fff;
  border: 0.3125rem solid #279cca;
  position: relative;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-flow__swiper-container .swiper-pagination-bullet {
    width: 1.5rem;
    height: 1.5rem;
    border-width: 2px;
  }
}
.p-flow__swiper-container .swiper-pagination-bullet::after {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background-color: #279cca;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .p-flow__swiper-container .swiper-pagination-bullet::after {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.p-flow__swiper-container .swiper-button-next, .p-flow__swiper-container .swiper-button-prev {
  top: 40%;
  color: #279cca;
}
.p-flow__swiper-container .swiper-button-next:after, .p-flow__swiper-container .swiper-button-prev:after {
  text-rendering: initial;
}
.p-flow__swiper-container .swiper-button-prev, .p-flow__swiper-container .swiper-rtl .swiper-button-next {
  left: 0;
}
.p-flow__swiper-container .swiper-button-next, .p-flow__swiper-container .swiper-rtl .swiper-button-prev {
  right: 0;
}

.p-footer {
  background-color: #fff;
  padding-top: 5rem;
  padding-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

.p-footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 767px) {
  .p-footer__top {
    display: block;
  }
}

.p-footer__logo {
  max-width: 14.0625rem;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    max-width: 6.6875rem;
    margin-bottom: 0.625rem;
  }
}

.p-footer__name {
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.p-footer__address {
  font-size: 0.875rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-footer__address {
    font-size: 0.75rem;
  }
}

.p-footer__tel {
  font-size: 0.875rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-footer__tel {
    font-size: 0.75rem;
  }
}

.p-footer__nav-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-area {
    display: block;
    font-size: 1.125rem;
    font-weight: bold;
    margin-top: 2.5rem;
    margin-bottom: 1.75rem;
  }
}

.p-footer__nav-list {
  min-width: 5em;
}

.p-footer__nav-item a {
  display: block;
  width: 90%;
  margin-bottom: 0.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item a {
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item a span {
    content: "";
    width: 2.375rem;
    height: 1.25rem;
    background-color: #f4f4f4;
    border-radius: 3px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item a span::before, .p-footer__nav-item a span::after {
    content: "";
    width: 0.625rem;
    height: 1px;
    background-color: #393e3e;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item a span::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

@media screen and (max-width: 767px) {
  .p-footer__nav-item--arrow a::after {
    content: "";
    width: 2.375rem;
    height: 1.25rem;
    background: #f4f4f4 url(../images/basic-arrow-gray.png) no-repeat center center;
    background-size: 0.625rem;
    border-radius: 3px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
  }
}

.p-footer__nav-item + .p-footer__nav-item {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item + .p-footer__nav-item {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__nav-list-sub {
    display: none;
  }
}

.p-footer__nav-item-sub {
  color: #7C7C7C;
  font-size: 0.875rem;
}
.p-footer__nav-item-sub a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 10.3125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item-sub a {
    width: 60%;
    margin-top: -0.5rem;
  }
}
.p-footer__nav-item-sub a::after {
  content: "";
  width: 0.625rem;
  height: 0.5rem;
  background: url(../images/basic-arrow-gray.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.p-footer__btn-area {
  text-align: right;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__btn-area {
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

.p-fotter__copy-container {
  padding-top: 2rem;
  border-top: 1px solid #f0f0f0;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-fotter__copy-container {
    display: block;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }
}
.p-fotter__copy-container .p-footer__company-name {
  font-size: 1.125rem;
  font-weight: bold;
}
.p-fotter__copy-container .p-footer__info-area {
  margin-bottom: 1.5rem;
}

.p-footer__copyright {
  font-size: 0.8125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    font-size: 0.75rem;
    margin-bottom: 0.625rem;
  }
}

.p-footer__policy-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 1.25rem;
}
.p-footer__policy-item {
  font-size: 0.8125rem;
}

.p-header__logo {
  width: 9rem;
  margin-left: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: 4.1875rem;
    min-width: 18vw;
    margin-left: 1rem;
  }
}

.p-header__nav {
  font-size: min(1.5vw, 1rem);
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    background: #fff;
    font-size: 0.9375rem;
    position: fixed;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    top: 0;
    left: 0;
    z-index: -1;
    padding: 4.875rem 1.5rem 3rem;
    display: none;
  }
}

.p-header__nav-item {
  position: relative;
  margin-right: 2em;
}
@media screen and (max-width: 767px) {
  .p-header__nav-item {
    margin-right: 0;
    padding: 1.25rem 0;
    border-bottom: 1px solid #f4f4f4;
  }
}
@media screen and (max-width: 767px) {
  .p-header__nav-item span {
    content: "";
    width: 2.375rem;
    height: 1.25rem;
    background-color: #f4f4f4;
    border-radius: 3px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-header__nav-item span::before, .p-header__nav-item span::after {
    content: "";
    width: 0.625rem;
    height: 1px;
    background-color: #393e3e;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-header__nav-item span::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

.p-header__nav-item > a {
  display: block;
  margin-right: 2em;
}
@media screen and (max-width: 767px) {
  .p-header__nav-item > a::before {
    content: attr(data-text);
    display: block;
    color: #279cca;
    font-family: "chakra petch", sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
  }
}

.p-header__nav-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-header__nav-list {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .p-header__nav-item.is-hover span {
    top: 42px;
    bottom: auto;
  }
  .p-header__nav-item.is-hover span::after {
    display: none;
  }
}

.p-header__nav-list-sub {
  position: absolute;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  top: 3.5rem;
  left: -1.5rem;
  background-color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 1.5rem;
  z-index: 9;
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__nav-list-sub {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.5rem 0;
  }
}

.p-header__nav-item-sub {
  padding: 0.5rem 0;
}

.p-header__nav-item-sub a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 10.3125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-header__nav-item-sub a {
    width: 60%;
  }
}

.p-header__nav-item-sub a::after {
  content: "";
  width: 0.625rem;
  height: 0.5rem;
  background: url(../images/basic-arrow.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .p-header__nav-item-sub a::after {
    background: url(../images/basic-arrow-gray.png) no-repeat;
    background-size: contain;
  }
}

.p-header__info {
  font-family: "chakra petch", sans-serif;
  line-height: 1;
  margin-right: 2rem;
}

.p-header__info-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-header__info-item--tel {
  margin-bottom: 0.5rem;
}

.p-header__info-item--tel::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background: url(../images/icon-tel.png) no-repeat;
  background-size: contain;
  margin-right: 0.5rem;
}

.p-header__tel-link {
  font-size: 1.125rem;
}

.p-header__info-item--time {
  font-size: 0.9375rem;
}

.p-header__info-item--time::before {
  content: "";
  display: block;
  width: 1rem;
  height: 0.875rem;
  background: url(../images/icon-clock.png) no-repeat left;
  background-size: contain;
  margin-right: 0.5rem;
}

.p-header__recruit-button {
  max-width: 12.5rem;
  width: 12vw;
}

.p-header__recruit-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 1.5625rem;
  width: 100%;
  background-color: #279cca;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.125rem;
  letter-spacing: 0.08em;
  padding: 1rem 1.875rem 1rem 0;
  position: relative;
}

.p-header__recruit-link::after {
  content: "";
  width: 1.875rem;
  height: 1.875rem;
  background: url(../images/w-arrow.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.625rem;
  margin: auto;
}

.p-header__drawer {
  cursor: pointer;
  padding-right: 4px;
  position: relative;
}
.p-header__drawer span {
  display: block;
  width: 1.125rem;
  height: 2px;
  background-color: #279cca;
  border-radius: 1px;
  margin: 4px;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}

.p-header__drawer.open span:nth-child(2) {
  display: none;
}
.p-header__drawer.open span:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.p-header__drawer.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.p-home {
  background-color: #f0f0f0;
}
@media screen and (max-width: 767px) {
  .p-home {
    width: 100%;
    overflow-x: hidden;
  }
}

.p-home__section-tab {
  content: "";
  display: block;
  width: 23.75rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  border-bottom: 5.25rem solid #2c3134;
  border-left: 5.25rem solid transparent;
  border-right: 5.25rem solid transparent;
  position: absolute;
  top: -12.75rem;
  left: -3.25rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-home__section-tab {
    width: 11.875rem;
    border-left: 3rem solid transparent;
    border-right: 3rem solid transparent;
    top: -6.5rem;
    left: -1.25rem;
  }
}

.p-home__section-tab::after {
  content: "";
  width: 1.25rem;
  height: 5.25rem;
  background-color: #2c3134;
  -webkit-transform: skewX(45deg);
          transform: skewX(45deg);
  position: absolute;
  right: -5.25rem;
  top: 0;
}
@media screen and (max-width: 767px) {
  .p-home__section-tab::after {
    width: 0.625rem;
    -webkit-transform: skewX(30deg);
            transform: skewX(30deg);
    right: -2.5rem;
  }
}

.p-ishiyama {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-ishiyama {
    height: auto;
  }
}

.p-ishiyama__video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  vertical-align: bottom;
}
@media screen and (max-width: 767px) {
  .p-ishiyama__video {
    height: auto;
  }
}

.p-loading {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 99;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  text-align: center;
  background-color: #fff;
  opacity: 1;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}

.p-loading.loaded {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}

.p-loading__video {
  width: 100%;
  max-width: 300px;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-movie {
  padding: 0;
  margin-bottom: -3.75rem;
}
@media screen and (max-width: 767px) {
  .p-movie {
    margin-bottom: -2.375rem;
  }
}
.p-movie video {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-movie video {
    height: 60vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.p-mv {
  position: relative;
  overflow: hidden;
}

.p-mv__inner {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-mv__inner {
    height: auto;
  }
}

.p-mv__copy {
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  z-index: 1;
  font-size: 7rem;
  color: #279cca;
  white-space: nowrap;
  font-family: "chakra petch", sans-serif;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-mv__copy {
    font-size: 3rem;
    top: 10%;
  }
}
.p-mv__copy .c-text__item {
  background: linear-gradient(90.13deg, #279CCA 2.83%, #63D2D7 24.53%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .p-mv__copy .c-text__item {
    font-size: 3rem;
  }
}

.p-mv__container {
  width: 85%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 10vh;
}
@media screen and (max-width: 767px) {
  .p-mv__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin: 0 auto;
  }
}

.p-mv__text-block {
  width: 30%;
  margin-bottom: -5vh;
}
@media screen and (max-width: 767px) {
  .p-mv__text-block {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
  }
}

.p-mv__catch {
  font-size: max(2.2vw, 1.5rem);
  line-height: 1.6;
  font-weight: bold;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-mv__catch {
    font-size: 1.75rem;
    line-height: 1.65;
    text-align: left;
  }
}

.p-mv__highlight {
  color: #279cca;
}

.p-mv__image {
  width: 65%;
  aspect-ratio: 839/498;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-mv__image {
    width: 100%;
    margin-bottom: 3.875rem;
  }
}

.p-mv__image-under,
.p-mv__image-over {
  width: 100%;
  position: absolute;
  top: 0;
  -webkit-transform: scale(1.25);
          transform: scale(1.25);
}

.p-mv__image-under {
  right: 0;
  z-index: 1;
}

.p-mv__image-over {
  left: 0;
  z-index: 3;
}

.p-mv__copy {
  position: absolute;
  width: 100vw;
  top: 18vh;
  margin-left: calc(80% - 80vw);
}
@media screen and (max-width: 767px) {
  .p-mv__copy {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    top: 8vh;
  }
}

.p-mv__info-box {
  max-width: 46.25rem;
  font-size: 0.875rem;
  padding-top: 8vh;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .p-mv__info-box {
    width: 90%;
    margin: 3rem auto;
  }
}

.p-mv__info-status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.75rem 0.875rem 0.75rem 2rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-mv__info-status {
    padding: 0.75rem;
  }
}

.p-mv__info-status:first-of-type {
  border-radius: 0.5rem 0.5rem 0 0;
}

.p-mv__info-status:last-of-type {
  border-radius: 0 0 0.5rem 0.5rem;
}

.p-mv__info-label {
  width: 7em;
  color: #279cca;
  font-weight: bold;
  margin-right: 1em;
  font-family: "chakra petch", sans-serif;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-mv__info-label {
    width: 4em;
    margin-right: 1rem;
  }
}

.p-mv__info-link {
  width: calc(100% - 7em);
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 2rem;
  border-left: 1px solid #c5cccc;
}
@media screen and (max-width: 767px) {
  .p-mv__info-link {
    width: calc(100% - 4em);
    padding-left: 1rem;
    display: block;
  }
}

a.p-mv__info-link::after {
  content: "";
  background: #279cca url(../images/info-arrow.png) no-repeat center center;
  background-size: 1rem;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 24px;
  margin: auto;
  border-radius: 0.1875rem;
}
@media screen and (max-width: 767px) {
  a.p-mv__info-link::after {
    width: 1.875rem;
    height: 1rem;
  }
}

.p-mv__info-date {
  color: #c5cccc;
  margin-right: 0.75rem;
  font-size: 0.875rem;
}

.p-mv__info-text {
  font-weight: bold;
  margin-right: 2rem;
  font-size: 0.875rem;
}

.p-mv__info-arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #279cca;
  padding: 0.625rem 1rem;
  border-radius: 0.3125rem;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  margin-top: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-mv__info-arrow {
    margin-top: 0.25rem;
  }
}

.p-mv__info-arrow:hover {
  background-color: #279cca;
}

.p-mv__arrow-icon {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 1px;
  background-color: #fff;
}

.p-mv__arrow-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 4px;
  height: 4px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.bg-news-page {
  background-color: #fff;
}

.p-news-main {
  background-color: #fff;
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .p-news-main {
    margin-bottom: 5rem;
  }
}

.p-news-main__breadcrumb {
  margin-bottom: 3rem;
}

.p-news-main__title {
  color: #279cca;
  margin-bottom: 1.25rem;
}

.p-news-main__subtitle {
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-news-main__subtitle {
    margin-bottom: 4rem;
  }
}

.p-news-main__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-news-main__block {
    display: block;
  }
}

.p-news-main__filter {
  width: 18.9166666667%;
  margin-right: 7%;
}
@media screen and (max-width: 767px) {
  .p-news-main__filter {
    width: 100%;
  }
}

.p-news-main__category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-news-main__category-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}

.p-news-main__category-item {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background-color: #fff;
  color: #279cca;
  border-radius: 3.125rem;
  font-size: 1rem;
  font-weight: bold;
  min-width: 13.75rem;
  text-align: center;
  border: 1px solid #279cca;
}
@media screen and (max-width: 767px) {
  .p-news-main__category-item {
    min-width: 6.25rem;
    font-size: 0.75rem;
  }
}

.p-news-main__category-item--active {
  background-color: #279cca;
  color: #fff;
}

.p-news-main__content {
  width: 74.0833333333%;
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .p-news-main__content {
    width: 100%;
  }
}

.p-news-list {
  border-top: 1px solid #E6E6E6;
}

.p-news-list__item {
  padding: 3rem 1rem;
  border-bottom: 1px solid #E6E6E6;
}

.p-news-list__link {
  display: block;
  padding: 3rem 1.5rem;
  background-color: #fff;
  border-radius: 0.625rem;
  border-top: 1px solid #f0f0f0;
}
@media screen and (max-width: 767px) {
  .p-news-list__link {
    padding: 2rem 0;
  }
}

.p-news-list__link:last-child {
  border-bottom: 1px solid #f0f0f0;
}

.p-news-list__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-news-list__block {
    display: block;
  }
}

.p-news-list__block-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-news-list__block-top {
    margin-bottom: 1rem;
  }
}

.p-news-list__date {
  font-size: 0.875rem;
  font-family: "chakra petch", sans-serif;
  line-height: 1;
  margin-right: 4rem;
}
@media screen and (max-width: 767px) {
  .p-news-list__date {
    margin-right: 1rem;
  }
}

.p-news-list__label {
  width: 6em;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  text-align: center;
  margin-right: 4rem;
  border: 1px solid #279cca;
  font-size: 0.75rem;
  line-height: 1;
  padding: 0.375rem 0.5rem;
  color: #279cca;
  border-radius: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-news-list__label {
    margin-right: 0;
  }
}

.p-news-list__text {
  margin-right: 8.75rem;
  font-weight: bold;
}

.p-news-list__icon {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 1px;
  background-color: #279cca;
}

.p-news-list__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid #279cca;
  border-right: 1px solid #279cca;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.p-page-contact {
  /* 確認画面の時のスタイル */
}
.p-page-contact .wpforms-container .wpforms-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-page-contact .smf-form--simple-table .smf-item__col--label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  letter-spacing: 0.02em;
}
.p-page-contact .smf-item__description {
  color: #279cca;
  margin-top: 0;
  margin-left: 2px;
}
.p-page-contact .smf-form .smf-text-control__control,
.p-page-contact .smf-form .smf-select-control__control {
  width: 100%;
  max-width: none;
  border: none;
  background-color: #F5F5F5;
  line-height: 1.375rem;
  padding: 1.25rem 1.5rem;
  border-radius: 2rem;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.p-page-contact .smf-form .smf-select-control {
  display: block !important;
}
.p-page-contact .smf-textarea-control__control {
  width: 100%;
  border: none;
  background-color: #F5F5F5;
  border-radius: 0.3125rem;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.p-page-contact .smf-action {
  padding-left: 14em;
}
@media screen and (max-width: 767px) {
  .p-page-contact .smf-action {
    padding: 0;
  }
}
.p-page-contact .smf-button-control__control {
  position: relative;
  display: block;
  width: 100%;
  background-color: #279cca;
  background-image: none;
  color: #fff;
  line-height: 1.375rem;
  font-weight: 700;
  text-align: center;
  border: none;
  padding: 1rem;
  border-radius: 1.6875rem;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.p-page-contact .smf-button-control__control::after {
  content: "";
  width: 1rem;
  height: 0.75rem;
  background: url(../images/basic-arrow-w.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.375rem;
  margin: auto;
}
.p-page-contact button.smf-button-control__control[data-action=back] {
  background-color: #ccc;
}
.p-page-contact .privacy-container {
  width: calc(100% - 12em - 3rem);
  height: 9.75rem;
  overflow-y: scroll;
  border: none;
  background-color: #F5F5F5;
  border-radius: 0.3125rem;
  line-height: 2.25;
  letter-spacing: 0.02em;
  padding: 1.5rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.p-page-contact .privacy-container ul {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 1em;
}
.p-page-contact .privacy-container ol {
  list-style-type: decimal;
  list-style-position: inside;
  padding-left: 1em;
}
.p-page-contact .privacy-container ul li ul {
  list-style-type: circle;
}
.p-page-contact .privacy-container p + p {
  margin-top: 1em;
}
.p-page-contact form[data-screen=confirm] .privacy-area,
.p-page-contact form[data-screen=confirm] .privacy-check-area {
  display: none;
}

.p-page-contact__head {
  padding-bottom: 0;
}

.p-page-contact-section {
  padding-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-page-contact-section {
    padding-top: 0;
  }
}
.p-page-contact-section .c-page-title {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-page-contact-section .c-page-title {
    margin-top: 3rem;
    padding-bottom: 5.5rem;
  }
}

.p-page-contact-section__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5rem;
     -moz-column-gap: 5rem;
          column-gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-page-contact-section__box {
    display: block;
  }
}

.p-page-contact-section__content-area {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-page-contact-section__content-area {
    max-width: 30rem;
    margin: auto;
  }
}

.p-page-facility__head::after {
  content: "";
  width: 32.3125rem;
  max-width: 56%;
  aspect-ratio: 517/307;
  background: url(../images/facility/facility-head.webp) no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -3.625rem;
  right: 0;
}
@media screen and (max-width: 767px) {
  .p-page-facility__head::after {
    bottom: -18%;
    right: 5%;
  }
}

.p-page-facility__mv {
  background: url(../images/facility/facility-mv.webp) no-repeat;
  background-size: cover;
  height: 32.5rem;
  margin-left: calc(50% - 50vw);
  border-radius: 0 0.1875rem 0.1875rem 0;
}
@media screen and (max-width: 767px) {
  .p-page-facility__mv {
    background-image: url(../images/facility/facility-mv-sp.webp);
    height: auto;
    aspect-ratio: 375/208;
    margin-top: -3.5rem;
    margin-right: calc(50% - 50vw);
    border-radius: 0;
  }
}

.p-page-facility-message__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 6%;
     -moz-column-gap: 6%;
          column-gap: 6%;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-page-facility-message__box {
    margin-top: 2.5rem;
  }
}
.p-page-facility-message__box .p-page-facility-message__item {
  width: 48%;
  font-weight: 400;
  line-height: 2.25;
}
.p-page-facility-message__box .p-page-facility-message__item strong {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-page-facility-message__box .p-page-facility-message__item strong {
    font-size: 1.5rem;
  }
}
.p-page-facility-message__box .p-page-facility-message__item:nth-child(1) {
  width: 54%;
}
@media screen and (max-width: 767px) {
  .p-page-facility-message__box .p-page-facility-message__item:nth-child(1) {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.p-page-facility-message__box .p-page-facility-message__item:nth-child(2) {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .p-page-facility-message__box .p-page-facility-message__item:nth-child(2) {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-page-facility-message__box {
    display: block;
    margin-top: 3rem;
  }
}

.p-page-facility-content__box + .p-page-facility-content__box {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-page-facility-content__box + .p-page-facility-content__box {
    margin-top: 3.5rem;
  }
}

.p-page-facility-content__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  row-gap: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-page-facility-content__list {
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
    row-gap: 3.5rem;
  }
}
.p-page-facility-content__list .p-page-facility-content__item::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 480/270;
  margin-bottom: 1.5rem;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .p-page-facility-content__list .p-page-facility-content__item::before {
    margin-bottom: 1rem;
  }
}

.p-page-facility-content__list--factory01 .p-page-facility-content__item:nth-child(1):before {
  background: url(../images/facility/facility-content01.webp) no-repeat;
  background-size: cover;
}

.p-page-facility-content__list--factory01 .p-page-facility-content__item:nth-child(2):before {
  background: url(../images/facility/facility-content02.webp) no-repeat;
  background-size: cover;
}

.p-page-facility-content__list--factory02 .p-page-facility-content__item:nth-child(1):before {
  background: url(../images/facility/facility-content03.webp) no-repeat;
  background-size: cover;
}

.p-page-facility-content__list--factory02 .p-page-facility-content__item:nth-child(2):before {
  background: url(../images/facility/facility-content04.webp) no-repeat;
  background-size: cover;
}

.p-page-facility-content__list--factory02 .p-page-facility-content__item:nth-child(3):before {
  background: url(../images/facility/facility-content05.webp) no-repeat;
  background-size: cover;
}

.p-page-facility-content__list--factory02 .p-page-facility-content__item:nth-child(4):before {
  background: url(../images/facility/facility-content06.webp) no-repeat;
  background-size: cover;
}

.p-page-recruit__bg {
  background: radial-gradient(404.05% 51.43% at 50% 8.79%, #2588C3 0%, #62B9DB 100%);
  position: relative;
  z-index: 1;
}

.p-page-recruit__bg::before {
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#FFFFFF), color-stop(20%, rgba(255, 255, 255, .831702)), color-stop(45%, rgba(255, 255, 255, 0)));
  background: linear-gradient(to top, #FFFFFF 0%, rgba(255, 255, 255, .831702) 20%, rgba(255, 255, 255, 0) 45%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.p-page-recruit__head {
  position: relative;
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-page-recruit__head {
    padding-top: 0;
  }
}

.p-page-recruit__head::before {
  content: "";
  width: 100%;
  height: 0;
  -webkit-box-shadow: 0px 44.27px 96.2px rgba(1, 37, 55, .1019607843);
          box-shadow: 0px 44.27px 96.2px rgba(1, 37, 55, .1019607843);
  position: absolute;
  top: 0;
  left: 0;
}

.p-page-recruit-message {
  color: #fff;
  padding: 2.5rem 0 0;
  position: relative;
}

.p-page-recruit-message::after {
  content: "";
  display: block;
  width: 94%;
  aspect-ratio: 1344/672;
  background: url(../images/recruit/recruit-message.webp) no-repeat;
  background-size: cover;
  border-radius: 1.5625rem;
  margin: 5rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-page-recruit-message::after {
    width: 100%;
  }
}

.p-page-recruit__mv {
  background: url(../images/recruit/recruit-mv.webp) no-repeat top center;
  background-size: 100%;
  padding-top: 22vw;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-page-recruit__mv {
    background-image: url(../images/recruit/recruit-mv-sp.webp);
    padding-top: 50vw;
    margin-top: 3.5rem;
  }
}

.p-page-recruit__mv-text {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 1;
  padding: 1rem 1.5rem;
  margin-left: calc(50% - 37.5rem);
  backdrop-filter: blur(12px);
  background-color: rgba(255, 255, 255, .1019607843);
}
@media screen and (max-width: 767px) {
  .p-page-recruit__mv-text {
    background-color: transparent;
    font-size: 2rem;
    backdrop-filter: none;
    margin: 0;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-page-recruit__mv-text span {
    display: block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    backdrop-filter: blur(12px);
    background-color: rgba(255, 255, 255, .1019607843);
    padding: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-page-recruit__mv-text span:nth-child(1) {
    margin-left: 5%;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-page-recruit__mv-text span:nth-child(2) {
    margin-left: 3.5em;
  }
}

.p-page-recruit-message__box {
  padding: calc(22vw + 10rem) 5% 0;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-page-recruit-message__box {
    padding-top: calc(55vw + 9.375rem);
    padding-left: 0;
    padding-right: 0;
  }
}

.p-page-recruit-message__head {
  font-size: 3rem;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-page-recruit-message__head {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}

.p-page-recruit-message__text {
  font-size: 1.5rem;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-page-recruit-message__text {
    font-size: 0.875rem;
  }
}

.p-page-recruit-environment__box {
  position: relative;
  border-top: 1px solid #C5C5C5;
}

.p-page-recruit-environment__box::after {
  content: "";
  width: calc(95% - 36.25rem);
  height: 80%;
  background: url(../images/recruit/recruit-environment.webp) no-repeat center center;
  background-size: cover;
  border-radius: 1.125rem;
  position: absolute;
  top: 3rem;
  right: 0;
}
@media screen and (max-width: 767px) {
  .p-page-recruit-environment__box::after {
    content: none;
  }
}

@media screen and (max-width: 767px) {
  .p-page-recruit-environment__box::before {
    content: "";
    display: block;
    width: 100%;
    background: url(../images/recruit/recruit-environment.webp) no-repeat center center;
    background-size: cover;
    border-radius: 1.125rem;
    aspect-ratio: 1/1;
    position: static;
    margin: 2.5rem 0;
  }
}

.p-page-recruit-environment__item {
  max-width: 36.25rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 3rem 0;
  border-bottom: 1px solid #C5C5C5;
}
@media screen and (max-width: 767px) {
  .p-page-recruit-environment__item {
    padding: 1.5rem 0;
  }
}

@media screen and (max-width: 767px) {
  .p-page-recruit-environment__item:first-of-type {
    border-top: 1px solid #C5C5C5;
  }
}

.p-page-recruit-environment__head {
  font-size: 2rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .p-page-recruit-environment__head {
    font-size: 1rem;
  }
}

.p-page-recruit-environment__head::before {
  content: attr(data-no);
  display: inline-block;
  width: 4rem;
  font-family: "chakra petch", sans-serif;
  color: #279cca;
  font-size: 1rem;
  letter-spacing: 0;
  position: relative;
  top: -12px;
}
@media screen and (max-width: 767px) {
  .p-page-recruit-environment__head::before {
    top: 0;
  }
}

.p-page-recruit-environment__content {
  color: #7A8A8A;
  font-size: 0.875rem;
  padding-left: 4rem;
}

.p-page-recruit-wedo-job__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-page-recruit-wedo-job__item {
    display: block;
  }
}

.p-page-recruit-wedo-job__item:not(:first-child) {
  margin-top: 2rem;
}

.p-page-recruit-wedo-job__item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.p-page-recruit-wedo-job__item:nth-child(1) .p-page-recruit-wedo-job__img {
  width: 55%;
}
@media screen and (max-width: 767px) {
  .p-page-recruit-wedo-job__item:nth-child(1) .p-page-recruit-wedo-job__img {
    width: 100%;
  }
}

.p-page-recruit-wedo-job__item:nth-child(2) .p-page-recruit-wedo-job__img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-page-recruit-wedo-job__item:nth-child(2) .p-page-recruit-wedo-job__img {
    width: 100%;
  }
}

.p-page-recruit-wedo-job__content {
  font-size: 1.25rem;
}

.p-page-recruit-wedo-job__item:nth-child(1) .p-page-recruit-wedo-job__content {
  width: calc(45% - 2rem);
}
@media screen and (max-width: 767px) {
  .p-page-recruit-wedo-job__item:nth-child(1) .p-page-recruit-wedo-job__content {
    width: 100%;
  }
}

.p-page-recruit-wedo-job__item:nth-child(2) .p-page-recruit-wedo-job__content {
  width: calc(50% - 2rem);
}
@media screen and (max-width: 767px) {
  .p-page-recruit-wedo-job__item:nth-child(2) .p-page-recruit-wedo-job__content {
    width: 100%;
  }
}

.p-page-recruit-wedo-job__head {
  background-color: #fff;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 3rem;
  color: #279cca;
  font-weight: 700;
  line-height: 1;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-page-recruit-wedo-job__head {
    font-size: 1.25rem;
    position: relative;
    top: -1.125rem;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-page-recruit-wedo-job__head span {
    display: inline;
  }
}

@media screen and (max-width: 767px) {
  .p-page-recruit-wedo-job__item:nth-child(2) .p-page-recruit-wedo-job__head {
    margin-left: auto;
  }
}

.p-page-recruit-wedo-works__box {
  margin-top: 4rem;
}

.p-page-recruit-wedo-works__title {
  font-size: 2.5rem;
  font-weight: 700;
  border-bottom: 1px solid #fff;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-page-recruit-wedo-works__title {
    font-size: 1.5rem;
  }
}

.p-page-recruit-wedo-works__item-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 0.75rem;
     -moz-column-gap: 0.75rem;
          column-gap: 0.75rem;
  row-gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-page-recruit-wedo-works__item-wrap {
    grid-template-columns: 1fr;
  }
}

.p-page-recruit-wedo-works__item {
  background-color: rgba(7, 98, 149, .2);
  border-radius: 0.625rem;
  padding: 1.25rem 1.25rem 2rem;
}

.p-page-recruit-wedo-works__item::before {
  content: "";
  display: block;
  aspect-ratio: 351/197;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}

.p-page-recruit-wedo-works__item.unpan::before {
  background: url(../images/recruit/wedo-unpan.webp) no-repeat;
  background-size: cover;
}

.p-page-recruit-wedo-works__item.syukka::before {
  background: url(../images/recruit/wedo-syukka.webp) no-repeat;
  background-size: cover;
}

.p-page-recruit-wedo-works__item.bika::before {
  background: url(../images/recruit/wedo-bika.webp) no-repeat;
  background-size: cover;
}

.p-page-recruit-wedo-works__item.juki::before {
  background: url(../images/recruit/wedo-juki.webp) no-repeat;
  background-size: cover;
}

.p-page-recruit-wedo-works__item.tesen::before {
  background: url(../images/recruit/wedo-tesen.webp) no-repeat;
  background-size: cover;
}

.p-page-recruit-wedo-works__item.seibi::before {
  background: url(../images/recruit/wedo-seibi.webp) no-repeat;
  background-size: cover;
}

.p-page-recruit-wedo-works__head {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  border-left: 3px solid #B6D1FF;
  padding-left: 0.5rem;
  margin-bottom: 1rem;
}

.p-page-recruit-benefits__box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 3.5rem;
     -moz-column-gap: 3.5rem;
          column-gap: 3.5rem;
  border-top: 1px solid #C5C5C5;
  padding-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-page-recruit-benefits__box {
    grid-template-columns: 1fr;
    row-gap: 3.5rem;
  }
}

.p-page-recruit-benefits__item {
  position: relative;
  letter-spacing: 0.02em;
  z-index: 1;
}

.p-page-recruit-benefits__item:nth-child(odd) {
  margin-top: -28%;
}
@media screen and (max-width: 767px) {
  .p-page-recruit-benefits__item:nth-child(odd) {
    margin-top: 0;
  }
}

.p-page-recruit-benefits__item:nth-child(even) {
  margin-top: 45%;
}
@media screen and (max-width: 767px) {
  .p-page-recruit-benefits__item:nth-child(even) {
    margin-top: 0;
  }
}

.p-page-recruit-benefits__item:first-of-type {
  margin-top: 0;
}

.p-page-recruit-benefits__head {
  position: relative;
  display: block;
  aspect-ratio: 572/352;
  border-radius: 1.25rem;
  margin-bottom: -3rem;
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .p-page-recruit-benefits__head {
    margin-bottom: -2rem;
  }
}
.p-page-recruit-benefits__head::before {
  content: "";
  width: calc(100% - 3.5rem);
  height: 0;
  border-bottom: 3rem solid #fff;
  border-right: 3rem solid transparent;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-page-recruit-benefits__head::before {
    width: 95%;
    border-width: 2rem;
  }
}
.p-page-recruit-benefits__head span {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1.5rem;
  position: absolute;
  bottom: -1rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-page-recruit-benefits__head span {
    font-size: 1.125rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.5rem;
  }
}

.p-page-recruit-benefits__item:nth-child(1) .p-page-recruit-benefits__head {
  background: url(../images/recruit/benefits1.webp) no-repeat;
  background-size: cover;
}

.p-page-recruit-benefits__item:nth-child(2) .p-page-recruit-benefits__head {
  background: url(../images/recruit/benefits2.webp) no-repeat;
  background-size: cover;
}

.p-page-recruit-benefits__item:nth-child(3) .p-page-recruit-benefits__head {
  background: url(../images/recruit/benefits3.webp) no-repeat;
  background-size: cover;
}

.p-page-recruit-benefits__content {
  width: calc(100% - 3.5rem);
  font-size: 0.875rem;
  line-height: 2.25;
  padding: 4rem 1.5rem 0;
}
@media screen and (max-width: 767px) {
  .p-page-recruit-benefits__content {
    width: 100%;
    padding: 3rem 0.5rem 0;
  }
}

.p-page-recruit-summary__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5rem;
     -moz-column-gap: 5rem;
          column-gap: 5rem;
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-page-recruit-summary__box {
    display: block;
    padding-top: 0;
  }
}

.p-page-recruit-summary__box-side {
  width: 19.125rem;
}
@media screen and (max-width: 767px) {
  .p-page-recruit-summary__box-side {
    width: 100%;
  }
}

.p-page-recruit-summary__menu-text {
  background-color: #fff;
  color: #279cca;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  text-align: center;
  padding: 0.625rem;
  border-radius: 1.25rem;
  margin-bottom: 1rem;
  cursor: pointer;
}

.p-page-recruit-summary__menu-text.active {
  background-color: #279cca;
  color: #fff;
}

.p-page-recruit-summary__box-main {
  width: calc(100% - 24.125rem);
}
@media screen and (max-width: 767px) {
  .p-page-recruit-summary__box-main {
    width: 100%;
  }
}

.p-page-recruit-summary__box-main > div {
  width: 100%;
  background-color: #fff;
  border-radius: 0.9375rem;
  padding: 3rem;
}
@media screen and (max-width: 767px) {
  .p-page-recruit-summary__box-main > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1rem;
    width: 100%;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
  }
}

.p-page-recruit-summary__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  letter-spacing: 0.02em;
  padding: 2.5rem 0;
  border-bottom: 1px solid #C5C5C5;
}
@media screen and (max-width: 767px) {
  .p-page-recruit-summary__item {
    display: block;
    background-color: #fff;
    border-bottom: none;
    border-radius: 0.9375rem;
    padding: 1rem 5%;
  }
}

.p-page-recruit-summary__item:first-of-type {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .p-page-recruit-summary__item:first-of-type {
    padding-top: 1rem;
  }
}

.p-page-recruit-summary__item:last-of-type {
  padding-bottom: 0;
  border: none;
}
@media screen and (max-width: 767px) {
  .p-page-recruit-summary__item:last-of-type {
    padding-bottom: 1rem;
  }
}

.p-page-recruit-summary__head {
  width: 40%;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-page-recruit-summary__head {
    margin-bottom: 0.5rem;
  }
}

.p-page-recruit-summary__content {
  width: 60%;
  color: #868888;
}

.p-page-recruit-summary__box-main .js-recruit-item {
  display: none;
}

.p-page-recruit-summary__box-main .js-recruit-item.active {
  display: block;
}
@media screen and (max-width: 767px) {
  .p-page-recruit-summary__box-main .js-recruit-item.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-page-service .c-breadcrmb {
  background: #fff;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0 4px;
}

.p-page-service__bg {
  background: radial-gradient(38.86% 65.31% at 87.8% 88.54%, #4DA8DD 0%, #62B9DB 100%);
}

.p-page-service-disc__bg {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
}

.p-page-service-disc__bg::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: url(../images/service/serivice-bg.webp) no-repeat center center;
  background-size: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-page-service-disc__bg::after {
    background-image: url(../images/service/serivice-bg-sp.png);
  }
}

.p-page-service__head::after {
  content: "";
  width: 16.9375rem;
  max-width: 56%;
  aspect-ratio: 1/1;
  background: url(../images/service/service-head.webp) no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -2.5rem;
  right: 10%;
}
@media screen and (max-width: 767px) {
  .p-page-service__head::after {
    content: none;
  }
}

.p-page-service-disc {
  color: #fff;
  padding-top: 0;
}

.p-page-service-disc__copy-top {
  position: relative;
  height: 0;
  top: -2.5rem;
  opacity: 0.3;
}

.p-page-service-disc__copy-bottom {
  position: relative;
  height: 0;
  bottom: -2.5rem;
  opacity: 0.3;
}

.p-page-service__mv {
  aspect-ratio: 1200/375;
  background: url(../images/service/service-mv.webp) no-repeat;
  background-size: cover;
  border-radius: 5px;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-page-service__mv {
    aspect-ratio: 327/240;
  }
}

.p-page-service-disc__box {
  letter-spacing: 0.02em;
}

.p-page-service-disc__title {
  font-size: 3rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-page-service-disc__title {
    font-size: 2rem;
  }
}

.p-page-service-disc__content {
  max-width: 30rem;
  line-height: 2.25;
}

.p-page-service-disc__img {
  position: relative;
  aspect-ratio: 1200/733;
  top: -7.5rem;
  margin-bottom: -7.5rem;
}
@media screen and (max-width: 767px) {
  .p-page-service-disc__img {
    top: 0;
    margin-top: 2.5rem;
    margin-bottom: 0;
  }
}

.p-page-service-disc__img img {
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  opacity: 0;
}

@-webkit-keyframes factory {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes factory {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.p-page-service-disc__img.view img:nth-child(1) {
  -webkit-animation: factory 0.4s ease forwards;
          animation: factory 0.4s ease forwards;
}

.p-page-service-disc__img.view img:nth-child(2) {
  -webkit-animation: factory 0.4s ease 0.5s forwards;
          animation: factory 0.4s ease 0.5s forwards;
}

.p-page-service-disc__img.view img:nth-child(3) {
  -webkit-animation: factory 0.4s ease 1s forwards;
          animation: factory 0.4s ease 1s forwards;
}

.p-page-service-disc__img.view img:nth-child(4) {
  -webkit-animation: factory 0.4s ease 1.5s forwards;
          animation: factory 0.4s ease 1.5s forwards;
}

.p-page-service-flow__container {
  width: 90%;
  max-width: 84rem;
  background-color: #3687B6;
  border-radius: 0.9375rem;
  padding-top: 2.5rem;
  margin: 7.5rem auto 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-page-service-flow__container {
    padding: 1rem;
  }
}

.p-page-service-flow__title {
  font-family: "chakra petch", sans-serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

.p-page-service-flow__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 5%;
     -moz-column-gap: 5%;
          column-gap: 5%;
}
@media screen and (max-width: 767px) {
  .p-page-service-flow__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    row-gap: 1.5rem;
    margin-top: 1.5rem;
  }
}

.p-page-service-flow__item-content {
  background-color: #fff;
  color: #393e3e;
  width: 22.5rem;
  padding: 2rem;
  border-radius: 0.9375rem;
  margin-top: 1.5rem;
  margin-left: 5rem;
  margin-bottom: 5.375rem;
}
@media screen and (max-width: 767px) {
  .p-page-service-flow__item-content {
    width: 100%;
    margin: 0;
    padding: 1.5rem 5%;
  }
}

.p-page-service-flow__item-content::after {
  content: "";
  display: block;
  aspect-ratio: 289/176;
  background: url(../images/service/service-flow1.webp) no-repeat;
  background-size: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-page-service-flow__item-content::after {
    content: none;
  }
}

.p-page-service-flow__item-head {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #279cca;
  font-family: "chakra petch", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.p-page-service-flow__item-head::before {
  content: "";
  width: 10.125rem;
  height: 1px;
  background-color: #279cca;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2.5625rem;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .p-page-service-flow__item-head::before {
    width: 50%;
  }
}

.p-page-service-flow__item-head::after {
  content: attr(data-no);
  display: inline-block;
}

.p-page-service-flow__item-text-title {
  font-size: 1.75rem;
  word-break: keep-all;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .p-page-service-flow__item-text-title {
    font-size: 1.375rem;
  }
}

.p-page-service-flow__item-text-content {
  line-height: 1.75;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-page-service-flow__item-text-content {
    margin-bottom: 0;
  }
}

.p-page-service-flow__item-img {
  width: calc(87% - 27.625rem);
  margin-right: 5rem;
}
@media screen and (max-width: 767px) {
  .p-page-service-flow__item-img {
    width: 100%;
    margin-right: 0;
    text-align: center;
  }
}

.p-page-service-flow__item:nth-child(1) {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-page-service-flow__item:nth-child(1) {
    margin-top: 0;
  }
}
.p-page-service-flow__item:nth-child(1) .p-page-service-flow__item-img {
  margin-left: 8%;
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .p-page-service-flow__item:nth-child(1) .p-page-service-flow__item-img {
    width: 100%;
    margin-left: 0;
  }
}

.p-page-service-flow__item:nth-child(2) {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-page-service-flow__item:nth-child(2) {
    margin-top: 0;
  }
}
.p-page-service-flow__item:nth-child(2) .p-page-service-flow__item-content::after {
  background-image: url(../images/service/service-flow2.webp);
}
.p-page-service-flow__item:nth-child(2) .p-page-service-flow__item-img {
  margin-left: 8%;
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .p-page-service-flow__item:nth-child(2) .p-page-service-flow__item-img {
    width: 100%;
    margin-left: 0;
  }
}

.p-page-service-flow__item:nth-child(3) .p-page-service-flow__item-content::after {
  background-image: url(../images/service/service-flow3.webp);
}

.p-page-service-flow__item:nth-child(4) .p-page-service-flow__item-content::after {
  background-image: url(../images/service/service-flow4.webp);
}

.p-page-service-flow__item:nth-child(5) .p-page-service-flow__item-content::after {
  background-image: url(../images/service/service-flow5.webp);
}

.p-page-service-flow__item:nth-child(6) .p-page-service-flow__item-content::after {
  background-image: url(../images/service/service-flow6.webp);
}

.p-page-service-flow__item:nth-child(7) .p-page-service-flow__item-content::after {
  background-image: url(../images/service/service-flow7.webp);
}

.p-page-service-flow__item:nth-child(8) {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-page-service-flow__item:nth-child(8) {
    height: 100%;
    row-gap: 0;
  }
}
.p-page-service-flow__item:nth-child(8) .p-page-service-flow__item-content::after {
  background-image: url(../images/service/service-flow8.webp);
}
.p-page-service-flow__item:nth-child(8) .p-page-service-flow__item-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-left: 10%;
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .p-page-service-flow__item:nth-child(8) .p-page-service-flow__item-img {
    width: 100%;
    margin-left: 0;
  }
}

.p-page-service-case,
.p-page-service-environ {
  width: 100%;
  overflow: hidden;
}

.p-page-service-case__text,
.p-page-service-environ__text {
  color: #279cca;
  letter-spacing: 0.02em;
  position: relative;
}

.p-page-service__text-slide {
  content: attr(data-text);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.4em;
     -moz-column-gap: 0.4em;
          column-gap: 0.4em;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-family: "chakra petch", sans-serif;
  font-size: 16.75rem;
  line-height: 1;
  color: #CECECE;
  position: absolute;
  left: -0.2em;
  opacity: 0.3;
  word-break: keep-all;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .p-page-service__text-slide {
    font-size: 6rem;
  }
}
.p-page-service__text-slide p {
  -webkit-animation: loop-slide 20s infinite linear 1s both;
          animation: loop-slide 20s infinite linear 1s both;
}

.p-page-service-case__text .p-page-service__text-slide {
  bottom: -0.7em;
}

.p-page-service-environ__text .p-page-service__text-slide {
  bottom: -0.5em;
}
@media screen and (max-width: 767px) {
  .p-page-service-environ__text .p-page-service__text-slide {
    content: none;
  }
}

@-webkit-keyframes loop-slide {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes loop-slide {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.p-page-service-case__text-head,
.p-page-service-environ__text-head {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-page-service-case__text-head,
  .p-page-service-environ__text-head {
    font-size: 1.5rem;
  }
}

.p-page-service-case__text-content,
.p-page-service-environ__text-content {
  max-width: 50rem;
  line-height: 2.25;
}

.p-page-service-case__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5%;
     -moz-column-gap: 5%;
          column-gap: 5%;
  margin-top: 6rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-page-service-case__img {
    margin-top: 2.5rem;
  }
}

.p-page-service-case__img figcaption {
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-page-service-case__img figcaption {
    font-size: 1rem;
  }
}

.p-page-service-case__img img {
  border-radius: 0.625rem;
  width: 100%;
  max-width: 36.25rem;
}

.p-page-service-environ {
  padding-top: 0;
}

.p-page-service-environ__swiper {
  margin-top: 3.5rem;
  overflow: hidden;
}

.p-page-service-environ__swiper img {
  border-radius: 0.625rem;
}

.p-page-service-environ__image-item figcaption {
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-page-service-environ__image-item figcaption {
    font-size: 1rem;
  }
}

.p-page-flow__swiper-box {
  overflow: hidden;
}
.p-page-flow__swiper-box .swiper-button-next, .p-page-flow__swiper-box .swiper-button-prev {
  position: static;
  display: block;
  width: auto;
}
.p-page-flow__swiper-box .p-page-service-flow__controller {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  position: absolute;
  bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-page-flow__swiper-box .p-page-service-flow__controller {
    position: static;
    margin-top: 2rem;
  }
}
.p-page-flow__swiper-box .swiper-pagination--flow {
  text-align: center;
  position: relative;
  margin: 0 1rem;
}
.p-page-flow__swiper-box .swiper-pagination-bullet {
  width: 0.75rem;
  height: 0.75rem;
  opacity: 1;
  position: relative;
  background-color: transparent;
}
.p-page-flow__swiper-box .swiper-pagination-bullet::after {
  content: "";
  width: 4px;
  height: 4px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.p-page-flow__swiper-box .swiper-pagination-bullet-active {
  background-color: #fff;
}
.p-page-flow__swiper-box .swiper-pagination-bullet-active::after {
  background-color: #93CBE9;
}
.p-page-flow__swiper-box .swiper-button-prev:after, .p-page-flow__swiper-box .swiper-rtl .swiper-button-next:after,
.p-page-flow__swiper-box .swiper-button-next:after, .p-page-flow__swiper-box .swiper-rtl .swiper-button-prev:after {
  content: "";
  display: block;
  width: 2.875rem;
  height: 2.875rem;
  background: url(../images/w-arrow.png) no-repeat;
  background-size: contain;
  position: relative;
  top: 0;
  bottom: 0;
  margin: auto;
}
.p-page-flow__swiper-box .swiper-button-prev:after, .p-page-flow__swiper-box .swiper-rtl .swiper-button-next:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.p-page-flow__swiper-box .swiper-horizontal > .swiper-pagination-bullets, .p-page-flow__swiper-box .swiper-pagination-bullets.swiper-pagination-horizontal, .p-page-flow__swiper-box .swiper-pagination-custom, .p-page-flow__swiper-box .swiper-pagination-fraction {
  width: auto;
}

.p-service {
  padding: 3.75rem 0 0;
  width: 100%;
  overflow: hidden;
  margin-top: -1px;
}
@media screen and (max-width: 767px) {
  .p-service {
    padding-top: 2.375rem;
  }
}

.p-service__content {
  background: radial-gradient(circle, #4da8dd 0%, #62b9db 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-top: 10rem;
  padding-bottom: 7.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-service__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-top: 5rem;
    padding-bottom: 3.5rem;
  }
}

.p-service__content::after {
  content: "";
  display: block;
  width: 50rem;
  height: 100%;
  background: url(../images/service-img.png) no-repeat;
  background-size: 100%;
  position: absolute;
  top: 7.5rem;
  left: 42vw;
}
@media screen and (max-width: 767px) {
  .p-service__content::after {
    width: 120%;
    aspect-ratio: 327/200;
    top: 35vw;
    left: -10%;
    right: 0;
    margin: auto;
  }
}

.p-service__copy {
  position: absolute;
  width: 100vw;
  top: 0;
  z-index: 2;
}

.p-service__copy-text-item {
  color: #fff;
}

.p-service__text-block {
  width: 35.6666666667%;
  margin-right: 13.1666666667%;
}
@media screen and (max-width: 767px) {
  .p-service__text-block {
    width: 100%;
    margin-right: 0;
  }
}

.p-service__description {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  line-height: 1.65;
  color: #fff;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-service__description {
    margin-top: 70vw;
    margin-bottom: 2.5rem;
    color: #fff;
  }
}

@media screen and (max-width: 767px) {
  .p-service__button.c-button a {
    background-color: #fff;
    color: #279cca;
  }
}

.p-service__image-block {
  width: 51.1666666667%;
}
@media screen and (max-width: 767px) {
  .p-service__image-block {
    width: 100%;
  }
}

.p-usecases {
  background-color: #2c3134;
}

.p-usecases__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-usecases__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-usecases__text-block {
  width: 38.9166666667%;
  margin-right: 4.75%;
}
@media screen and (max-width: 767px) {
  .p-usecases__text-block {
    display: contents;
    width: 100%;
    margin-right: 0;
  }
}

.p-usecases__description {
  margin-top: 2rem;
  margin-bottom: 2.5rem;
  line-height: 1.65;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 2.35;
}
@media screen and (max-width: 767px) {
  .p-usecases__description {
    margin-bottom: 2.5rem;
    color: #fff;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}

@media screen and (max-width: 767px) {
  .p-usecases__button {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
}

@media screen and (max-width: 767px) {
  .p-usecases__button.c-w-button a {
    background-color: #fff;
    color: #279cca;
  }
}

.p-usecases__image-block {
  width: 56.3333333333%;
}
@media screen and (max-width: 767px) {
  .p-usecases__image-block {
    width: 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 2rem;
  }
}

.p-usecases__image-block img {
  border-radius: 15px;
}
@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

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

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

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