@charset "UTF-8";

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

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

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

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

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

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

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

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

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}

@media (max-width: 1100px) {
  html {
    font-size: 1.4545454545vw;
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

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

body.is-open {
  overflow: hidden;
}

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

a:hover {
  opacity: 0.8;
}

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

.l-about {
  margin-top: 11.25rem;
}

@media screen and (max-width: 767px) {
  .l-about {
    margin-top: 6.1875rem;
  }
}

.l-charm {
  margin-top: 6.25rem;
}

@media screen and (max-width: 767px) {
  .l-charm {
    margin-top: 4.4375rem;
  }
}

.l-difference {
  margin-top: 6.25rem;
}

@media screen and (max-width: 767px) {
  .l-difference {
    margin-top: 4.375rem;
  }
}

.l-footer-contents {
  margin-top: 12.5rem;
}

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

.l-how {
  margin-top: 10.5rem;
}

@media screen and (max-width: 767px) {
  .l-how {
    margin-top: 8.3125rem;
  }
}

.l-inner {
  padding: 0 20px;
  max-width: 58.75rem;
  margin: auto;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .l-inner {
    padding: 0 10px;
    max-width: 40rem;
  }
}

.l-interview {
  margin-top: 7.5rem;
}

@media screen and (max-width: 767px) {
  .l-interview {
    margin-top: 3.125rem;
  }
}

.l-lifeline {
  margin-top: 15.875rem;
}

@media screen and (max-width: 767px) {
  .l-lifeline {
    margin-top: 10.6875rem;
  }
}

.l-more {
  margin-top: 7rem;
}

@media screen and (max-width: 767px) {
  .l-more {
    margin-top: 4.4375rem;
  }
}

.l-problem-wrap {
  margin-top: 11.25rem;
}

.l-promotion {
  padding-top: 7.5rem;
  padding-bottom: 5.9375rem;
}

@media screen and (max-width: 767px) {
  .l-promotion {
    padding-top: 3.125rem;
    padding-bottom: 2.875rem;
  }
}

.l-recruit {
  margin-top: 9.375rem;
}

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

.l-top-interview {
  margin-top: 16.125rem;
}

@media screen and (max-width: 767px) {
  .l-top-interview {
    margin-top: 11.0625rem;
  }
}

.l-working {
  margin-top: 6.25rem;
}

@media screen and (max-width: 767px) {
  .l-working {
    margin-top: 4.4375rem;
  }
}

.c-common-tag {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  line-height: 1.4583333333;
  display: inline-block;
  padding: 0.3125rem 2.25rem;
  background-color: #FFF101;
  border: 0.1875rem solid #231815;
  border-radius: 9999px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .c-common-tag {
    font-size: 1.125rem;
  }
}

.c-section-title-circle {
  position: relative;
  display: inline-block;
  color: #231815;
  font-size: clamp(1.25rem, 0.849rem + 0.836vw, 1.563rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  background-color: #fff;
  border-radius: 9999px;
  border: 0.1875rem solid #231815;
  padding: 1rem 2.6875rem;
}

@media screen and (max-width: 767px) {
  .c-section-title-circle {
    font-size: 1rem;
    line-height: 1.375;
    width: 100%;
    text-align: center;
    padding: 0.4375rem 1rem;
  }
}

.c-section-title-circle--small {
  padding: 0.5rem 4.125rem;
  font-size: 1.5625rem;
}

@media screen and (max-width: 767px) {
  .c-section-title-circle--small {
    font-size: 1.125rem;
    padding: 0.5rem 1.25rem;
    width: 100%;
    text-align: center;
  }
}

.c-section-title-circle::before,
.c-section-title-circle::after {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 1.4375rem;
  height: 1.4375rem;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 9999px;
  border: 0.3125rem solid #231815;
}

.c-section-title-circle::before {
  left: 0.5rem;
}

.c-section-title-circle::after {
  right: 0.5rem;
}

.c-section-title-circle--small::before {
  width: 1.4375rem;
  height: 1.4375rem;
}

.c-section-title-circle--small::after {
  width: 1.4375rem;
  height: 1.4375rem;
}

.c-section-title-circle--yellow {
  background-color: #FFF101;
}

.c-section-title-circle--gray {
  background-color: #E9E9EF;
}

.c-section-title-truck {
  position: relative;
  color: #231815;
  font-size: 2.25rem;
  letter-spacing: 0.05em;
  max-width: 44.8125rem;
  width: 100%;
  min-height: 7.5625rem;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 0.1875rem solid #231815;
}

@media screen and (max-width: 767px) {
  .c-section-title-truck {
    font-size: 1.125rem;
    min-height: 4.75rem;
    max-width: 20.125rem;
    text-align: center;
  }
}

.c-section-title-truck::before {
  position: absolute;
  content: "";
  background: url(../images/icon/truck-color.svg) no-repeat center center/contain;
  width: 100%;
  aspect-ratio: 108/94;
  height: auto;
}

.c-section-title-truck--top::before {
  max-width: 6.75rem;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .c-section-title-truck--top::before {
    max-width: 4.0625rem;
    top: -54%;
  }
}

.c-section-title-truck--left::before {
  max-width: 8.6875rem;
  top: 50%;
  left: -11%;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .c-section-title-truck--left::before {
    max-width: 4.0625rem;
    left: -8%;
  }
}

.c-stress-title {
  position: relative;
  display: flex;
  font-size: 2.625rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #231815;
  background-color: #fff;
  align-items: center;
  justify-content: center;
  max-width: 42.0625rem;
  width: 100%;
  min-height: 7.5625rem;
  border-radius: 9999px;
  border: 0.1875rem solid #231815;
}

@media screen and (max-width: 767px) {
  .c-stress-title {
    font-size: 1.375rem;
    max-width: 25rem;
    min-height: 4.5rem;
  }
}

.c-stress-title::before,
.c-stress-title::after {
  position: absolute;
  content: "";
  background: url(../images/icon/radiation.png) no-repeat center center/contain;
  max-width: 7.25rem;
  width: 100%;
  height: auto;
  aspect-ratio: 93/56;
}

@media screen and (max-width: 767px) {

  .c-stress-title::before,
  .c-stress-title::after {
    max-width: 4.1875rem;
  }
}

.c-stress-title::before {
  top: -32%;
  left: -2%;
}

.c-stress-title::after {
  transform: rotate(180deg);
  bottom: -35%;
  right: -2%;
}

.p-about {
  padding: clamp(3.938rem, -0.336rem + 8.696vw, 7.188rem) 0;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-about {
    padding: 2.0625rem 0;
  }
}

.p-about::before,
.p-about::after {
  position: absolute;
  content: "";
  width: 100%;
  aspect-ratio: 1366/116;
  background: url(../images/top/about-border.png) no-repeat center center/cover;
  top: 0;
  left: 0;
}

@media screen and (max-width: 767px) {

  .p-about::before,
  .p-about::after {
    aspect-ratio: 786/70;
    background: url(../images/top/about-border-sp.png) no-repeat center center/cover;
  }
}

.p-about::after {
  top: unset;
  bottom: 0;
  transform: rotate(180deg);
}

@media screen and (max-width: 767px) {
  .p-about::after {
    bottom: 0.3125rem;
  }
}

.p-about__inner {
  position: relative;
  padding: 3.4375rem 0 4.5rem;
  background: #FFF101;
}

@media screen and (max-width: 767px) {
  .p-about__inner {
    padding: 3.4375rem 0.625rem 3.375rem;
  }
}

.p-about__inner::before,
.p-about__inner::after {
  position: absolute;
  content: "";
  max-width: 50rem;
  width: 100%;
  aspect-ratio: 800/60;
  background: url(../images/top/about-content-border.png) no-repeat center center/cover;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {

  .p-about__inner::before,
  .p-about__inner::after {
    aspect-ratio: 746/104;
    background: url(../images/top/about-content-border-sp.png) no-repeat center center/cover;
    width: calc(100% - 1.25rem);
    top: 0.25rem;
  }
}

.p-about__inner::after {
  top: unset;
  bottom: 0.9375rem;
  transform: translateX(-50%) rotate(180deg);
}

.p-about__container {
  position: relative;
  max-width: 50rem;
  padding: 0 20px;
  margin: 0 auto;
  width: 100%;
  background: #fff;
  position: relative;
  padding-top: 0.625rem;
  padding-bottom: 2.5rem;
}

@media screen and (max-width: 767px) {
  .p-about__container {
    padding: 0.75rem 10px;
  }
}

.p-about__container::before,
.p-about__container::after {
  position: absolute;
  content: "";
  background: url(../images/icon/heart.svg) no-repeat center center/cover;
  width: 5.6875rem;
  height: auto;
  aspect-ratio: 1/1;
  z-index: 200;
}

@media screen and (max-width: 767px) {

  .p-about__container::before,
  .p-about__container::after {
    width: 3.125rem;
  }
}

.p-about__container::before {
  top: -8.6%;
  right: -5.6%;
}

@media screen and (max-width: 767px) {
  .p-about__container::before {
    top: -5%;
    right: -1.5%;
  }
}

.p-about__container::after {
  bottom: -7.3%;
  left: -3%;
}

@media screen and (max-width: 767px) {
  .p-about__container::after {
    bottom: -2%;
    left: -1%;
  }
}

.p-about__title-wrap {
  text-align: center;
  text-transform: uppercase;
}

.p-about__title-en {
  position: relative;
  font-size: 1.375rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .p-about__title-en {
    font-size: 1rem;
  }
}

.p-about__title-en::before,
.p-about__title-en::after {
  position: absolute;
  content: "";
  background-image: repeating-linear-gradient(90deg, #231815, #231815 1.3125rem, transparent 1.0625rem, transparent 2.125rem);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 100% 0.1875rem;
  width: 6.25rem;
  height: 0.1875rem;
  top: 50%;
  transform: translateY(-50%);
}

.p-about__title-en::before {
  left: -7.125rem;
}

.p-about__title-en::after {
  right: -7.8125rem;
}

.p-about__title {
  margin-top: 0.625rem;
  font-size: 2.625rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #231815;
}

@media screen and (max-width: 767px) {
  .p-about__title {
    font-size: 1.75rem;
  }
}

.p-about__content {
  max-width: 41.3125rem;
  padding: 0 20px;
  width: 100%;
  margin: 0 auto;
}

.p-about__content:first-of-type {
  margin-top: 2.5rem;
}

@media screen and (max-width: 767px) {
  .p-about__content:first-of-type {
    margin-top: 1.8125rem;
  }
}

.p-about__text {
  letter-spacing: 0.05em;
  line-height: 1.6;
}

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

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

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

.p-about__content+.p-about__content {
  margin-top: 0.4375rem;
  display: flex;
  gap: 4%;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .p-about__content+.p-about__content {
    margin-top: 1.625rem;
    flex-direction: column;
  }
}

.p-about__text-wrap {
  flex: 1;
}

.p-about__graph {
  width: 100%;
  max-width: 15.6875rem;
  aspect-ratio: 251/250;
}

@media screen and (max-width: 767px) {
  .p-about__graph {
    max-width: 17.5625rem;
    margin-top: 1.6875rem;
  }
}

.p-about__graph img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

.p-bg-truck {
  position: relative;
}

.p-bg-truck::before {
  background-image: url(../images/common/parallax-img.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1366/768;
  height: 100vh;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .p-bg-truck::before {
    aspect-ratio: 393/854;
    background-image: url(../images/common/parallax-img-sp.jpg);
  }
}

.p-charm {
  background: #fff;
  border: 0.9375rem;
  padding: 3.75rem 3.125rem;
  width: 85.4vw;
  border-radius: 0 0.9375rem 0.9375rem 0;
}

@media screen and (max-width: 767px) {
  .p-charm {
    width: calc(100% - 0.625rem);
    padding: 2.5rem 1.875rem 2.875rem;
  }
}

.p-charm__inner {
  max-width: 61.4375rem;
  width: 100%;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .p-charm__inner {
    display: flex;
    flex-direction: column;
  }
}

.p-charm__title {
  padding: 1rem 2.125rem;
}

@media screen and (max-width: 767px) {
  .p-charm__title {
    padding: 0.75rem 2.125rem;
  }
}

.p-charm__block {
  display: flex;
  width: 100%;
  margin-top: 1.875rem;
  gap: 4%;
}

@media screen and (max-width: 767px) {
  .p-charm__block {
    display: contents;
  }
}

.p-charm__block+.p-charm__block {
  margin-top: 2.5rem;
}

.p-charm__block+.p-charm__block .p-charm__block-list {
  margin-top: 1rem;
}

@media screen and (max-width: 767px) {
  .p-charm__block+.p-charm__block .p-charm__block-list {
    margin-top: 1.8125rem;
  }
}

.p-charm__block-list {
  flex: 1;
  padding-left: 2.1875rem;
}

@media screen and (max-width: 767px) {
  .p-charm__block-list {
    margin-top: 3.375rem;
    padding-left: 1.875rem;
    order: 1;
  }
}

.p-charm__block-list li+li {
  margin-top: 2rem;
}

@media screen and (max-width: 767px) {
  .p-charm__block-list li+li {
    margin-top: 1.75rem;
  }
}

.p-charm__block-list-title {
  position: relative;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.0909090909;
}

@media screen and (max-width: 767px) {
  .p-charm__block-list-title {
    font-size: 1.125rem;
    line-height: 1.3333333333;
  }
}

.p-charm__block-list-title::before {
  position: absolute;
  content: "";
  background: url(../images/icon/check.svg) no-repeat center center/contain;
  max-width: 1.125rem;
  aspect-ratio: 18/20;
  width: 100%;
  height: auto;
  top: 50%;
  transform: translateY(-50%);
  left: -1.875rem;
}

.p-charm__block-list-text {
  margin-top: 1.0625rem;
  letter-spacing: 0.05em;
  line-height: 1.625;
  color: #231815;
}

@media screen and (max-width: 767px) {
  .p-charm__block-list-text {
    font-size: 0.875rem;
    line-height: 1.8571428571;
    margin-top: 0.5rem;
  }
}

.p-charm__block-img {
  max-width: 28.125rem;
  aspect-ratio: 450/313;
  width: 100%;
  margin-top: 0.3125rem;
}

@media screen and (max-width: 767px) {
  .p-charm__block-img {
    order: 3;
    max-width: 14rem;
    margin-top: 2.1875rem;
  }
}

@media screen and (max-width: 767px) {
  .p-charm__block+.p-charm__block .p-charm__block-img {
    margin-left: auto;
    margin-top: 0.3125rem;
  }
}

.p-charm__block-img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: auto;
}

.p-charm__note {
  margin-top: 2.9375rem;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4545454545;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 767px) {
  .p-charm__note {
    order: 2;
    font-size: 1.125rem;
    text-align: center;
    line-height: 1.7777777778;
  }
}

.p-difference {
  background-color: #fff;
  border: 0.9375rem;
  padding: 3.75rem 3.125rem;
  width: 86.5vw;
  border-radius: 0.9375rem 0 0 0.9375rem;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .p-difference {
    width: calc(100% - 0.625rem);
    padding: 1.75rem 1.875rem 2.5rem;
  }
}

.p-difference__wrap {
  display: flex;
  align-items: center;
  gap: 4.3%;
}

@media screen and (max-width: 767px) {
  .p-difference__wrap {
    flex-direction: column;
  }
}

.p-difference__img {
  max-width: 27.9375rem;
  width: 100%;
  aspect-ratio: 447/311;
}

@media screen and (max-width: 767px) {
  .p-difference__img {
    order: 4;
    margin-top: 1.75rem;
  }
}

.p-difference__img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

.p-difference__content {
  flex: 1;
}

@media screen and (max-width: 767px) {
  .p-difference__content {
    display: contents;
  }
}

.p-difference__block-title {
  padding: 1rem 3.5rem;
}

@media screen and (max-width: 767px) {
  .p-difference__block-title {
    padding: 0.5rem 3.5rem;
    order: 1;
  }
}

.p-difference__text {
  max-width: 31.25rem;
  letter-spacing: 0.05em;
  line-height: 1.625;
  margin-top: 1.875rem;
}

@media screen and (max-width: 767px) {
  .p-difference__text {
    order: 3;
    margin-top: 1.3125rem;
  }
}

.p-difference__text--bold {
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-difference__text--bold {
    order: 2;
    margin-top: 1.625rem;
  }
}

.p-footer-contents {
  padding-top: 9.4375rem;
  padding-bottom: 4.5rem;
  background: url(../images/common/footer-bg.png) no-repeat center center/cover;
}

@media screen and (max-width: 767px) {
  .p-footer-contents {
    padding-top: 7.9375rem;
    padding-bottom: 3.125rem;
  }
}

.p-footer-contents__inner {
  max-width: 71.25rem;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}

.p-footer-contents__to-top a {
  margin: 0 auto;
}

.p-footer-contents__banners {
  margin-top: 12.5rem;
}

@media screen and (max-width: 767px) {
  .p-footer-contents__banners {
    margin-top: 6.25rem;
  }
}

.p-footer-contents__banner-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem 0.75rem;
}

@media screen and (max-width: 767px) {
  .p-footer-contents__banner-list {
    max-width: 20.125rem;
    margin: 0 auto;
    gap: 1.25rem;
  }
}

.p-footer-contents__banner-list a {
  display: block;
  max-width: 34rem;
}

.p-footer-contents__banner-list a img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

.p-footer {
  background-color: #fff;
  padding-top: 1.6875rem;
  padding-bottom: 5.1875rem;
}

@media screen and (max-width: 767px) {
  .p-footer {
    padding-top: 3rem;
  }
}

.p-footer__inner {
  max-width: 81.625rem;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.p-footer__content {
  font-size: 0.875rem;
  line-height: 1.8571428571;
  letter-spacing: 0.05em;
  color: #231815;
}

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

.p-footer__fax {
  margin-left: 1rem;
}

.p-footer__copyright {
  display: block;
  margin-top: 0.8125rem;
  letter-spacing: 0.1em;
  font-size: 0.6875rem;
}

@media screen and (max-width: 767px) {
  .p-footer__copyright {
    font-size: 0.625rem;
    margin-top: 1.625rem;
    line-height: 1.6;
  }
}

.p-header {
  height: 5.3125rem;
}

@media screen and (max-width: 767px) {
  .p-header {
    height: 3.75rem;
  }
}

.p-header__inner {
  padding-left: 0.75rem;
  height: inherit;
  display: flex;
  gap: 2%;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .p-header__inner {
    padding-left: 0rem;
  }
}

.p-header__logo {
  max-width: clamp(13.75rem, -46.517rem + 85.333vw, 21.75rem);
  width: 100%;
  height: inherit;
}

@media screen and (max-width: 767px) {
  .p-header__logo {
    max-width: 16.75rem;
    width: 100%;
  }
}

.p-header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
}

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

.p-header__nav {
  position: relative;
  padding-left: 1.875rem;
  border-radius: 0 0 0 0.625rem;
  background-color: #fff;
  height: 4.8125rem;
}

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

.p-header__nav::after {
  position: absolute;
  content: "";
  width: calc(100% + 0.6875rem);
  height: calc(100% - 0.375rem);
  top: 0;
  left: -0.6875rem;
  border-radius: 0 0 0 0.625rem;
  border-left: 0.1875rem solid #231815;
  border-bottom: 0.1875rem solid #231815;
  pointer-events: none;
}

.p-header__nav-list {
  display: flex;
}

.p-header__nav-item a {
  position: relative;
  padding: 1.5625rem clamp(1.25rem, 0.447rem + 1.672vw, 1.875rem) 1.5625rem 1.5625rem;
  height: inherit;
  display: flex;
  align-items: center;
  font-weight: 700;
  line-height: 1;
  color: #231815;
  text-transform: uppercase;
}

.p-header__nav-item a::before {
  position: absolute;
  content: "";
  width: 1rem;
  height: 1rem;
  border-radius: 9999px;
  background-color: #FFF101;
  left: 0.25rem;
  top: 50%;
  transform: translateY(-30%);
}

.p-header__nav-item a::after {
  position: absolute;
  content: "";
  width: 1rem;
  height: 1rem;
  border-radius: 9999px;
  border: 1px solid #231815;
  left: 2px;
  top: 50%;
  transform: translateY(-37%);
}

.p-header__hamburger {
  position: relative;
  display: none;
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 3.9375rem;
  border-radius: 0 0 0 0.625rem;
  height: inherit;
  background-color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

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

.p-header__hamburger::after {
  position: absolute;
  content: "";
  width: calc(100% + 0.6875rem);
  height: calc(100% - 0.375rem);
  top: 0;
  left: -0.6875rem;
  border-radius: 0 0 0 0.625rem;
  border-left: 0.1875rem solid #231815;
  border-bottom: 0.1875rem solid #231815;
  pointer-events: none;
  transition: all 0.3s ease 0s;
}

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

.p-header__hamburger.is-open::after {
  display: none;
}

.p-header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 1.875rem;
  border-radius: 9999px;
  height: 0.1875rem;
  background-color: #231815;
  transition: 0.5s;
}

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

.p-header__hamburger span:nth-of-type(2) {
  top: -0.3125rem;
}

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

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

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

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

.p-header__drawer {
  position: relative;
  padding: 4.375rem 0;
  position: absolute;
  z-index: 900;
  top: 0;
  right: -120%;
  width: 96%;
  height: 100vh;
  background-color: #fff;
  overflow-y: scroll;
  scrollbar-width: none;
  transition: 0.6s;
  max-width: 25rem;
}

.p-header__drawer-line {
  position: absolute;
  content: "";
  width: 98%;
  height: calc(100vh - 0.625rem);
  top: 0;
  right: -120%;
  border-radius: 0 0 0 0.625rem;
  border-left: 0.1875rem solid #231815;
  border-bottom: 0.1875rem solid #231815;
  pointer-events: none;
  transition: 0.6s;
  z-index: 1000;
  max-width: 25.5rem;
}

.p-header__drawer.is-open,
.p-header__drawer-line.is-open {
  right: 0;
}

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

.p-header__drawer-item a {
  padding: 1.5625rem 0;
  display: block;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #231815;
  text-transform: uppercase;
}

.p-header__drawer-item a {
  position: relative;
  font-size: 1.375rem;
  font-weight: 700;
  color: #231815;
  padding-left: 2.8125rem;
}

.p-header__drawer-item a::before {
  position: absolute;
  content: "";
  width: 1.0625rem;
  height: 1.0625rem;
  border-radius: 9999px;
  background-color: #FFF101;
  left: 1.375rem;
  top: 50%;
  transform: translateY(-43%);
}

.p-header__drawer-item a::after {
  position: absolute;
  content: "";
  width: 1.0625rem;
  height: 1.0625rem;
  border-radius: 9999px;
  border: 2px solid #231815;
  left: 1.1875rem;
  top: 50%;
  transform: translateY(-43%);
}

.p-header__drawer a {
  display: block;
}

.p-header__drawer a img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

.p-header__drawer-logo a {
  aspect-ratio: 263/50;
  max-width: 16.4375rem;
  padding-left: 1rem;
}

.p-header__drawer-main {
  margin-top: 0.9375rem;
}

.p-header__drawer-main a {
  max-width: 18.75rem;
  padding-left: 1.4375rem;
}

.p-header__drawer-nav {
  margin-top: 3.25rem;
}

.p-header__drawer-btns {
  margin: 4rem auto 0;
  padding: 0 10px;
  max-width: 21.375rem;
}

.p-header__drawer-btn:first-child img {
  width: 90%;
}

.p-header__drawer-btn+.p-header__drawer-btn {
  margin-top: 1rem;
}

.p-header__drawer-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #231815;
  border-radius: 0.625rem;
  width: 100%;
  min-height: 5.125rem;
  padding: 0.125rem 0.3125rem;
}

.p-how-driver {
  background: #fff;
  border: 0.9375rem;
  padding: 3.75rem 3.125rem;
  width: 86.5vw;
  border-radius: 0 0.9375rem 0.9375rem 0;
}

@media screen and (max-width: 767px) {
  .p-how-driver {
    width: calc(100% - 0.625rem);
    padding: 1.875rem 1.625rem 2.4375rem;
  }
}

.p-how-driver__inner {
  max-width: 62.5rem;
  width: 100%;
  margin-left: auto;
}

.p-how-driver__block {
  display: flex;
  align-items: center;
  gap: 4.5%;
}

@media screen and (max-width: 767px) {
  .p-how-driver__block {
    flex-direction: column;
  }
}

.p-how-driver__block-content {
  flex: 1;
}

.p-how-driver__block-text {
  margin-top: 1.125rem;
  line-height: 1.625;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .p-how-driver__block-text {
    font-size: 0.875rem;
    line-height: 1.8571428571;
    margin-top: 1.5rem;
  }
}

.p-how-driver__block-text--bold {
  margin-top: 1.75rem;
  font-weight: 700;
}

.p-how-driver__block-img {
  margin-top: 1.375rem;
  max-width: 28.125rem;
  width: 100%;
}

.p-how-driver__block-img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

.p-how__title {
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .p-how__title {
    max-width: 17.3125rem;
  }
}

.p-how__driver {
  margin-top: 6.25rem;
  margin-right: calc(50% - 50vw);
}

@media screen and (max-width: 767px) {
  .p-how__driver {
    margin-right: auto;
    margin-top: 2.6875rem;
  }
}

.p-how__license {
  margin-top: 3.125rem;
}

@media screen and (max-width: 767px) {
  .p-how__license {
    margin-top: 8.3125rem;
  }
}
.p-interview__intro{
  padding: 0 1rem;
}

.p-interview-intro__box {
  display: flex;
  gap: 3.125rem;
}

@media screen and (max-width: 767px) {
  .p-interview-intro__box {
    display: block;
  }
}

.p-interview-intro__img {
  margin-left: calc(50% - 50vw);
  width: 100vw;
  border-radius: 0 0.9375rem 0.9375rem 0;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .p-interview-intro__img {
    max-width: 31.25rem;
    width: 100%;
    aspect-ratio: 600/400;
  }
}

.p-interview-intro__img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .p-interview-intro__img img {
    height: 120%;
  }
}

.p-interview-intro__content {
  width: 88%;
}

@media screen and (max-width: 767px) {
  .p-interview-intro__content {
    width: 100%;
    text-align: center;
  }
}

.p-interview-intro__title {
  font-size: 2.625rem;
  line-height: 1.4523809524;
  letter-spacing: 0.1em;
  margin-top: 2.625rem;
}

@media screen and (max-width: 767px) {
  .p-interview-intro__title {
    font-size: 1.75rem;
    margin-top: 1rem;
    line-height: 1.4;
    text-align: center;
  }
}

.p-interview-intro__profile {
  margin-top: 3.75rem;
}

@media screen and (max-width: 767px) {
  .p-interview-intro__profile {
    margin-top: 2.5rem;
  }
}

.p-interview-intro__name {
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 1.5rem;
  margin-top: 1.375rem;
}

@media screen and (max-width: 767px) {
  .p-interview-intro__name {
    font-size: 1.125rem;
    margin-top: 1rem;
  }
}

.p-interview-intro__name span {
  font-size: 2.25rem;
}

@media screen and (max-width: 767px) {
  .p-interview-intro__name span {
    font-size: 1.75rem;
  }
}

.p-interview-intro__list {
  margin-top: 0.6875rem;
}

@media screen and (max-width: 767px) {
  .p-interview-intro__list {
    margin-top: 0.375rem;
  }
}

.p-interview-intro__list li {
  font-size: 1.125rem;
  line-height: 2.1111111111;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-interview-intro__list li {
    font-size: 0.875rem;
    line-height: 1.8571428571;
  }
}

@media screen and (max-width: 767px) {
  .p-interview-main {
    padding: 0 10px;
  }
}

.p-interview-main__box+.p-interview-main__box {
  margin-top: 4.125rem;
}

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

.p-interview-main__head {
  position: relative;
  padding-left: 1.875rem;
  font-size: 1.5rem;
  line-height: 1.4583333333;
  letter-spacing: 0.1em;
  padding-bottom: 0.5625rem;
  border-bottom: 0.25rem solid #231815;
}

@media screen and (max-width: 767px) {
  .p-interview-main__head {
    font-size: 1rem;
    padding-left: 1.5rem;
    padding-bottom: 0.25rem;
    border-bottom: 0.1875rem solid #231815;
    line-height: 1.4444444444;
  }
}

.p-interview-main__head::before {
  position: absolute;
  content: "";
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 9999px;
  background-color: #FFF101;
  left: 0.1875rem;
  top: 50%;
  transform: translateY(-43%);
}

@media screen and (max-width: 767px) {
  .p-interview-main__head::before {
    width: 1rem;
    height: 1rem;
  }
}

.p-interview-main__head::after {
  position: absolute;
  content: "";
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 9999px;
  border: 2px solid #231815;
  left: 0rem;
  top: 50%;
  transform: translateY(-48%);
}

@media screen and (max-width: 767px) {
  .p-interview-main__head::after {
    width: 1rem;
    height: 1rem;
  }
}

.p-interview-main__text {
  letter-spacing: 0.05em;
  line-height: 1.625;
  margin-top: 1.875rem;
}

@media screen and (max-width: 767px) {
  .p-interview-main__text {
    font-size: 0.875rem;
    margin-top: 1rem;
  }
}

.p-interview-main__img {
  width: 100%;
  aspect-ratio: 900/420;
  border-radius: 0.9375rem;
  overflow: hidden;
  margin-top: 4.25rem;
}

@media screen and (max-width: 767px) {
  .p-interview-main__img {
    margin-top: 2.5rem;
  }
}

.p-interview-main__img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

.p-interview-main__img+.p-interview-main__box {
  margin-top: 4.375rem;
}

@media screen and (max-width: 767px) {
  .p-interview-main__img+.p-interview-main__box {
    margin-top: 2.5rem;
  }
}

.p-interview-schedule {
  text-align: center;
}

.p-interview-schedule__title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4375;
  margin-top: 1.75rem;
}

@media screen and (max-width: 767px) {
  .p-interview-schedule__title {
    font-size: 1.5rem;
    margin-top: 1rem;
  }
}

.p-interview-schedule__note {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  line-height: 1.4583333333;
  margin-top: 0.875rem;
}

@media screen and (max-width: 767px) {
  .p-interview-schedule__note {
    font-size: 1rem;
    margin-top: 0.625rem;
    line-height: 1.75;
  }
}

.p-interview-schedule__container {
  display: flex;
  margin-top: 4.0625rem;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .p-interview-schedule__container {
    flex-direction: column;
    gap: 1.25rem;
    max-width: 25rem;
    align-items: center;
    padding: 0 1.25rem;
    margin: 2.5rem auto 0;
  }
}

.p-interview-schedule__timetable img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: auto;
}

.p-interview-schedule__timetable--day2 {
  margin-top: 5.25rem;
}

@media screen and (max-width: 767px) {
  .p-interview-schedule__timetable--day2 {
    margin-top: 2rem;
  }
}

.p-interview__main {
  margin-top: 6.25rem;
}

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

.p-interview__schedule {
  margin-top: 9.375rem;
}

@media screen and (max-width: 767px) {
  .p-interview__schedule {
    margin-top: 4.375rem;
  }
}

.p-license {
  text-align: center;
  background-color: #FFFDE5;
  border-radius: 0.9375rem;
  padding: 3.125rem 20px 3.6875rem;
}

@media screen and (max-width: 767px) {
  .p-license {
    position: relative;
    padding: 1.25rem 10px 1.8125rem;
  }
}

.p-license__block-title {
  padding: 1rem 4.125rem;
}

@media screen and (max-width: 767px) {
  .p-license__block-title {
    padding: 0.625rem 1.25rem;
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 17.3125rem;
  }
}

.p-license__tables-wrap {
  background-color: #fff;
  border-radius: 1.25rem;
  margin: 1.75rem auto 0;
  padding: 1.5625rem 2.1875rem;
}

@media screen and (max-width: 767px) {
  .p-license__tables-wrap {
    margin: -0.1875rem auto 0;
    padding: 1.5625rem 0.625rem 3.375rem;
  }
}

.p-license__tables {
  overflow: hidden;
  padding: 1.5625rem 2.1875rem;
  overflow: scroll;
  background-color: #fff;
  border-radius: 1.25rem;
}

@media screen and (max-width: 767px) {
  .p-license__tables {
    padding: 0.625rem 2.1875rem;
  }
}

.p-license__tables-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-license__tables-sp {
    display: block;
    font-size: 0.625rem;
    text-align: center;
  }
}

.p-license__table {
  border-spacing: 0;
  border-collapse: separate;
}

.p-license__table th,
.p-license__table td {
  padding: 12px 10px;
  border-top: 1px solid #707070;
  border-left: 1px solid #707070;
  text-align: center;
  color: #231815;
  font-weight: 500;
  vertical-align: middle;
  white-space: nowrap;
}

.p-license__table th sup {
  font-size: 0.625rem;
  color: #FF0000;
}

.p-license__table-item {
  background: #E9E9EF;
  vertical-align: top;
  font-weight: normal;
  width: 7.5rem;
}

.p-license__table-md {
  font-size: 1.125rem;
}

.p-license__table tr:nth-child(even) th {
  background: #E9E9EF;
}

.p-license__table td {
  min-width: 10.625rem;
}

.p-license__table th:last-child,
.p-license__table td:last-child {
  border-right: 1px solid #707070;
}

.p-license__table tr:last-child th,
.p-license__table tr:last-child td {
  border-bottom: 1px solid #707070;
}

.p-license__table tr:first-child :first-child {
  border-top-left-radius: 1.25rem;
}

.p-license__table tr:first-child :last-child {
  border-top-right-radius: 1.25rem;
}

.p-license__table tr:last-child :first-child {
  border-bottom-left-radius: 1.25rem;
}

.p-license__table tr:last-child :last-child {
  border-bottom-right-radius: 1.25rem;
}

.p-license__table td span {
  display: block;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  letter-spacing: 0.1em;
  font-weight: 400;
}

.p-license__table-main {
  position: relative;
  background-color: #FFF28B;
}

.p-license__table-main::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border: 0.1875rem solid #F07216;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: content-box;
}

.p-license__table-note {
  margin-top: 0.625rem;
  font-size: 0.75rem;
  color: #231815;
  letter-spacing: 0.1em;
  text-align: end;
}

@media screen and (max-width: 767px) {
  .p-license__table-note {
    text-align: left;
    font-size: 0.625rem;
    margin-top: -3.1875rem;
    padding-left: 1.875rem;
    text-indent: -1em;
  }
}

.p-license__table-note span {
  color: #FF0000;
}

.p-license__conclusion {
  font-size: 2rem;
  font-weight: 700;
  color: #231815;
  letter-spacing: 0.1em;
  padding: 0 3.25rem 0.4375rem;
  border-bottom: 0.1875rem solid #231815;
  display: inline-block;
  margin-top: 1.875rem;
}

@media screen and (max-width: 767px) {
  .p-license__conclusion {
    font-size: 1rem;
    padding: 0 0 0.3125rem;
    margin-top: 2.75rem;
  }
}

.p-license__conclusion span {
  color: #F07216;
}

.p-lifeline__inner {
  max-width: 58.75rem;
  padding: 0 20px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .p-lifeline__inner {
    padding: 0 10px;
  }
}

.p-lifeline__container {
  background-color: #fff;
  border: 0.1875rem solid #231815;
  border-radius: 0.9375rem;
  padding-bottom: 3.9375rem;
}

@media screen and (max-width: 767px) {
  .p-lifeline__container {
    padding-bottom: 2.5rem;
  }
}

.p-lifeline__title {
  margin: -3.875rem auto 0;
}

@media screen and (max-width: 767px) {
  .p-lifeline__title {
    margin: -2.5rem auto 0;
  }
}

.p-lifeline__text {
  color: #231815;
  line-height: 2.3125;
  letter-spacing: 0.05em;
  max-width: 47.3125rem;
  padding: 0 20px;
  width: 100%;
  margin: 2.75rem auto 0;
}

@media screen and (max-width: 767px) {
  .p-lifeline__text {
    font-size: 0.875rem;
    line-height: 1.8571428571;
    margin-top: 1.9375rem;
  }
}

.p-more__inner {
  max-width: 71.25rem;
  padding: 0 20px;
  margin: 0 auto;
  width: 100%;
}

.p-more__container {
  background: #FFFDE5;
  border-radius: 0.9375rem;
  background-image: repeating-linear-gradient(90deg, #231815, #231815 27px, transparent 27px, transparent 54px), repeating-linear-gradient(180deg, #231815, #231815 27px, transparent 27px, transparent 54px), repeating-linear-gradient(90deg, #231815, #231815 27px, transparent 27px, transparent 54px), repeating-linear-gradient(180deg, #231815, #231815 27px, transparent 27px, transparent 54px);
  background-position: left top, right top, left bottom, left top;
  background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
  background-size: 100% 3px, 3px 100%, 100% 3px, 3px 100%;
  padding: 4.25rem 2.625rem 2.9375rem;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-more__container {
    padding: 2.5rem 1rem 2.9375rem;
  }
}

.p-more__title {
  margin-inline: auto;
  max-width: 46.875rem;
  padding: 1rem 5.8125rem;
}

@media screen and (max-width: 767px) {
  .p-more__title {
    padding: 0.625rem 2.5rem;
  }
}

.p-more__content {
  margin: 3.8125rem auto 0;
  max-width: 56.25rem;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .p-more__content {
    margin: 2.4375rem auto 0;
  }
}

.p-more__block {
  display: flex;
  align-items: center;
  gap: 5.4%;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .p-more__block {
    flex-direction: column-reverse;
  }
}

.p-more__block+.p-more__block {
  margin-top: 4.0625rem;
}

@media screen and (max-width: 767px) {
  .p-more__block+.p-more__block {
    margin-top: 3.5625rem;
  }
}

.p-more__block:nth-child(even) {
  flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
  .p-more__block:nth-child(even) {
    flex-direction: column-reverse;
  }
}

.p-more__block-content {
  flex: 1;
}

.p-more__sub-title {
  position: relative;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #231815;
  padding-left: 2.25rem;
}

@media screen and (max-width: 767px) {
  .p-more__sub-title {
    font-size: 1rem;
    padding-left: 1.875rem;
  }
}

.p-more__sub-title::before {
  position: absolute;
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  background-color: #FFF101;
  left: 0.25rem;
  top: 50%;
  transform: translateY(-42%);
}

.p-more__sub-title::after {
  position: absolute;
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  border: 2px solid #231815;
  left: 2px;
  top: 50%;
  transform: translateY(-53%);
}

.p-more__text {
  letter-spacing: 0.05em;
  line-height: 1.625;
  color: #231815;
  margin-top: 1.25rem;
}

@media screen and (max-width: 767px) {
  .p-more__text {
    font-size: 0.875rem;
    line-height: 1.8571428571;
    margin-top: 0.625rem;
  }
}

.p-more__block-img {
  max-width: 21.875rem;
  width: 100%;
  aspect-ratio: 350/250;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .p-more__block-img {
    margin-top: 0.875rem;
  }
}

.p-more__block-img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

.p-more__etc {
  font-size: 2.375rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #231815;
  margin-top: 3.625rem;
}

@media screen and (max-width: 767px) {
  .p-more__etc {
    font-size: 1.75rem;
    margin-top: 2.25rem;
  }
}

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

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

.p-mv__title-container {
  position: absolute;
  z-index: 2;
  top: 36.3%;
  left: 0;
}

@media screen and (max-width: 767px) {
  .p-mv__title-container {
    display: flex;
    top: unset;
    bottom: 5%;
    background-color: #fff;
    align-items: center;
    padding: 0 1.25rem 0 1.125rem;
    gap: 5.6%;
    min-height: 8.1875rem;
    border-radius: 0 0.9375rem 0.9375rem 0;
    max-width: 98%;
  }
}

.p-mv__title-icon {
  background-color: #fff;
  padding: 2.125rem 3.4375rem;
  display: inline-block;
  border-radius: 0 0.9375rem 0 0;
  aspect-ratio: 88/77;
}

@media screen and (max-width: 767px) {
  .p-mv__title-icon {
    padding: 0;
    border-radius: 0;
    background-color: transparent;
    max-width: 7.5rem;
  }
}

.p-mv__title-icon img {
  max-width: 12.5rem;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .p-mv__title-icon img {
    height: 100%;
  }
}

.p-mv__title-wrap {
  background-color: #fff;
  width: 100%;
  color: #231815;
  text-align: left;
  text-transform: uppercase;
  padding: 0.5rem 2.4375rem 1.625rem 3.4375rem;
  border-radius: 0 0.9375rem 0.9375rem 0;
  margin-top: -2.625rem;
}

@media screen and (max-width: 767px) {
  .p-mv__title-wrap {
    padding: 0;
    padding-top: 11%;
    border-radius: 0;
    width: -moz-fit-content;
    width: fit-content;
    background-color: transparent;
    flex: 1;
  }
}

.p-mv__main-title {
  margin-top: 0.625rem;
  font-size: 2.5rem;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .p-mv__main-title {
    font-size: 1.5rem;
    margin-top: 0.4375rem;
  }
}

.p-mv__sub-title {
  margin-top: 1.25rem;
  font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
  .p-mv__sub-title {
    font-size: 1rem;
    margin-top: 0rem;
  }
}

.p-mv__swiper,
.p-mv__swiper .swiper-img,
.p-mv__swiper .swiper-img img {
  height: inherit;
  min-height: inherit;
}

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

.p-mv__swiper .swiper-pagination {
  bottom: 2%;
  text-align: left;
  padding-left: 1.2%;
}

@media screen and (max-width: 767px) {
  .p-mv__swiper .swiper-pagination {
    bottom: 0.3125rem;
  }
}

.p-mv__swiper .swiper-pagination .swiper-pagination-bullet {
  border: 1px solid #231815;
  background: #707070;
  width: 0.8125rem;
  aspect-ratio: 1/1;
  height: 100%;
  opacity: 1;
  margin: 0 0.3125rem;
}

.p-mv__swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #FFF101;
}

.p-mv__needes-icon {
  position: absolute;
  right: 2%;
  bottom: 3.5%;
  z-index: 100;
  max-width: 13.875rem;
  aspect-ratio: 222/218;
  width: 100%;
}

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

.p-mv__needes-icon img,
.p-mv__needes-icon-sp img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

.p-mv__needes-icon-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-mv__needes-icon-sp {
    display: block;
    position: absolute;
    right: 0%;
    top: -62%;
    z-index: 100;
    max-width: 7.4375rem;
    aspect-ratio: 222/218;
    width: 100%;
  }
}

.p-page-mv {
  position: relative;
  width: 100%;
  height: 25.3125rem;
  background: url(../images/common/page-mv-bg.png) repeat-y right center;
  background-size: 70% 100%;
}

@media screen and (max-width: 767px) {
  .p-page-mv {
    background: url(../images/common/page-mv-bg.png) repeat-y left center/contain;
    background-size: 150%;
    height: 12.5rem;
  }
}

.p-page-mv::before {
  position: absolute;
  content: "";
  background: url(../images/icon/truck-color.svg) no-repeat center center/contain;
  width: 8.6875rem;
  aspect-ratio: 139/121;
  height: auto;
  bottom: 0;
  right: 5.4%;
}

@media screen and (max-width: 767px) {
  .p-page-mv::before {
    width: 15vw;
    max-width: 6.25rem;
    right: 2%;
  }
}

.p-page-mv__inner {
  max-width: 71.25rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .p-page-mv__inner {
    padding: 0 10px;
  }
}

.p-page-mv__main-container {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  background-color: #fff;
  border: 0.1875rem solid #231815;
  border-radius: 0 0.9375rem 0.9375rem 0;
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: -59.6%;
  padding: 0.5625rem 0.625rem 2rem 0.625rem;
}

@media screen and (max-width: 767px) {
  .p-page-mv__main-container {
    width: -moz-fit-content;
    width: fit-content;
    margin-right: unset;
    margin-left: unset;
    padding: 0.5625rem 0.625rem 1.25rem 1.875rem;
    left: -4%;
  }
}

.p-page-mv__title-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 59.6%;
}

@media screen and (max-width: 767px) {
  .p-page-mv__title-wrap {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 0 0.625rem;
  }
}

.p-page-mv__title-en {
  font-size: 3.875rem;
  letter-spacing: 0.1em;
  line-height: 1.4516129032;
  text-transform: uppercase;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-page-mv__title-en {
    font-size: 1.75rem;
  }
}

.p-page-mv__title {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.4583333333;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-page-mv__title {
    font-size: 0.875rem;
  }
}

.p-problem-graph {
  background: #fff;
  border-radius: 0.9375rem;
  background-image: repeating-linear-gradient(90deg, #231815, #231815 27px, transparent 27px, transparent 54px), repeating-linear-gradient(180deg, #231815, #231815 27px, transparent 27px, transparent 54px), repeating-linear-gradient(90deg, #231815, #231815 27px, transparent 27px, transparent 54px), repeating-linear-gradient(180deg, #231815, #231815 27px, transparent 27px, transparent 54px);
  background-position: left top, right top, left bottom, left top;
  background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
  background-size: 100% 3px, 3px 100%, 100% 3px, 3px 100%;
  padding: 3.125rem 2.625rem 2.1875rem;
  max-width: 54.375rem;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .p-problem-graph {
    padding: 2rem 1.625rem 2.5rem;
    display: flex;
    flex-direction: column;
    width: calc(100% - 1.25rem);
    margin-inline: auto;
  }
}

.p-problem-graph__head {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .p-problem-graph__head {
    display: contents;
    order: 1;
  }
}

.p-problem-graph__note {
  margin-top: 0.4375rem;
  font-size: 0.75rem;
  line-height: 1.5833333333;
  letter-spacing: 0.05em;
  color: #231815;
  text-align: end;
}

@media screen and (max-width: 767px) {
  .p-problem-graph__note {
    order: 3;
    font-size: 0.625rem;
    text-align: left;
    margin-top: 1.4375rem;
  }
}

.p-problem-graph__img {
  margin-top: 1.875rem;
  width: 100%;
  height: 100%;
  overflow: scroll;
}

@media screen and (max-width: 767px) {
  .p-problem-graph__img {
    order: 2;
  }
}

.p-problem-graph__img img {
  min-width: 49rem;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

.p-problem-graph__sp-note {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-problem-graph__sp-note {
    display: block;
    text-align: center;
    font-size: 0.75rem;
    color: #231815;
    margin-top: 1.125rem;
  }
}

.p-problem-if {
  width: 100%;
  background-color: #fff;
  border: 0.1875rem solid #231815;
  border-radius: 0.9375rem;
  padding: 0 6.25rem 4.75rem;
}

@media screen and (max-width: 767px) {
  .p-problem-if {
    padding: 6.25rem 0 1.25rem;
  }
}

.p-problem-if__title {
  margin-inline: auto;
  max-width: 46.875rem;
  margin-top: -3.75rem;
}

@media screen and (max-width: 767px) {
  .p-problem-if__title {
    margin-top: -7.75rem;
  }
}

.p-problem-if__content {
  margin-top: 3.3125rem;
}

.p-problem-if__block {
  display: flex;
  align-items: center;
  gap: 3%;
}

@media screen and (max-width: 767px) {
  .p-problem-if__block {
    flex-direction: column;
    padding: 0 1.5625rem;
  }
}

.p-problem-if__block+.p-problem-if__block {
  margin-top: 1.5625rem;
}

@media screen and (max-width: 767px) {
  .p-problem-if__block+.p-problem-if__block {
    margin-top: 3.875rem;
  }
}

.p-problem-if__block:nth-child(even) {
  flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
  .p-problem-if__block:nth-child(even) {
    flex-direction: column;
  }
}

.p-problem-if__block-content {
  flex: 1;
}

.p-problem-if__sub-title {
  position: relative;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #231815;
  padding-left: 2.25rem;
}

@media screen and (max-width: 767px) {
  .p-problem-if__sub-title {
    font-size: 1.125rem;
  }
}

.p-problem-if__sub-title::before {
  position: absolute;
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  background-color: #FFF101;
  left: 0.25rem;
  top: 50%;
  transform: translateY(-42%);
}

.p-problem-if__sub-title::after {
  position: absolute;
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  border: 2px solid #231815;
  left: 2px;
  top: 50%;
  transform: translateY(-53%);
}

.p-problem-if__text {
  letter-spacing: 0.05em;
  line-height: 1.625;
  color: #231815;
  margin-top: 0.625rem;
}

@media screen and (max-width: 767px) {
  .p-problem-if__text {
    font-size: 0.875rem;
    line-height: 1.8571428571;
    margin-top: 0.875rem;
  }
}

.p-problem-if__block-img {
  max-width: 26.25rem;
  width: 100%;
  aspect-ratio: 420/257;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .p-problem-if__block-img {
    margin-top: 1.875rem;
    aspect-ratio: 322/215;
  }
}

.p-problem-if__block-img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

.p-problem-wrap {
  overflow: hidden;
  position: relative;
  background-image: linear-gradient(0deg, rgba(233, 233, 239, 0), rgb(233, 233, 239) 20% 80%, rgba(233, 233, 239, 0));
}

.p-problem-wrap::before,
.p-problem-wrap::after {
  position: absolute;
  content: "";
  width: 100%;
  aspect-ratio: 1366/571;
  z-index: -1;
  left: 0;
}

@media screen and (max-width: 767px) {

  .p-problem-wrap::before,
  .p-problem-wrap::after {
    aspect-ratio: unset;
    height: 35.375rem;
  }
}

.p-problem-wrap::before {
  background: url(../images/common/gray-dot.png) no-repeat center center/cover;
  top: 0;
}

.p-problem-wrap::after {
  background: url(../images/common/gray-dot-bottom.png) no-repeat center center/cover;
  bottom: 0;
}

.p-problem-wrap__inner {
  position: relative;
  max-width: 71.25rem;
  padding: 12.8125rem 20px 14.1875rem;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .p-problem-wrap__inner {
    padding: 14.0625rem 10px 28.1875rem;
  }
}

.p-problem-wrap__inner::before,
.p-problem-wrap__inner::after {
  position: absolute;
  content: "";
  background: url(../images/icon/truck-gray.svg) no-repeat center center/cover;
  aspect-ratio: 201/174;
  height: auto;
  width: 100%;
}

.p-problem-wrap__inner::before {
  max-width: 12.5625rem;
  transform: scale(-1, 1);
  top: 16.2%;
  right: -7%;
}

@media screen and (max-width: 767px) {
  .p-problem-wrap__inner::before {
    max-width: 5.3125rem;
    top: 32%;
    right: 3%;
  }
}

.p-problem-wrap__inner::after {
  max-width: 17.625rem;
  top: 41.1%;
  left: -14%;
}

@media screen and (max-width: 767px) {
  .p-problem-wrap__inner::after {
    max-width: 12.375rem;
    top: unset;
    bottom: 6%;
    left: -6%;
  }
}

.p-problem-wrap__graph {
  margin-left: auto;
  margin-top: -3.375rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-problem-wrap__graph {
    margin-top: -2.625rem;
  }
}

.p-problem-wrap__if {
  margin-top: 10.4375rem;
}

.p-problem {
  max-width: 51.8125rem;
  width: 100%;
  background: #fff;
  border-radius: 0.9375rem;
  border: 0.1875rem solid #231815;
  position: relative;
  padding-bottom: 6.8125rem;
}

@media screen and (max-width: 767px) {
  .p-problem {
    padding-bottom: 4.6875rem;
  }
}

.p-problem__title {
  position: absolute;
  top: -3.8125rem;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .p-problem__title {
    top: -1.875rem;
  }
}

.p-problem__content {
  max-width: 40rem;
  padding: 0 20px;
  width: 100%;
  margin: 14.5% auto 0;
}

@media screen and (max-width: 767px) {
  .p-problem__content {
    margin: 26% auto 0;
  }
}

.p-problem__sub-title {
  font-size: 1.5rem;
  color: #231815;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-problem__sub-title {
    font-size: 1.125rem;
  }
}

.p-problem__text {
  margin-top: 1.375rem;
  letter-spacing: 0.05em;
  line-height: 1.625;
  color: #231815;
}

@media screen and (max-width: 767px) {
  .p-problem__text {
    font-size: 0.875rem;
    line-height: 1.8571428571;
    margin-top: 2.1875rem;
  }
}

.p-problem__note {
  margin-top: 1.8125rem;
  background-color: #FFFDE5;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 1.25rem;
  gap: 5%;
  padding: 0.375rem 1.25rem;
}

@media screen and (max-width: 767px) {
  .p-problem__note {
    flex-direction: column;
    margin-top: 1.25rem;
    padding: 1.25rem 1.25rem;
  }
}

.p-problem__note-graph {
  max-width: 11.25rem;
  width: 100%;
  aspect-ratio: 1/1;
}

.p-problem__note-graph img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

.p-problem__note-text {
  flex: 1;
  max-width: 15.5625rem;
  width: 100%;
  color: #231815;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  line-height: 1.8571428571;
}

@media screen and (max-width: 767px) {
  .p-problem__note-text {
    font-size: 0.75rem;
    line-height: 1.8333333333;
    margin-top: 1.1875rem;
  }
}

.p-promotion {
  background: #fff;
}

.p-promotion__inner {
  max-width: 47.5rem;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .p-promotion__inner {
    padding: 0 10px;
  }
}

.p-promotion__title {
  position: relative;
  text-transform: uppercase;
  line-height: 1;
  font-size: 3rem;
  text-align: center;
  padding: 1.6875rem 0;
  border-top: 0.1875rem solid #231815;
  border-bottom: 0.1875rem solid #231815;
}

@media screen and (max-width: 767px) {
  .p-promotion__title {
    font-size: 1.375rem;
    padding: 0.75rem 0;
  }
}

.p-promotion__title::before,
.p-promotion__title::after {
  position: absolute;
  content: "";
  background-image: repeating-linear-gradient(90deg, #231815, #231815 21px, transparent 17px, transparent 34px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 100% 3px;
  width: 3.5rem;
  height: 3px;
  top: 50%;
  transform: translateY(-50%);
}

.p-promotion__title::before {
  left: 0;
}

.p-promotion__title::after {
  right: 0;
}

.p-promotion__movie {
  margin-top: 4.375rem;
  width: 100%;
  aspect-ratio: 720/400;
}

@media screen and (max-width: 767px) {
  .p-promotion__movie {
    margin-top: 2.4375rem;
  }
}

.p-promotion__movie iframe {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

.p-recruit {
  background-color: #ebebeb;
  padding-top: 13.25rem;
  padding-bottom: 6.25rem;
}

@media screen and (max-width: 767px) {
  .p-recruit {
    padding-top: 5.625rem;
    padding-bottom: 3.75rem;
  }
}

.p-recruit__inner {
  max-width: 77.5rem;
  padding: 0 20px;
  margin: 0 auto;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .p-recruit__inner {
    padding: 0 10px;
  }
}

.p-recruit__container {
  position: relative;
  background-color: #fff;
  border-radius: 1.875rem;
  padding: 8.6875rem 4.5rem 3.75rem;
}

@media screen and (max-width: 767px) {
  .p-recruit__container {
    padding: 6.1875rem 2.5rem 5.625rem;
  }
}

.p-recruit__title-wrap {
  position: absolute;
  top: -5rem;
  left: 50%;
  transform: translateX(-50%);
  max-width: 45rem;
  width: 100%;
  min-height: 11.0625rem;
  border-radius: 9999px;
  background-color: #fff;
  border: 0.3125rem solid #231815;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  color: #231815;
}

@media screen and (max-width: 767px) {
  .p-recruit__title-wrap {
    min-height: 6.25rem;
    max-width: 19.375rem;
    text-align: end;
    top: -2.5625rem;
  }
}

.p-recruit__title-wrap::before {
  position: absolute;
  content: "";
  background: url(../images/top/drivers-needes.png) no-repeat center center/contain;
  max-width: 13.875rem;
  width: 100%;
  aspect-ratio: 222/218;
  height: auto;
  top: 46%;
  left: -12%;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .p-recruit__title-wrap::before {
    max-width: 7.125rem;
    left: -7%;
  }
}

.p-recruit__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4583333333;
}

@media screen and (max-width: 767px) {
  .p-recruit__title {
    font-size: 1.5rem;
    padding-right: 7%;
  }
}

.p-recruit__title-en {
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4375;
}

@media screen and (max-width: 767px) {
  .p-recruit__title-en {
    font-size: 0.875rem;
    padding-right: 25%;
  }
}

.p-recruit__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  justify-content: center;
  gap: 5%;
}

@media screen and (max-width: 767px) {
  .p-recruit__links {
    grid-template-columns: 1fr;
    width: fit-content;
    margin: 0 auto;
  }
}

.p-recruit__item {
  width: 100%;
  max-width: 31.25rem;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
}

.p-recruit__item-img-wrap {
  width: 100%;
  max-width: 31.25rem;
  aspect-ratio: 500/133;
  border: 1px solid #231815;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

@media screen and (max-width: 767px) {
  .p-recruit__item-img-wrap {
    aspect-ratio: 322/86;
    padding: 1.1875rem;
  }
}

.p-recruit__item-img {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 25rem;
}

.p-recruit__item-img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

.p-recruit__item-text {
  letter-spacing: 0.05em;
  line-height: 1.625;
  color: #231815;
  margin-top: 1.25rem;
}

.p-recruit__btn {
  margin-top: auto;
  margin-left: auto;
}

.p-recruit__btn a {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 700;
  padding-right: 3.5rem;
  padding-top: 1.1875rem;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  line-height: 1.3;
  color: #231815;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .p-recruit__btn a {
    padding-top: 1.6875rem;
  }
}

.p-recruit__btn a::before {
  position: absolute;
  content: "";
  background: url(../images/icon/arrow.svg) no-repeat center center/cover;
  display: inline-block;
  max-width: 2.8125rem;
  width: 100%;
  aspect-ratio: 1/1;
  right: 0;
  transition: all 0.3s ease 0s;
}

.p-recruit__btn a:hover {
  opacity: 1;
}

.p-recruit__btn a:hover::before {
  right: -0.625rem;
}

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

.p-to-top a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 7.125rem;
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
  border: 0.1875rem solid #231815;
  border-radius: 9999px;
  background-color: #FFF101;
  color: #231815;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 900;
}

@media screen and (max-width: 767px) {
  .p-to-top a {
    font-size: 1rem;
    max-width: 5.625rem;
  }
}

.p-top-interview {
  padding-top: 9.75rem;
  padding-bottom: 5rem;
  background-color: #fff;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-top-interview {
    padding-top: 7.25rem;
    padding-bottom: 2.5rem;
  }
}

.p-top-interview__head {
  position: absolute;
  top: -3.5625rem;
  color: #231815;
  background-color: #FFF101;
  border-radius: 0 0.9375rem 0.9375rem 0;
  margin-right: calc(50% - 50vw);
  margin-left: -58%;
  display: flex;
  flex-direction: column;
  padding: 0.875rem 2.9375rem 1.8125rem;
  justify-content: center;
  width: 100vw;
  align-items: end;
}

@media screen and (max-width: 767px) {
  .p-top-interview__head {
    margin-left: -30%;
    padding: 1.375rem 1.625rem 1.8125rem;
  }
}

.p-top-interview__title-en {
  text-transform: uppercase;
  font-size: 3.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4516129032;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .p-top-interview__title-en {
    font-size: 2.25rem;
  }
}

.p-top-interview__sub-title {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.4583333333;
  font-weight: 700;
  display: inline-block;
  text-align: center;
  padding-right: 1.0625rem;
}

@media screen and (max-width: 767px) {
  .p-top-interview__sub-title {
    font-size: 0.875rem;
  }
}

.p-top-interview__swiper {
  position: relative;
  max-width: 77rem;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
}
@media screen and (max-width: 600px){
  .p-top-interview__swiper{
    max-width: 26.875rem;
  }
}
.p-top-interview__swiper .swiper-wrapper{
  gap: 4px;
}
.p-top-interview__swiper .swiper-slide{
  flex-shrink: unset;
}
@media screen and (max-width: 600px){
  .p-top-interview__swiper .swiper-slide{
    flex-shrink: 0;
  }
}
.p-top-interview__swiper .swiper-slide a {

  display: block;
  aspect-ratio: 595/450;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-top-interview__swiper .swiper-slide a {
    width: 100%;
    max-width: 20.125rem;
    aspect-ratio: 322/368;
  }
}

.p-top-interview__swiper .swiper-slide a img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-position: top;
  height: 100%;
}

.swiper-slide__title-bg {
  position: absolute;
  width: 100%;
  height: 9.25rem;
  left: 0;
  bottom: 0;
}

@media screen and (max-width: 767px) {
  .swiper-slide__title-bg {
    height: 7.125rem;
  }
}

.swiper-slide__title-bg::after {
  content: "";
  background: #707070;
  mix-blend-mode: multiply;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.p-top-interview__swiper .swiper-slide__title-wrap {
  position: relative;
  width: 100%;
  height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  padding: 0 20px;
}

.p-top-interview__swiper .swiper-slide__title {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4285714286;
}

@media screen and (max-width: 767px) {
  .p-top-interview__swiper .swiper-slide__title {
    font-size: clamp(0.938rem, 0.758rem + 0.765vw, 1.125rem);
    line-height: 1.5;
  }
}

.p-top-interview__swiper .swiper-slide__name {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4285714286;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 767px) {
  .p-top-interview__swiper .swiper-slide__name {
    font-size: 0.75rem;
  }
}

.p-top-interview__swiper .swiper-slide__name span {
  font-size: 1.125rem;
  text-transform: uppercase;
}

@media screen and (max-width: 767px) {
  .p-top-interview__swiper .swiper-slide__name span {
    font-size: 0.875rem;
  }
}

.p-top-interview__swiper-button-wrap {
display: none;
}

@media screen and (max-width: 600px) {
  .p-top-interview__swiper-button-wrap {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: -moz-fit-content;
    width: fit-content;
    top: -4%;
    right: 4.7%;
    gap: 1.5625rem;
  }
}

.p-top-interview__swiper-button-wrap .swiper-button-prev,
.p-top-interview__swiper-button-wrap .swiper-button-next {
  position: relative;
  top: 50%;
  width: 3.125rem;
  height: 3.125rem;
}

@media screen and (max-width: 767px) {

  .p-top-interview__swiper-button-wrap .swiper-button-prev,
  .p-top-interview__swiper-button-wrap .swiper-button-next {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.p-top-interview__swiper-button-wrap .swiper-button-prev {
  left: 0;
}

.p-top-interview__swiper-button-wrap .swiper-button-next {
  right: 0;
}

.p-top-interview__swiper-button-wrap .swiper-button-prev::before,
.p-top-interview__swiper-button-wrap .swiper-button-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.1875rem;
  height: 100%;
  background: url(../images/icon/triangle.svg) no-repeat center center/contain;
}

@media screen and (max-width: 767px) {

  .p-top-interview__swiper-button-wrap .swiper-button-prev::before,
  .p-top-interview__swiper-button-wrap .swiper-button-next::before {
    width: 1rem;
  }
}

.p-top-interview__swiper-button-wrap .swiper-button-prev::before {
  transform: translate(-50%, -50%) scale(-1, 1);
}

.p-top-interview__swiper-button-wrap .swiper-button-next::before {
  transform: translate(-50%, -50%);
}

.p-truck-anime {
  position: fixed;
  bottom: 0;
  z-index: 1000;
  left: 0;
  width: 100%;
}

.p-truck-anime__load {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0.4375rem;
  background-color: #FFF101;
  z-index: 1;
}

.p-truck-anime__load-inner {
  background-color: #D1D1D8;
  height: 100%;
  width: 0;
  top: 0;
  right: 0;
  z-index: 2;
}

.p-truck-anime__truck {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 2.8125rem;
  z-index: 10;
  animation-name: engine;
  animation-delay: 0s;
  animation-duration: 0.2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes engine {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-1.5px);
  }

  100% {
    transform: translateY(0);
  }
}

.p-truck-anime__truck img {
  width: 100%;
}

.p-truck-anime__goal {
  position: absolute;
  bottom: 0;
  left: 1.4375rem;
  opacity: 0;
  transform: translateY(100%) scale(-1, 1);
  transition: all 0.3s cubic-bezier(0.27, -0.15, 0.46, 1.58) 0s;
}

@media screen and (max-width: 767px) {
  .p-truck-anime__goal {
    left: 0.625rem;
  }
}

.p-truck-anime__goal.is-active {
  opacity: 1;
  transform: translateY(0%) scale(-1, 1);
}

.p-working__inner {
  max-width: 71.25rem;
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .p-working__inner {
    padding: 0 10px;
  }
}

.p-working__container {
  position: relative;
  background-color: #fff;
  border-radius: 1.875rem;
  overflow: hidden;
  padding: 4.375rem 1.875rem 6.125rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-working__container {
    border-radius: 1.25rem;
    padding: 3.125rem 2.25rem 3.5rem;
  }
}

.p-working__container::before {
  position: absolute;
  content: "";
  background-image: url(../images/icon/truck-color.svg);
  background-repeat: space;
  background-size: 9.75rem 6.25rem;
  transform: rotate(12deg);
  opacity: 0.03;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-working__block-title {
  padding: 1rem 5.1875rem;
}

@media screen and (max-width: 767px) {
  .p-working__block-title {
    padding: 0.6875rem 1.875rem;
    min-width: 20rem;
    margin-inline: auto;
  }
}

.p-working__swiper-wrap {
  position: relative;
  max-width: 56.25rem;
  width: 100%;
  margin: 0 auto;
}

.p-working__swiper {
  margin-top: 2.375rem;
}

@media screen and (max-width: 767px) {
  .p-working__swiper {
    margin-top: 1.9375rem;
  }
}

.p-working__swiper .swiper-slide {
  display: flex;
}

@media screen and (max-width: 767px) {
  .p-working__swiper .swiper-slide {
    flex-direction: column;
  }
}

.p-working__swiper .swiper-slide__img {
  max-width: 28.125rem;
  width: 100%;
  aspect-ratio: 450/385;
}

@media screen and (max-width: 767px) {
  .p-working__swiper .swiper-slide__img {
    aspect-ratio: 300/183;
    height: 100%;
  }
}

.p-working__swiper .swiper-slide__img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

.p-working__swiper .swiper-slide__content {
  background-color: #FFFDE5;
  align-content: center;
  flex: 1;
  padding: 0 1.75rem;
}

@media screen and (max-width: 767px) {
  .p-working__swiper .swiper-slide__content {
    padding: 0 1.5625rem 1.5rem;
  }
}

.p-working__swiper .swiper-slide__head-wrap {
  font-weight: 700;
  color: #231815;
}

.p-working__swiper .swiper-slide__head {
  font-size: 1.375rem;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .p-working__swiper .swiper-slide__head {
    font-size: 1.125rem;
    margin-top: 0.9375rem;
  }
}

.p-working__swiper .swiper-slide__head span {
  font-size: 1rem;
}

@media screen and (max-width: 767px) {
  .p-working__swiper .swiper-slide__head span {
    display: block;
    font-size: 0.75rem;
  }
}

.p-working__swiper .swiper-slide__cross {
  font-size: 1.75rem;
}

@media screen and (max-width: 767px) {
  .p-working__swiper .swiper-slide__cross {
    font-size: 1.125rem;
    margin-top: -0.25rem;
  }
}

.p-working__swiper .swiper-slide__cross+.swiper-slide__head {
  margin-top: -0.5rem;
}

.p-working__swiper .swiper-slide__detail {
  margin-top: 2.5rem;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .p-working__swiper .swiper-slide__detail {
    margin-top: 0.9375rem;
  }
}

.p-working__swiper .swiper-slide__detail dl+dl {
  margin-top: 1.875rem;
}

@media screen and (max-width: 767px) {
  .p-working__swiper .swiper-slide__detail dl+dl {
    margin-top: 1rem;
  }
}

.p-working__swiper .swiper-slide__detail dt {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.p-working__swiper .swiper-slide__detail dd {
  letter-spacing: 0.05em;
  line-height: 1.625;
  margin-top: 0.625rem;
}

@media screen and (max-width: 767px) {
  .p-working__swiper .swiper-slide__detail dd {
    font-size: 0.875rem;
    line-height: 1.4285714286;
    margin-top: 0.25rem;
  }
}

.p-working__swiper-wrap .swiper-pagination {
  bottom: -1.5625rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-working__swiper-wrap .swiper-pagination {
    bottom: -0.9375rem;
  }
}

.p-working__swiper-wrap .swiper-pagination .swiper-pagination-bullet {
  border: 1px solid #231815;
  background: #707070;
  width: 0.8125rem;
  aspect-ratio: 1/1;
  height: 100%;
  opacity: 1;
  margin: 0 0.3125rem;
}

.p-working__swiper-wrap .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #FFF101;
}

.p-working__swiper-button-wrap {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 48%;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .p-working__swiper-button-wrap {
    top: 44%;
  }
}

.p-working__swiper-button-wrap .swiper-button-prev,
.p-working__swiper-button-wrap .swiper-button-next {
  position: relative;
  top: 50%;
  width: 3.75rem;
  height: 3.75rem;
}

@media screen and (max-width: 767px) {

  .p-working__swiper-button-wrap .swiper-button-prev,
  .p-working__swiper-button-wrap .swiper-button-next {
    width: 1.4375rem;
    height: 1.4375rem;
  }
}

.p-working__swiper-button-wrap .swiper-button-prev {
  left: -7%;
}

@media screen and (max-width: 767px) {
  .p-working__swiper-button-wrap .swiper-button-prev {
    left: -10%;
  }
}

.p-working__swiper-button-wrap .swiper-button-next {
  margin-left: 6.25rem;
  right: -7%;
}

@media screen and (max-width: 767px) {
  .p-working__swiper-button-wrap .swiper-button-next {
    right: -10%;
  }
}

.p-working__swiper-button-wrap .swiper-button-prev::before,
.p-working__swiper-button-wrap .swiper-button-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.75rem;
  height: 100%;
  background: url(../images/icon/triangle.svg) no-repeat center center/contain;
}

.p-working__swiper-button-wrap .swiper-button-prev::before {
  transform: translate(-50%, -50%) scale(-1, 1);
}

.p-working__swiper-button-wrap .swiper-button-next::before {
  transform: translate(-50%, -50%);
}

.u-md {
  display: none;
}

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

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