@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #241204;
  text-align: justify;
}

body.hidden {
  overflow: hidden;
}

body .grecaptcha-badge {
  visibility: hidden;
}

body.page-id-12 .grecaptcha-badge {
  visibility: visible;
}

main {
  flex: 1;
}

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

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: initial;
  }
}

/* ホバー */
a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease-out;
}

@media (any-hover: hover) {
  a:hover {
    opacity: 0.8;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

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

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

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

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

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

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

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

*:focus {
  outline: none;
}

.l-inner {
  margin-inline: auto;
  padding: 0 1.5625rem;
  width: 100%;
  max-width: calc(90rem + 3.125rem);
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding: 0 1.25rem;
    max-width: calc(33.75rem + 2.5rem);
  }
}

.l-site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.c-about-text {
  font-size: max(1.5rem, 10px);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-about-text {
    font-size: max(1.125rem, 10px);
  }
}
.c-about-text + .c-about-text {
  margin-top: 2.25rem;
}
@media screen and (max-width: 767px) {
  .c-about-text + .c-about-text {
    margin-top: 1.6875rem;
  }
}
.c-about-text span {
  color: #e16d18;
}

.c-breadcrumb {
  padding-block: 1.25rem 1.5rem;
  background-color: #f8f8f8;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb {
    padding-block: 1rem 1.25rem;
  }
}

.c-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: max(0.875rem, 10px);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__list {
    font-size: max(0.75rem, 10px);
  }
}

.c-breadcrumb__item {
  display: flex;
  align-items: center;
}
.c-breadcrumb__item:not(:last-child)::after {
  content: ">";
  margin-left: 0.5rem;
  color: #241204;
  font-size: max(0.75rem, 10px);
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__item:not(:last-child)::after {
    font-size: max(0.625rem, 10px);
  }
}

.c-breadcrumb__link {
  color: #241204;
  text-decoration: none;
  transition: color 0.3s ease-out;
}
.c-breadcrumb__link:hover {
  color: #e16d18;
  text-decoration: underline;
}

.c-breadcrumb__current {
  color: #e16d18;
}

.c-entry-part {
  margin-block: 5rem;
  margin-inline: auto;
  padding-block: 3.75rem;
  max-width: 80rem;
  background-image: linear-gradient(90deg, #e16d18, #f4a905);
  border-radius: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-entry-part {
    margin-block: 3.125rem;
    padding-block: 1.875rem;
  }
}

@media screen and (max-width: 767px) {
  .c-entry-part__inner {
    padding-inline: 1.25rem;
  }
}

.c-entry-part__title {
  font-size: max(3rem, 10px);
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-entry-part__title {
    font-size: max(2rem, 10px);
  }
}

.c-entry-part__button {
  margin-top: 2.5rem;
  margin-inline: auto;
  width: 25rem;
}
@media screen and (max-width: 767px) {
  .c-entry-part__button {
    margin-top: 1.5rem;
    width: 100%;
  }
}

.c-link {
  padding: 0.9375rem 0.75rem 0.9375rem 3rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 1rem;
  line-height: 1;
  color: #ffffff;
  background-color: #f4a905;
  border: 0.125rem solid #f4a905;
  border-radius: 100vmax;
  position: relative;
  white-space: nowrap;
  transition: color 0.3s ease-out, background-color 0.3s ease-out;
}

.c-link--02 {
  padding: 0.9375rem 0.75rem 0.9375rem 3rem;
  background-color: #e16d18;
  border: 0.125rem solid #e16d18;
}

@media screen and (max-width: 767px) {
  .p-drawer__recruit-link,
  .p-drawer__contact-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    font-size: max(1rem, 10px);
    line-height: 1;
    color: #ffffff;
    border-radius: 100vmax;
    position: relative;
    white-space: nowrap;
    transition: color 0.3s ease-out, background-color 0.3s ease-out;
  }
}

.p-drawer__recruit-link {
  padding: 0.625rem 0.625rem 0.625rem 8.0625rem;
  background-color: #f4a905;
  border: 0.125rem solid #f4a905;
}

.p-drawer__contact-link {
  padding: 0.625rem 0.625rem 0.625rem 7.03125rem;
  background-color: #e16d18;
  border: 0.125rem solid #e16d18;
}

.c-link--03,
.c-link--04,
.c-link--05 {
  justify-content: space-between;
  font-size: max(1.5rem, 10px);
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .c-link--03,
  .c-link--04,
  .c-link--05 {
    font-size: max(1.25rem, 10px);
  }
}

.c-link--03 {
  padding: 1rem 1rem 1rem 8.0625rem;
  color: #f4a905;
  border: 0.25rem solid #e16d18;
}
@media screen and (max-width: 767px) {
  .c-link--03 {
    padding: 0.75rem 1.25rem 0.75rem 5.53125rem;
  }
}

.c-link--04 {
  padding: 1rem 1rem 1rem 6.53125rem;
  color: #e16d18;
  border: 0.25rem solid #f4a905;
}
@media screen and (max-width: 767px) {
  .c-link--04 {
    padding: 0.75rem 1.25rem 0.75rem 4.25rem;
  }
}

.c-link--05 {
  padding: 1rem 1rem 1rem 6.53125rem;
  color: #f4a905;
  border: 0.25rem solid #e16d18;
}
@media screen and (max-width: 767px) {
  .c-link--05 {
    padding: 0.75rem 1.25rem 0.75rem 5.5rem;
  }
}

.c-link--00 {
  padding: 1.25rem 1.125rem 1.25rem 8.1875rem;
  justify-content: space-between;
  font-size: max(1.5rem, 10px);
  color: #ffffff;
  background: linear-gradient(90deg, #e16d18 0%, #f4a905 100%);
  border: none;
  position: relative;
  box-shadow: inset 0 0 0 0rem transparent;
  transition: background-color 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .c-link--00 {
    padding: 1rem 1.5rem 1rem 7.03125rem;
    font-size: max(1.25rem, 10px);
  }
}

.c-link--00 .c-link__text,
.c-link--00 .c-link__img {
  position: relative;
  z-index: 2;
}

.c-link--00 .c-link__text {
  text-transform: uppercase;
  transition: background 0.3s ease-out, -webkit-text-fill-color 0.3s ease-out;
}

.c-link--00 .c-link__img {
  max-width: 2rem;
  transition: transform 0.3s ease-out;
}

.c-link--001 {
  padding: 1.25rem 1.25rem 1.25rem 4.34375rem;
}
@media screen and (max-width: 767px) {
  .c-link--001 {
    padding: 1rem 1.5rem 1rem 3.71875rem;
  }
}

.c-link--002 {
  padding: 1.25rem 1.25rem 1.25rem 5.21875rem;
  gap: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .c-link--002 {
    padding: 1rem 1.5rem 1rem 4.46875rem;
    gap: 0.1875rem;
  }
}

.c-link--003 {
  padding: 1.125rem 1.125rem 1.125rem 4.34375rem;
}
@media screen and (max-width: 767px) {
  .c-link--003 {
    padding: 0.75rem 1.5rem 0.75rem 3.71875rem;
  }
}

.c-link--004 {
  padding: 1.25rem 1.25rem 1.25rem 8.34375rem;
}
@media screen and (max-width: 767px) {
  .c-link--004 {
    padding: 1rem 1.5rem 1rem 7.0625rem;
  }
}

.c-link--005 {
  padding: 1.25rem 1.25rem 1.25rem 4.34375rem;
}
@media screen and (max-width: 767px) {
  .c-link--005 {
    padding: 1rem 1.5rem 1rem 3.5625rem;
    gap: 0.8125rem;
  }
}

.c-link--006 {
  padding: 1.25rem 1.25rem 1.25rem 5.25rem;
  gap: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .c-link--006 {
    padding: 1rem 1.5rem 1rem 4.46875rem;
    gap: 0.1875rem;
  }
}

.c-link--007 {
  padding: 1.25rem 1.25rem 1.25rem 2.9375rem;
  gap: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .c-link--007 {
    padding: 1rem 1.5rem 1rem 2.1875rem;
    gap: 0.1875rem;
  }
}

.c-link--008 {
  padding: 1.25rem 1.25rem 1.25rem 8.3125rem;
}
@media screen and (max-width: 767px) {
  .c-link--008 {
    padding: 1rem 1.5rem 1rem 7.03125rem;
  }
}

.c-link--009 {
  padding: 1.25rem 1.25rem 1.25rem 7.53125rem;
}
@media screen and (max-width: 767px) {
  .c-link--009 {
    padding: 1rem 1.5rem 1rem 6.40625rem;
  }
}

.c-link--010 {
  padding: 1.25rem 1.25rem 1.25rem 6.78125rem;
}
@media screen and (max-width: 767px) {
  .c-link--010 {
    padding: 1rem 1.5rem 1rem 5.75rem;
  }
}

.c-link__img {
  display: block;
  width: 100%;
  max-width: 1.5rem;
  position: relative;
}
.c-link__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1;
  opacity: 1;
  transition: opacity 0.3s ease-out;
}
.c-link__img img:nth-of-type(2) {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.c-link--03 .c-link__img,
.c-link--04 .c-link__img,
.c-link--05 .c-link__img {
  max-width: 2rem;
  transition: translate 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .c-link--03 .c-link__img,
  .c-link--04 .c-link__img,
  .c-link--05 .c-link__img {
    max-width: 1.75rem;
  }
}

.c-link--00 .c-link__img {
  max-width: 2rem;
  transition: transform 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .c-link--00 .c-link__img {
    max-width: 1.75rem;
  }
}

@media (any-hover: hover) {
  .c-link:hover {
    color: #f4a905;
    background-color: #ffffff;
    opacity: 1;
  }
  .c-link--02:hover {
    color: #e16d18;
    background-color: #ffffff;
  }
  .c-link:hover .c-link__img img:nth-of-type(1) {
    opacity: 0;
  }
  .c-link:hover .c-link__img img:nth-of-type(2) {
    opacity: 1;
  }
  .c-link--03:hover,
  .c-link--05:hover {
    color: #ffffff;
    background-color: #e16d18;
  }
  .c-link--03:hover .c-link__img,
  .c-link--05:hover .c-link__img {
    translate: 0.5rem 0;
  }
  .c-link--04:hover {
    color: #ffffff;
    background-color: #f4a905;
  }
  .c-link--04:hover .c-link__img {
    translate: 0.5rem 0;
  }
  .c-link--00:hover .c-link__img img:nth-of-type(1),
  .c-link--00:focus-visible .c-link__img img:nth-of-type(1) {
    opacity: 0;
  }
  .c-link--00:hover .c-link__img img:nth-of-type(2),
  .c-link--00:focus-visible .c-link__img img:nth-of-type(2) {
    opacity: 1;
  }
}
@media (any-hover: hover) {
  .c-link--00:hover,
  .c-link--00:focus-visible {
    background: #ffffff;
    box-shadow: inset 0 0 0 0.125rem #e16d18;
  }
  .c-link--00:hover .c-link__text,
  .c-link--00:focus-visible .c-link__text {
    background: linear-gradient(90deg, #e16d18 0%, #f4a905 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
  .c-link--00:hover .c-link__img,
  .c-link--00:focus-visible .c-link__img {
    transform: translateX(0.5rem);
  }
  .c-link--00:hover .c-link__img img:nth-of-type(1),
  .c-link--00:focus-visible .c-link__img img:nth-of-type(1) {
    opacity: 0;
  }
  .c-link--00:hover .c-link__img img:nth-of-type(2),
  .c-link--00:focus-visible .c-link__img img:nth-of-type(2) {
    opacity: 1;
  }
}
.c-lower-mv {
  position: relative;
}

.p-privacy-mv,
.p-news-mv {
  height: 50vh;
  min-height: 18.75rem;
  max-height: 28.125rem;
  background-color: #342e29;
}
@media screen and (max-width: 767px) {
  .p-privacy-mv,
  .p-news-mv {
    height: 50svh;
    min-height: 12.5rem;
    max-height: 20.875rem;
  }
}

.p-contact-mv,
.p-company-mv,
.p-about-mv,
.p-offering-mv,
.p-interview-mv,
.p-business-mv,
.p-base-mv,
.p-number-mv,
.p-job-mv {
  height: 70vh;
  min-height: 25rem;
  max-height: 39.375rem;
}
@media screen and (max-width: 767px) {
  .p-contact-mv,
  .p-company-mv,
  .p-about-mv,
  .p-offering-mv,
  .p-interview-mv,
  .p-business-mv,
  .p-base-mv,
  .p-number-mv,
  .p-job-mv {
    height: 70svh;
    min-height: 18.75rem;
    max-height: 29.1875rem;
  }
}

.p-contact-mv {
  background: url(../images/contact/mv.webp) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-contact-mv {
    background: url(../images/contact/mv_sp.webp) no-repeat center/cover;
  }
}

.p-company-mv {
  background: url(../images/company/mv.webp) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-company-mv {
    background: url(../images/company/mv_sp.webp) no-repeat center/cover;
  }
}

.p-about-mv {
  background: url(../images/about/mv.webp) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-about-mv {
    background: url(../images/about/mv_sp.webp) no-repeat center/cover;
  }
}

.p-offering-mv {
  background: url(../images/offering/mv.webp) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-offering-mv {
    background: url(../images/offering/mv_sp.webp) no-repeat center/cover;
  }
}

.p-interview-mv {
  background: url(../images/interview/mv.webp) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-interview-mv {
    background: url(../images/interview/mv_sp.webp) no-repeat center/cover;
  }
}

.p-business-mv {
  background: url(../images/business/mv.webp) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-business-mv {
    background: url(../images/business/mv_sp.webp) no-repeat center/cover;
  }
}

.p-base-mv {
  background: url(../images/base/mv.webp) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-base-mv {
    background: url(../images/base/mv_sp.webp) no-repeat center/cover;
  }
}

.p-recruit-mv {
  background: url(../images/recruit/mv.webp) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-recruit-mv {
    background: url(../images/recruit/mv_sp.webp) no-repeat center/cover;
  }
}

.p-number-mv {
  background: url(../images/number/mv.webp) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-number-mv {
    background: url(../images/number/mv_sp.webp) no-repeat center/cover;
  }
}

.p-job-mv {
  background: url(../images/job/mv.webp) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-job-mv {
    background: url(../images/job/mv_sp.webp) no-repeat center/cover;
  }
}

.c-lower-mv__title {
  font-size: max(4.5rem, 10px);
  color: #ffffff;
  text-align: center;
  text-shadow: 0 0 3.75rem rgba(52, 46, 41, 0.8);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-lower-mv__title {
    font-size: max(2.5rem, 10px);
  }
}
.c-lower-mv__title span {
  display: block;
  font-size: max(2.25rem, 10px);
}
@media screen and (max-width: 767px) {
  .c-lower-mv__title span {
    font-size: max(1.25rem, 10px);
  }
}
.c-lower-mv__title::after {
  content: "";
  display: block;
  width: 7.5rem;
  height: 0.25rem;
  background-color: #e16d18;
  position: absolute;
  bottom: -1.25rem;
  left: 50%;
  translate: -50% 0;
  box-shadow: 0 0 3.75rem rgba(52, 46, 41, 0.8);
}
@media screen and (max-width: 767px) {
  .c-lower-mv__title::after {
    width: 3.75rem;
    bottom: -0.8125rem;
  }
}

.p-recruit-mv .c-lower-mv__title::after {
  display: none;
}

.c-lower-title {
  text-align: center;
}

.c-lower-title__en {
  font-size: max(10rem, 10px);
  font-family: "Prompt", sans-serif;
  line-height: 1;
  color: rgba(226, 132, 62, 0.4);
}
@media screen and (max-width: 767px) {
  .c-lower-title__en {
    font-size: max(3.125rem, 10px);
    white-space: nowrap;
  }
}

.c-lower-title__ja {
  margin-top: -5rem;
  font-size: max(3.75rem, 10px);
}
@media screen and (max-width: 767px) {
  .c-lower-title__ja {
    margin-top: -1.9375rem;
    font-size: max(2rem, 10px);
  }
}

@media screen and (max-width: 767px) {
  .p-about-quality .c-lower-title__en {
    font-size: clamp(2.563rem, 2.16rem + 2.013vw, 3.125rem);
  }
}

body.no-scroll {
  overflow: hidden; /* スクロールを無効にする */
  height: 100%; /* ページの高さを固定する */
}

.c-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  background-color: rgba(51, 51, 51, 0.6);
}

.c-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.c-modal__body {
  padding: 5rem;
  width: min(100%, 70rem);
  background-color: #ffffff;
  border-radius: 1.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-modal__body {
    padding: 2.5rem 0.625rem;
    width: min(100%, 20.9375rem);
  }
}

.c-modal__close-button {
  display: block;
  width: min(100%, 3.125rem);
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-modal__close-button {
    top: 0.625rem;
    right: 0.625rem;
  }
}

.c-modal__close-button img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1;
}

.c-modal__title {
  font-size: max(1.875rem, 10px);
  color: #f24469;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-modal__title {
    font-size: max(1.5rem, 10px);
  }
}

.js-modal02 .c-modal__title {
  color: #9d79c9;
}
@media screen and (max-width: 767px) {
  .js-modal02 .c-modal__title {
    color: #68bdc3;
  }
}

.js-modal03 .c-modal__title {
  color: #6cb252;
}
@media screen and (max-width: 767px) {
  .js-modal03 .c-modal__title {
    color: #9d79c9;
  }
}

.js-modal04 .c-modal__title {
  color: #68bdc3;
}
@media screen and (max-width: 767px) {
  .js-modal04 .c-modal__title {
    color: #3d3dde;
  }
}

.js-modal05 .c-modal__title {
  color: #3d3dde;
}
@media screen and (max-width: 767px) {
  .js-modal05 .c-modal__title {
    color: #6cb252;
  }
}

.c-modal__head {
  margin-top: 0.625rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-modal__head {
    margin-top: 0.5rem;
    gap: 0.625rem;
  }
}

.c-modal__head-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.625rem;
  height: 5.625rem;
  background-color: #ffe8ed;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .c-modal__head-img-wrap {
    width: 4.5rem;
    height: 4.5rem;
  }
}

.js-modal02 .c-modal__head-img-wrap {
  background-color: #f0e3ff;
}
@media screen and (max-width: 767px) {
  .js-modal02 .c-modal__head-img-wrap {
    background-color: #d8fcff;
  }
}

.js-modal03 .c-modal__head-img-wrap {
  background-color: #d0ffbf;
}
@media screen and (max-width: 767px) {
  .js-modal03 .c-modal__head-img-wrap {
    background-color: #f0e3ff;
  }
}

.js-modal04 .c-modal__head-img-wrap {
  background-color: #d8fcff;
}
@media screen and (max-width: 767px) {
  .js-modal04 .c-modal__head-img-wrap {
    background-color: #d5e2ff;
  }
}

.js-modal05 .c-modal__head-img-wrap {
  background-color: #d5e2ff;
}
@media screen and (max-width: 767px) {
  .js-modal05 .c-modal__head-img-wrap {
    background-color: #d0ffbf;
  }
}

.c-modal__head-img {
  display: block;
  width: 100%;
  max-width: 3.75rem;
}
@media screen and (max-width: 767px) {
  .c-modal__head-img {
    max-width: 3rem;
  }
}
.c-modal__head-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1;
}

.c-modal__head-text {
  font-size: max(0.75rem, 10px);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-modal__head-text {
    font-size: max(0.625rem, 10px);
  }
}

.c-modal__text-box {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background-color: #ffe8ed;
  border-radius: 0.75rem;
}
@media screen and (max-width: 767px) {
  .c-modal__text-box {
    margin-top: 0.75rem;
    padding: 1rem 0.625rem;
  }
}

.js-modal02 .c-modal__text-box {
  background-color: #f0e3ff;
}
@media screen and (max-width: 767px) {
  .js-modal02 .c-modal__text-box {
    background-color: #d8fcff;
  }
}

.js-modal03 .c-modal__text-box {
  background-color: #d0ffbf;
}
@media screen and (max-width: 767px) {
  .js-modal03 .c-modal__text-box {
    background-color: #f0e3ff;
  }
}

.js-modal04 .c-modal__text-box {
  background-color: #d8fcff;
}
@media screen and (max-width: 767px) {
  .js-modal04 .c-modal__text-box {
    background-color: #d5e2ff;
  }
}

.js-modal05 .c-modal__text-box {
  background-color: #d5e2ff;
}
@media screen and (max-width: 767px) {
  .js-modal05 .c-modal__text-box {
    background-color: #d0ffbf;
  }
}

.c-modal__heading {
  font-size: max(1.5rem, 10px);
}
@media screen and (max-width: 767px) {
  .c-modal__heading {
    font-size: max(1rem, 10px);
  }
}

.c-modal__text {
  margin-top: 0.25rem;
  font-size: max(1rem, 10px);
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-modal__text {
    margin-top: 0.125rem;
    font-size: max(0.875rem, 10px);
  }
}

.c-offering-title {
  font-size: max(3.75rem, 10px);
  color: #e16d18;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-offering-title {
    font-size: max(2rem, 10px);
  }
}

.c-title {
  font-size: max(3.75rem, 10px);
  color: #e16d18;
}
@media screen and (max-width: 767px) {
  .c-title {
    font-size: max(2rem, 10px);
  }
}

.p-404 {
  padding-top: 31.25rem;
  padding-bottom: 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-404 {
    padding-top: 12.5rem;
    padding-bottom: 6.25rem;
  }
}

.p-404__title {
  text-align: center;
}

.p-about-company {
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-about-company {
    padding-top: 3.125rem;
  }
}

.p-about-company__inner {
  margin-inline: auto;
  padding-inline: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-about-company__inner {
    padding-inline: initial;
  }
}

.p-about-company__container {
  margin-inline: auto;
  padding: 3.75rem;
  max-width: 80rem;
  display: flex;
  justify-content: space-between;
  background-image: linear-gradient(90deg, #e16d18, #f4a905);
  border-radius: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-about-company__container {
    padding: 1.875rem 1.25rem;
    flex-direction: column;
  }
}

.p-about-company__content {
  color: #ffffff;
}

.p-about-company__title {
  font-size: max(3.75rem, 10px);
}
@media screen and (max-width: 767px) {
  .p-about-company__title {
    font-size: max(2rem, 10px);
  }
}

.p-about-company__text {
  margin-top: 3.75rem;
  font-size: max(1rem, 10px);
}
@media screen and (max-width: 767px) {
  .p-about-company__text {
    margin-top: 2.5rem;
    font-size: max(0.875rem, 10px);
  }
}

.p-about-company__button {
  margin-top: 6.375rem;
  width: 25rem;
}
@media screen and (max-width: 767px) {
  .p-about-company__button {
    margin-top: 2.5rem;
    width: 100%;
  }
}

.p-about-head {
  padding-block: 6.125rem;
}
@media screen and (max-width: 767px) {
  .p-about-head {
    padding-block: 5rem;
  }
}

.p-about-head__container {
  margin-inline: auto;
  display: flex;
  gap: 2.5rem;
  max-width: 80rem;
}
@media screen and (max-width: 767px) {
  .p-about-head__container {
    flex-direction: column;
    gap: 1.5rem;
  }
}

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

.p-about-head__title-box {
  width: 100%;
  height: 11.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-about-head__title-box {
    height: initial;
  }
}

.p-about-head__title {
  font-size: max(3.75rem, 10px);
  color: #e16d18;
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-about-head__title {
    font-size: max(2rem, 10px);
    white-space: initial;
    position: initial;
  }
}

.p-about-head__text-box {
  margin-top: 3.75rem;
  max-width: 37.5rem;
}
@media screen and (max-width: 767px) {
  .p-about-head__text-box {
    margin-top: 2.5rem;
  }
}

.p-about-head__text {
  font-size: max(1rem, 10px);
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-about-head__text {
    font-size: max(0.875rem, 10px);
  }
}
.p-about-head__text span {
  font-weight: 700;
  color: #e16d18;
}
.p-about-head__text + .p-about-head__text {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-about-head__text + .p-about-head__text {
    margin-top: 1.3125rem;
  }
}

.p-about-head__signature {
  margin-top: 1.5rem;
  font-size: max(1.5rem, 10px);
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-about-head__signature {
    margin-top: 1.3125rem;
    font-size: max(1.125rem, 10px);
  }
}

.p-about-head__img {
  display: block;
  width: 100%;
  max-width: 40rem;
}
@media screen and (max-width: 767px) {
  .p-about-head__img {
    max-width: 20.9375rem;
  }
}
.p-about-head__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 640/840;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 0 2.5rem rgba(52, 46, 41, 0.2);
}
@media screen and (max-width: 767px) {
  .p-about-head__img img {
    aspect-ratio: 335/240;
  }
}

.p-about-history {
  padding-block: 5rem;
  background: url(../images/about/history-bg.webp) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-about-history {
    padding-block: 3.125rem;
    background: url(../images/about/history-bg_sp.webp) no-repeat center/cover;
  }
}

.about-history__text {
  margin-top: 3.75rem;
  margin-inline: auto;
  max-width: 42.875rem;
  font-size: max(1rem, 10px);
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about-history__text {
    margin-top: 2.5rem;
    font-size: max(0.875rem, 10px);
  }
}

.p-about-history__list {
  margin-top: 2.25rem;
  margin-inline: auto;
  max-width: 40.5rem;
}
@media screen and (max-width: 767px) {
  .p-about-history__list {
    margin-top: 1.5rem;
    position: relative;
  }
  .p-about-history__list::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #f8f8f8;
    position: absolute;
    top: 0;
    left: 0;
  }
}

.p-about-history__item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-about-history__item {
    flex-direction: column;
    align-items: initial;
    gap: initial;
  }
}

.p-about-history__term {
  width: 5.25rem;
  font-size: max(2rem, 10px);
  color: #e2843e;
}
@media screen and (max-width: 767px) {
  .p-about-history__term {
    padding-top: 0.5rem;
    font-size: max(1.75rem, 10px);
  }
}
.p-about-history__term span {
  font-size: max(1rem, 10px);
}
@media screen and (max-width: 767px) {
  .p-about-history__term span {
    font-size: max(0.875rem, 10px);
  }
}

.p-about-history__description {
  flex: 1;
  padding: 1.75rem 1rem;
  font-size: max(1rem, 10px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-about-history__description {
    padding: 0rem 0rem 1rem 0.5rem;
    font-size: max(0.875rem, 10px);
  }
}
.p-about-history__description::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #f8f8f8;
  position: absolute;
  bottom: 0;
  left: 0;
}

.p-about-history__item:first-of-type .p-about-history__description::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #f8f8f8;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-about-history__item:first-of-type .p-about-history__description::before {
    display: none;
  }
}

.p-about-philosophy {
  padding-block: 5rem;
  background-color: #f8f8f8;
}
@media screen and (max-width: 767px) {
  .p-about-philosophy {
    padding-block: 3.125rem;
  }
}

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

.p-about-quality {
  padding-block: 5rem;
  background-color: #f3efe6;
}
@media screen and (max-width: 767px) {
  .p-about-quality {
    padding-block: 3.125rem;
  }
}

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

.p-about-recruit {
  padding-block: 5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-about-recruit {
    padding-block: 3.125rem;
  }
}

.p-about-recruit__inner {
  margin-inline: auto;
  padding-inline: 1.25rem;
  max-width: 82.5rem;
}
@media screen and (max-width: 767px) {
  .p-about-recruit__inner {
    padding-inline: initial;
  }
}

.p-about-recruit__container {
  padding: 3.75rem;
  background: url(../images/top/works-bg.webp) no-repeat center/cover;
  display: flex;
  gap: 1.5rem;
  border-radius: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-about-recruit__container {
    padding: 1.875rem 1.25rem;
    flex-direction: column;
    gap: 2.25rem;
    background: url(../images/top/works-bg_sp.webp) no-repeat center/cover;
  }
}

.p-about-recruit__text {
  margin-top: 3.75rem;
  font-size: max(1rem, 10px);
  font-weight: 400;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-about-recruit__text {
    margin-top: 2.5rem;
    font-size: max(0.875rem, 10px);
  }
}

.p-about-recruit__link {
  padding-bottom: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: max(1.875rem, 10px);
  color: #ffffff;
  background-image: linear-gradient(#e16d18, #e16d18);
  background-repeat: no-repeat;
  background-position: bottom right; /* 下線の初期位置 */
  background-size: 0 0.125rem; /* 下線のサイズ（横幅、高さ） */
  transition: background-size 0.3s ease-out, color 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .p-about-recruit__link {
    font-size: max(1.5rem, 10px);
  }
}

.p-about-recruit__link-img {
  display: block;
  width: 100%;
  max-width: 1.875rem;
  position: relative;
}
.p-about-recruit__link-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1;
  opacity: 1;
  transition: opacity 0.3s ease-out;
}
.p-about-recruit__link-img img:nth-of-type(2) {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.p-about-recruit__button {
  margin-top: 3.75rem;
  width: 25rem;
}
@media screen and (max-width: 767px) {
  .p-about-recruit__button {
    margin-top: 2.5rem;
    width: 100%;
  }
}

.p-about-recruit__img {
  display: block;
  width: 100%;
  max-width: 33.75rem;
  position: absolute;
  top: 8.5rem;
  right: 0;
}
@media screen and (max-width: 767px) {
  .p-about-recruit__img {
    margin-top: initial;
    margin-inline: auto;
    max-width: 16.875rem;
    position: initial;
  }
}
.p-about-recruit__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 540/400;
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-about-recruit__img img {
    aspect-ratio: 270/200;
  }
}

.p-about-vision {
  padding-block: 5rem;
  background-color: #fff3eb;
}
@media screen and (max-width: 767px) {
  .p-about-vision {
    padding-block: 3.125rem;
  }
}

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

.p-base-head {
  padding-block: 8.75rem;
}
@media screen and (max-width: 767px) {
  .p-base-head {
    padding-block: 5rem;
  }
}

.p-base-head__title {
  font-size: max(3.75rem, 10px);
  color: #e16d18;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-base-head__title {
    font-size: max(2rem, 10px);
  }
}

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

.p-base-head__text {
  font-size: max(1rem, 10px);
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-base-head__text {
    font-size: max(0.875rem, 10px);
  }
}
.p-base-head__text + .p-base-head__text {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-base-head__text + .p-base-head__text {
    margin-top: 1.3125rem;
  }
}

.p-base-list {
  padding-block: 5rem;
  background-color: #f3efe6;
}
@media screen and (max-width: 767px) {
  .p-base-list {
    padding-block: 3.125rem;
  }
}

.p-base-list__inner {
  max-width: 64.375rem;
}

.p-base-list__title {
  font-size: max(1.875rem, 10px);
  color: #e16d18;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-base-list__title {
    font-size: max(1.5rem, 10px);
  }
}

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

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

.p-base-list__heading {
  font-size: max(1rem, 10px);
  color: #e2843e;
}
@media screen and (max-width: 767px) {
  .p-base-list__heading {
    font-size: max(0.875rem, 10px);
  }
}

.p-base-list__definition {
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.25rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-base-list__definition {
    margin-top: 0.25rem;
    grid-template-columns: 1fr;
    gap: initial;
  }
}

.p-base-list__term,
.p-base-list__description {
  font-size: max(1rem, 10px);
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-base-list__term,
  .p-base-list__description {
    font-size: max(0.875rem, 10px);
  }
}

.p-base-list__term {
  padding-left: 1.5em;
  position: relative;
}
.p-base-list__term::before {
  content: "";
  width: 0.125rem;
  height: 0.125rem;
  background-color: #241204;
  border-radius: 100vmax;
  position: absolute;
  top: calc(0.5lh - 0.0625rem);
  left: 0.7em;
}

.p-base-list__description {
  padding-left: 2em;
}

.p-base-list__box {
  display: flex;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-base-list__box {
    flex-direction: column;
    gap: initial;
  }
}

.p-base-list__definition--column {
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-base-list__definition--column + .p-base-list__definition--column {
    margin-top: 0;
  }
}

.p-business-effort {
  padding-block: 8.75rem;
}
@media screen and (max-width: 767px) {
  .p-business-effort {
    padding-block: 5rem;
  }
}

.p-business-effort__inner {
  max-width: 83.125rem;
}

.p-business-effort__title {
  font-size: max(3.75rem, 10px);
  color: #e16d18;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-business-effort__title {
    font-size: max(2rem, 10px);
  }
}

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

.p-business-effort__item {
  margin-top: 5rem;
  display: flex;
  align-items: center;
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-business-effort__item {
    margin-top: 3.125rem;
    flex-direction: column-reverse;
    gap: 1.5rem;
  }
}

.p-business-effort__item:first-child {
  margin-top: 0;
}

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

.p-business-effort__content {
  flex: 1;
}

.p-business-effort__subtitle {
  font-size: max(1.875rem, 10px);
  color: #e2843e;
}
@media screen and (max-width: 767px) {
  .p-business-effort__subtitle {
    font-size: max(1.5rem, 10px);
  }
}

.p-business-effort__detail {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-business-effort__detail {
    margin-top: 0.5rem;
  }
}

.p-business-effort__detail:first-of-type {
  margin-top: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-business-effort__detail:first-of-type {
    margin-top: 1rem;
  }
}

.p-business-effort__label {
  font-size: max(1.25rem, 10px);
}
@media screen and (max-width: 767px) {
  .p-business-effort__label {
    font-size: max(1rem, 10px);
  }
}

.p-business-effort__text {
  margin-top: 0.25rem;
  font-size: max(1rem, 10px);
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-business-effort__text {
    margin-top: 0;
    font-size: max(0.875rem, 10px);
  }
}

.p-business-effort__numbered-list {
  margin-top: 0.25rem;
  counter-reset: number;
}
@media screen and (max-width: 767px) {
  .p-business-effort__numbered-list {
    margin-top: 0;
  }
}

.p-business-effort__list-item {
  padding-left: 1.5em;
  text-indent: -1em;
  font-size: max(1rem, 10px);
  font-weight: 400;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-business-effort__list-item {
    font-size: max(0.875rem, 10px);
  }
}
.p-business-effort__list-item::before {
  content: counter(number) ". ";
  counter-increment: number;
}

.p-business-effort__list-item:first-child {
  margin-top: 0;
}

.p-business-effort__img {
  display: block;
  width: 100%;
  max-width: 41.25rem;
}
@media screen and (max-width: 767px) {
  .p-business-effort__img {
    max-width: 20.9375rem;
  }
}
.p-business-effort__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 660/400;
  border-radius: 1.5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-business-effort__img img {
    aspect-ratio: 335/203;
  }
}

.p-business-package {
  padding-top: 8.75rem;
  padding-bottom: 11.25rem;
  background-color: #fff3eb;
}
@media screen and (max-width: 767px) {
  .p-business-package {
    padding-block: 5rem;
  }
}

.p-business-package__inner {
  margin-inline: auto;
  padding-inline: 1.5625rem;
  max-width: 86.25rem;
}
@media screen and (max-width: 767px) {
  .p-business-package__inner {
    padding-inline: 1.25rem;
  }
}

.p-business-package__title {
  font-size: max(6.25rem, 10px);
  font-family: "Prompt", sans-serif;
  color: #e16d18;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-business-package__title {
    font-size: max(3.125rem, 10px);
  }
}

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

.p-business-package__text {
  font-size: max(1rem, 10px);
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-business-package__text {
    text-align: left;
  }
}

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

.p-business-package__section-title {
  font-size: max(1.875rem, 10px);
}
@media screen and (max-width: 767px) {
  .p-business-package__section-title {
    font-size: max(1.5rem, 10px);
  }
}

.p-business-package__section-text-box {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-business-package__section-text-box {
    margin-top: 1rem;
  }
}

.p-business-package__section-text {
  font-size: max(1rem, 10px);
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-business-package__section-text {
    font-size: max(0.875rem, 10px);
    text-align: left;
  }
}

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

.p-business-package__flow-title {
  margin-inline: auto;
  width: 19.8125rem;
  font-size: max(1.5rem, 10px);
  color: #e2843e;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-business-package__flow-title {
    width: 15.5rem;
    font-size: max(1.25rem, 10px);
  }
}

.p-business-package__flow-title::after {
  content: "";
  width: 100%;
  height: 0.125rem;
  background-color: #e16d18;
  position: absolute;
  bottom: -0.1875rem;
  left: 0;
}

@media screen and (max-width: 767px) {
  .p-business-package__flow-content {
    display: flex;
    gap: 0.5rem;
  }
}

.p-business-package__line {
  margin-top: 1.1875rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-business-package__line {
    margin-top: 0.75rem;
    flex-direction: column;
  }
}

.p-business-package__line-item {
  padding: 0.9375rem 3.75rem;
  background-image: linear-gradient(90deg, #f4a905, #e16d18);
  clip-path: polygon(95% 0, 100% 50%, 95% 100%, 0 100%, 0 0);
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-business-package__line-item {
    padding: 0.625rem 0.5rem;
    display: flex;
    width: auto;
    background-image: linear-gradient(180deg, #f4a905, #e16d18);
    clip-path: polygon(100% 0, 100% 94%, 50% 100%, 0 94%, 0 0);
  }
}

.p-business-package__line-item:first-child {
  padding-left: 2.8125rem;
  width: 20rem;
  translate: 1.5625rem 0;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .p-business-package__line-item:first-child {
    padding-left: 0.5rem;
    width: auto;
    height: 11.875rem;
    translate: initial;
  }
}

.p-business-package__line-item:nth-child(2),
.p-business-package__line-item:nth-child(3) {
  width: 21.75rem;
}
@media screen and (max-width: 767px) {
  .p-business-package__line-item:nth-child(2),
  .p-business-package__line-item:nth-child(3) {
    padding-top: 1.375rem;
    width: auto;
    height: 12.125rem;
  }
}

.p-business-package__line-item:nth-child(2) {
  translate: 0.5625rem 0;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-business-package__line-item:nth-child(2) {
    translate: initial;
    margin-top: -0.75rem;
  }
}

.p-business-package__line-item:nth-child(3) {
  translate: -0.5625rem 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-business-package__line-item:nth-child(3) {
    translate: initial;
    margin-top: -0.75rem;
  }
}

.p-business-package__line-item:nth-child(4) {
  width: 19.5rem;
  translate: -1.6875rem 0;
}
@media screen and (max-width: 767px) {
  .p-business-package__line-item:nth-child(4) {
    padding-top: 1.375rem;
    width: auto;
    height: 11.375rem;
    translate: initial;
    margin-top: -0.75rem;
  }
}

.p-business-package__line-title {
  font-size: max(1.25rem, 10px);
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-business-package__line-title {
    font-size: max(0.625rem, 10px);
    letter-spacing: 1.1333333333vw;
    writing-mode: vertical-rl;
  }
}

.p-business-package__steps {
  margin-top: 0.625rem;
  margin-inline: auto;
  max-width: 80rem;
  display: flex;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-business-package__steps {
    flex-direction: column;
    gap: 0.25rem;
  }
}

.p-business-package__step {
  flex: 1;
  padding: 1.25rem;
  background-color: #f8f8f8;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-business-package__step {
    flex: initial;
    padding: 1.25rem 1rem;
    padding-top: 1.4375rem;
    padding-bottom: 1.0625rem;
  }
}

.p-business-package__step-number {
  font-size: max(6.25rem, 10px);
  font-family: "Prompt", sans-serif;
  line-height: 1;
  color: rgba(226, 132, 62, 0.2);
  position: absolute;
  bottom: -2.5rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-business-package__step-number {
    font-size: max(3.75rem, 10px);
    bottom: 0;
  }
}

.p-business-package__step-icon {
  margin-top: 1.25rem;
  margin-inline: auto;
  display: block;
  width: 100%;
  max-width: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-business-package__step-icon {
    margin-top: 1rem;
    max-width: 5rem;
  }
}
.p-business-package__step-icon img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1;
}

.p-business-package__step-text {
  font-size: max(1rem, 10px);
  font-weight: 400;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 767px) {
  .p-business-package__step-text {
    font-size: max(0.875rem, 10px);
    letter-spacing: initial;
  }
}

.p-business-wrap__inner {
  margin-inline: auto;
  padding-inline: 1.5625rem;
  max-width: 83.125rem;
}
@media screen and (max-width: 767px) {
  .p-business-wrap__inner {
    padding-inline: initial;
  }
}

.p-business-wrap__container {
  padding: 3.75rem;
  background: url(../images/business/bg.webp) no-repeat center/cover;
  border-radius: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-business-wrap__container {
    padding: 1.875rem 1.25rem;
    background: url(../images/business/bg_sp.webp) no-repeat center/cover;
    border-radius: initial;
  }
}

.p-business-wrap__title {
  font-size: max(1.875rem, 10px);
  background: linear-gradient(90deg, #e16d18, #f4a905); /* 背景色にグラデーションを指定 */
  -webkit-background-clip: text; /* テキストで切り抜く */
  -webkit-text-fill-color: transparent; /* 切り抜いた部分は背景を表示 */
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-business-wrap__title {
    font-size: max(1.5rem, 10px);
    line-height: 1.5;
  }
}

.p-business-wrap__intro {
  margin-top: 3.75rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-business-wrap__intro {
    margin-top: 1.875rem;
  }
}

.p-business-wrap__text {
  font-size: max(1rem, 10px);
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-business-wrap__text {
    text-align: justify;
  }
}

.p-business-wrap__features {
  margin-top: 3.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-business-wrap__features {
    margin-top: 1.875rem;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.p-business-wrap__feature-title {
  font-size: max(1.25rem, 10px);
}
@media screen and (max-width: 767px) {
  .p-business-wrap__feature-title {
    font-size: max(1rem, 10px);
  }
}

.p-business-wrap__feature-text {
  margin-top: 0.5rem;
  font-size: max(1rem, 10px);
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-business-wrap__feature-text {
    margin-top: 0.25rem;
    font-size: max(0.875rem, 10px);
  }
}

.p-company-access {
  padding-block: 5rem;
}
@media screen and (max-width: 767px) {
  .p-company-access {
    padding-block: 3.125rem;
  }
}

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

.company-access__text {
  font-size: max(1rem, 10px);
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .company-access__text {
    font-size: max(0.875rem, 10px);
  }
}

.p-company-access__map {
  margin-top: 2.5rem;
  margin-inline: auto;
  display: block;
  width: 100%;
  max-width: 62.5rem;
}
@media screen and (max-width: 767px) {
  .p-company-access__map {
    margin-top: 2rem;
    max-width: 20.9375rem;
  }
}
.p-company-access__map iframe {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 5/3;
}
@media screen and (max-width: 767px) {
  .p-company-access__map iframe {
    aspect-ratio: 335/201;
  }
}

.p-company-profile {
  padding-block: 5rem;
  background-color: #f3efe6;
}
@media screen and (max-width: 767px) {
  .p-company-profile {
    padding-block: 3.125rem;
  }
}

.p-company-profile__inner {
  margin-inline: auto;
  padding-inline: 1.5625rem;
  max-width: 58.125rem;
}
@media screen and (max-width: 767px) {
  .p-company-profile__inner {
    padding-inline: 1.25rem;
  }
}

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

.p-company-profile__item {
  padding-block: 1.5rem;
  padding-left: 2.5rem;
  display: flex;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-company-profile__item {
    padding-block: 0.5rem;
    padding-left: initial;
    flex-direction: column;
    gap: 0.5rem;
  }
}
.p-company-profile__item::before {
  content: "";
  width: 100%;
  height: 0.125rem;
  background-color: #f8f8f8;
  position: absolute;
  bottom: 0;
  left: 0;
}
.p-company-profile__item::after {
  content: "";
  width: 12.5rem;
  height: 0.125rem;
  background-color: #e16d18;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-company-profile__item::after {
    display: none;
  }
}

.p-company-profile__term {
  width: 12.5rem;
  font-size: max(1rem, 10px);
}
@media screen and (max-width: 767px) {
  .p-company-profile__term {
    font-size: max(0.875rem, 10px);
  }
}

.p-company-profile__description {
  flex: 1;
  font-size: max(1rem, 10px);
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-company-profile__description {
    font-size: max(0.875rem, 10px);
  }
}

.p-contact-main {
  padding-block: 5rem;
}
@media screen and (max-width: 767px) {
  .p-contact-main {
    padding-block: 3.125rem;
  }
}

.p-contact-main__text {
  font-size: max(1.5rem, 10px);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact-main__text {
    padding-inline: 1.25rem;
    font-size: max(1.125rem, 10px);
  }
}

.p-contact-main__tel {
  margin-top: 3.75rem;
  margin-inline: auto;
  padding-block: 2.5rem;
  display: grid;
  place-content: center;
  gap: 1rem;
  width: 24.1875rem;
  color: #ffffff;
  background-color: #e16d18;
  border-radius: 0.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact-main__tel {
    margin-top: 2.5rem;
    padding-block: 1.25rem;
    width: 18.375rem;
    gap: 0.75rem;
  }
}

.p-contact-main__number {
  display: inline-block;
  font-size: max(2.5rem, 10px);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-contact-main__number {
    font-size: max(2rem, 10px);
  }
}
.p-contact-main__number span {
  display: inline-block;
  font-size: max(1.25rem, 10px);
}
@media screen and (max-width: 767px) {
  .p-contact-main__number span {
    font-size: max(1rem, 10px);
  }
}

.p-contact-main__hour {
  font-size: max(1.25rem, 10px);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-contact-main__hour {
    font-size: max(1rem, 10px);
  }
}

.p-contact-main__form {
  margin-top: 2.5rem;
  margin-inline: auto;
  max-width: 57.5rem;
  background-color: #fff3eb;
}
@media screen and (max-width: 767px) {
  .p-contact-main__form {
    margin-top: 1.5rem;
  }
}

.p-drawer {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-drawer {
    width: 100%;
    height: 100vh;
    height: 100svh;
    background-color: #e9e4d9;
    position: absolute;
    inset: 0;
    z-index: 50;
    overflow-y: auto;
  }
}

.p-drawer__items {
  padding-top: 8.125rem;
  padding-inline: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: inherit;
}

.p-drawer__item {
  width: 100%;
  text-align: center;
}
.p-drawer__item + .p-drawer__item {
  margin-top: 1.5rem;
}
.p-drawer__item:last-child {
  padding-bottom: 3.125rem;
}

.p-drawer__link {
  padding-block: 1rem;
  display: block;
  font-size: max(1rem, 10px);
  line-height: 1;
  transition: color 0.3s ease-out;
}

@media (any-hover: hover) {
  .p-drawer__link:hover {
    color: #e16d18;
  }
}
.p-footer {
  padding-top: 4.5rem;
  padding-bottom: 2.5rem;
  background-color: #f8f8f8;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-top: 3.125rem;
    padding-bottom: 1.5rem;
  }
}

.p-footer__container {
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  max-width: 80rem;
}
@media screen and (max-width: 767px) {
  .p-footer__container {
    flex-direction: column;
  }
}

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

.p-footer__logo {
  display: block;
  width: 100%;
  max-width: 12.5rem;
}
.p-footer__logo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 200/39;
}

.p-footer__address-text {
  margin-top: 0.625rem;
  font-size: max(0.875rem, 10px);
  font-style: normal;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-footer__address-text {
    margin-top: 0.5rem;
    font-size: max(0.75rem, 10px);
  }
}

.p-footer__items {
  display: flex;
  translate: 1.25rem 0;
}
@media screen and (max-width: 767px) {
  .p-footer__items {
    margin-top: 1.5rem;
    flex-direction: column;
    translate: initial;
  }
}

.p-footer__link {
  padding: 0.5rem 0.75rem;
  display: inline-block;
  font-size: max(1rem, 10px);
  line-height: 1;
  transition: color 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .p-footer__link {
    display: block;
    padding-inline: initial;
  }
}

.p-footer__lower-link {
  padding: 0.25rem 1.25rem;
  display: inline-block;
  font-size: max(1rem, 10px);
  font-weight: 500;
  transition: color 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .p-footer__lower-link {
    padding: 0.34375rem 0.5rem;
    display: block;
    font-size: max(0.875rem, 10px);
  }
}

.p-footer__box {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-footer__box {
    margin-top: initial;
    flex-direction: column;
    align-items: initial;
  }
}

.p-footer__box-link {
  padding: 0.75rem;
  display: inline-block;
  font-size: max(0.875rem, 10px);
  font-weight: 400;
  line-height: 1;
  transition: color 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .p-footer__box-link {
    padding: 0.5625rem 0;
  }
}

.p-footer__copyright {
  margin-top: 1.75rem;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    margin-top: 0.875rem;
  }
}
.p-footer__copyright small {
  display: inline-block;
  font-size: max(0.875rem, 10px);
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright small {
    font-size: max(0.625rem, 10px);
  }
}

@media (any-hover: hover) {
  .p-footer__link:hover {
    color: #e16d18;
    opacity: 1;
  }
  .p-footer__lower-link:hover {
    color: #e16d18;
    opacity: 1;
  }
  .p-footer__box-link:hover {
    color: #e16d18;
    opacity: 1;
  }
}
.p-contact-form {
  padding-block: 5rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form {
    padding-block: 2.25rem;
  }
}

.p-contact-form__inner {
  margin-inline: auto;
  max-width: 40rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__inner {
    padding-inline: 1.25rem;
  }
}

.p-form__item {
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-form__item {
    padding-top: 1.5rem;
  }
}

.p-form__item:first-of-type {
  padding-top: 0;
}

.p-form__title {
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 15rem;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-form__title {
    width: 100%;
    font-size: 0.875rem;
  }
}
.p-form__title span {
  padding: 0.125rem 0.375rem;
  display: inline-block;
  font-size: 0.75rem;
  color: #fff;
  background-color: #e16d18;
  border-radius: 0.125rem;
}
@media screen and (max-width: 767px) {
  .p-form__title span {
    padding: 0.03125rem 0.5rem;
    font-size: 0.625rem;
  }
}

.p-form__title--aiStart {
  padding-top: 0.5625rem;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-form__title--aiStart {
    padding-top: 0;
  }
}

.p-form__input {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-form__input {
    width: 100%;
  }
}

.p-formInput input::placeholder,
.p-formTextarea textarea::placeholder {
  font-size: 1rem;
  color: #342e29;
  text-align: justify;
}

.p-formInput input {
  padding: 0.5rem 1rem;
  width: 100%;
  height: 2.75rem;
  font-size: 1rem;
  font-weight: 400;
  color: #241204;
  background-color: #ffffff;
  border: 1px solid #e9e4d9;
  border-radius: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-formInput input {
    padding: 0.5rem;
    width: 100%;
  }
}

.p-form__text {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-form__text {
    font-size: 0.625rem;
  }
}

.p-formSelect select {
  padding: 0.5rem 1rem;
  width: 100%;
  height: 2.75rem;
  font-size: 1rem;
  font-weight: 400;
  color: #342e29;
  border: 1px solid #e9e4d9;
  border-radius: 0.25rem;
  background: url(../images/common/select-arrow.svg) right 0.875rem center/1rem no-repeat;
  background-color: #ffffff;
  appearance: none;
}
@media screen and (max-width: 767px) {
  .p-formSelect select {
    padding: 0.5rem;
  }
}

.p-formSelect--selected select {
  color: #241204;
}

.p-formCheckbox input {
  display: none;
}

.p-formCheckbox .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.p-formCheckbox .wpcf7-list-item {
  margin-left: 0;
}

.p-formCheckbox--vertical .wpcf7-checkbox {
  display: block;
}

.p-formCheckbox--vertical .wpcf7-list-item {
  margin: 0;
  display: block;
}

.p-formCheckbox--vertical .wpcf7-list-item + .wpcf7-list-item {
  margin-top: 1.25rem;
}

.p-formCheckbox input + span {
  padding: 0 0 0 1.75rem;
  display: inline-block;
  width: auto;
  font-size: 1rem;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-formCheckbox input + span {
    padding: 0 0 0 1.5rem;
    font-size: max(0.875rem, 10px);
  }
}

.p-formCheckbox input + span::before {
  display: block;
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid #e9e4d9;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-formCheckbox input + span::before {
    width: 1rem;
    height: 1rem;
  }
}

.p-formCheckbox input + span::after {
  margin-top: -0.5rem;
  display: block;
  content: "";
  width: 0.5rem;
  height: 0.8125rem;
  border-right: 0.1875rem solid #e16d18;
  border-bottom: 0.1875rem solid #e16d18;
  position: absolute;
  top: 50%;
  left: 0.375rem;
  opacity: 0;
  transform: rotate(45deg);
}

.p-formCheckbox input:checked + span::after {
  opacity: 1;
}

.p-formTextarea textarea {
  padding: 0.5rem 1rem;
  width: 100%;
  height: 12.5rem;
  font-size: 1rem;
  font-weight: 400;
  color: #241204;
  background-color: #ffffff;
  border: 1px solid #e9e4d9;
  border-radius: 0.25rem;
  vertical-align: bottom;
}
@media screen and (max-width: 767px) {
  .p-formTextarea textarea {
    padding: 0.5rem;
  }
}

.p-form__privacy {
  margin-top: 1.875rem;
  font-size: 1rem;
  line-height: 1;
  color: #e16d18;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .p-form__privacy {
    font-size: max(0.875rem, 10px);
  }
}

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

.p-form__submit-wrap {
  margin-top: 2.5rem;
  margin-inline: auto;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .p-form__submit-wrap {
    margin-top: 2.5rem;
    width: 100%;
  }
}

.p-form__submit.c-link {
  padding: 0;
  width: 25rem;
  background: linear-gradient(90deg, #e16d18 0%, #f4a905 100%);
  border: none;
  border-radius: 100vmax;
  position: relative;
  box-shadow: inset 0 0 0 0rem transparent;
  transition: background-color 0.3s ease-out, box-shadow 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .p-form__submit.c-link {
    width: 100%;
  }
}

.p-formBtn input {
  padding: 1.5rem 1.25rem 1.5rem 9.0625rem;
  width: 100%;
  border: none;
  color: #fff;
  font-size: max(1.5rem, 10px);
  font-weight: 700;
  text-align: left;
  border-radius: 100vmax;
  cursor: pointer;
  background: transparent;
  position: relative;
  z-index: 2;
  transition: background 0.3s ease-out, -webkit-text-fill-color 0.3s ease-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media screen and (max-width: 767px) {
  .p-formBtn input {
    padding: 1.25rem 1.5rem 1.25rem 7.65625rem;
    font-size: max(1.25rem, 10px);
  }
}
.p-formBtn input:disabled {
  color: #fff;
  background-color: #eee;
  border-color: #eee;
}
@media screen and (min-width: 768px) {
  .p-formBtn input:disabled:hover {
    cursor: not-allowed;
  }
}

.p-form__submit.c-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 2rem;
  height: 2rem;
  background: url(../images/common/arrow-white.svg) no-repeat center/contain;
  transform: translateY(-50%);
  transition: background-image 0.3s ease-out, transform 0.3s ease-out;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .p-form__submit.c-link::after {
    right: 1.5rem;
    width: 1.75rem;
    height: 1.75rem;
  }
}

@media (any-hover: hover) {
  .p-form__submit.c-link:hover {
    background: #ffffff;
    box-shadow: inset 0 0 0 0.125rem #e16d18;
  }
  .p-form__submit.c-link:hover input {
    background: linear-gradient(90deg, #e16d18 0%, #f4a905 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .p-form__submit.c-link:hover::after {
    background: url(../images/common/arrow-orange.svg) center/contain no-repeat;
    transform: translateY(-50%) translateX(0.5rem);
  }
}
.wpcf7 form.sent .wpcf7-response-output {
  padding: 0.9375rem 0.625rem;
  border-color: #2c94de;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .wpcf7 form.sent .wpcf7-response-output {
    font-size: 1rem;
  }
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  padding: 0.9375rem 0.625rem;
  border-color: red;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output,
  .wpcf7 form.payment-required .wpcf7-response-output {
    font-size: 1rem;
  }
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-not-valid-tip {
  display: block;
  color: red;
  font-size: 1rem;
  font-weight: normal;
}

.wpcf7-form.hide_error_message .wpcf7-not-valid-tip {
  display: none;
}

.p-formValidation .wpcf7-not-valid-tip {
  display: none;
}

.p-formValidation__error {
  display: none;
  margin-top: 0.625rem;
  color: red;
  font-size: 1rem;
  font-weight: normal;
}

.wpcf7-form:not(.hide_error_message) .p-formValidation:has(.wpcf7-not-valid-tip) .p-formValidation__error {
  display: block;
}

/* 成功状態(sent)のときだけ、応答メッセージを非表示 */
.wpcf7-form.sent .wpcf7-response-output {
  display: none !important;
}

.p-hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-hamburger {
    display: block;
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    position: relative;
    z-index: 51;
    width: 3.125rem;
    height: 3.125rem;
    background-color: transparent;
    border: 0.125rem solid #e16d18;
    border-radius: 100vmax;
    cursor: pointer;
    transition: 0.3s;
  }
}

.p-hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 1.25rem;
  height: 0.09375rem;
  background-color: #e16d18;
  transition: 0.3s;
}

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

.p-hamburger span:nth-of-type(2) {
  background-color: #e16d18;
  top: 0rem;
}

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

.p-hamburger.is-open span:nth-of-type(1) {
  width: 1.6875rem;
  top: 0.09375rem;
  transform: translateX(-50%) rotate(45deg);
}

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

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

.p-header {
  width: 100%;
  height: 6.25rem;
  background-color: transparent;
  position: absolute;
  inset: 0;
  z-index: 50;
  transition: background-color 0.3s ease-out, position 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .p-header {
    height: 4rem;
  }
}

.p-header.is-fixed {
  position: fixed;
  top: 0;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.p-header__inner {
  padding-inline: 1.875rem;
  display: flex;
  align-items: center;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding-inline: 0.625rem;
    justify-content: space-between;
  }
}

.p-header__logo {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}

.p-header.is-fixed .p-header__logo {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 767px) {
  .p-header.is-open .p-header__logo {
    position: relative;
    z-index: 51;
    opacity: 1;
    visibility: visible;
  }
}

.p-header__logo-link {
  display: block;
  width: 100%;
  max-width: 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-header__logo-link {
    max-width: 8.75rem;
  }
}
.p-header__logo-link img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 200/39;
}
.p-header__nav {
  margin-left: auto;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    display: none;
  }
}

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

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

.p-header__link {
  padding-inline: 0.75rem;
  display: inline-block;
  font-size: max(1rem, 10px);
  line-height: 1;
  color: #ffffff;
  transition: color 0.3s ease-out;
}

.p-header.is-fixed .p-header__link {
  color: #241204;
}

.p-header__link.is-current {
  color: #e16d18;
}

.p-header.is-fixed .p-header__link.is-current {
  color: #e16d18;
}

@media (any-hover: hover) {
  .p-header__link:hover {
    color: #e16d18;
  }
  .p-header.is-fixed .p-header__link:hover {
    color: #e16d18;
  }
}
.p-header__button {
  margin-inline: 0.75rem;
  width: 10.5625rem;
}

.p-header__button:last-child {
  margin-inline-end: 0;
}

.p-header__button--01 {
  width: 10.5625rem;
}

.p-header__button--02 {
  width: 12.625rem;
}

.p-interview-head {
  padding-block: 5rem;
  background-color: #fff3eb;
}
@media screen and (max-width: 767px) {
  .p-interview-head {
    padding-block: 3.125rem;
  }
}

.p-interview-head__inner {
  max-width: 83.125rem;
}

.p-interview-head__list {
  display: flex;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-interview-head__list {
    flex-direction: column;
    gap: 1rem;
  }
}

.p-interview-head__item {
  flex: 1;
  background-color: #f8f8f8;
}
@media screen and (max-width: 767px) {
  .p-interview-head__item {
    display: flex;
    align-items: center;
  }
}

.p-interview-head__img {
  display: block;
  width: 100%;
  max-width: 25rem;
}
@media screen and (max-width: 767px) {
  .p-interview-head__img {
    max-width: 5rem;
  }
}
.p-interview-head__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1;
}

.p-interview-head__content {
  padding: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-interview-head__content {
    flex: 1;
    padding: 0.875rem 0.625rem;
  }
}

.p-interview-head__position {
  font-size: max(1rem, 10px);
}
@media screen and (max-width: 767px) {
  .p-interview-head__position {
    font-size: max(0.75rem, 10px);
  }
}

.p-interview-head__name {
  margin-top: 0.625rem;
  font-size: max(1.5rem, 10px);
}
@media screen and (max-width: 767px) {
  .p-interview-head__name {
    margin-top: 0.25rem;
    font-size: max(1.25rem, 10px);
  }
}

/* 各アイテムの色分け */
.p-interview-head__item:nth-child(1) .p-interview-head__position,
.p-interview-head__item:nth-child(1) .p-interview-head__name {
  color: #e16d18;
}

.p-interview-head__item:nth-child(2) .p-interview-head__position,
.p-interview-head__item:nth-child(2) .p-interview-head__name {
  color: #6CB252;
}

.p-interview-head__item:nth-child(3) .p-interview-head__position,
.p-interview-head__item:nth-child(3) .p-interview-head__name {
  color: #3D3DDE;
}

.p-interview-main {
  padding-block: 5rem;
}
@media screen and (max-width: 767px) {
  .p-interview-main {
    padding-block: 3.125rem;
  }
}

.p-interview-main__inner {
  max-width: 83.125rem;
}

.p-interview-main__qa {
  margin-top: 3.75rem;
  display: flex;
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-interview-main__qa {
    margin-top: 2.5rem;
    flex-direction: column;
    gap: 1.5rem;
  }
}

.p-interview-main__qa:first-child {
  margin-top: 0;
}

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

.p-interview-main__question-wrapper {
  padding: 0.625rem 1.25rem;
  color: #ffffff;
  background-color: #241204;
  border-radius: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-interview-main__question-wrapper {
    padding: 0.375rem 0.75rem;
  }
}

.p-interview-main__question {
  font-size: max(1.5rem, 10px);
}
@media screen and (max-width: 767px) {
  .p-interview-main__question {
    font-size: max(1rem, 10px);
  }
}

.p-interview-main__answer-content {
  flex: 1;
}

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

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

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

.p-interview-main__answer:first-child {
  margin-top: 0;
}

.p-interview-main__speaker {
  padding: 0.125rem 0.5rem;
  display: inline-block;
  min-width: 3.75rem;
  font-size: max(1rem, 10px);
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-interview-main__speaker {
    min-width: 3.375rem;
    font-size: max(0.875rem, 10px);
  }
}

.p-interview-main__speaker-blue {
  background-color: #3d3dde;
}

.p-interview-main__speaker-green {
  background-color: #6cb252;
}

.p-interview-main__speaker-orange {
  background-color: #e16d18;
}

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

.p-interview-main__highlight {
  font-weight: 700;
}

.p-interview-main__highlight-blue {
  color: #3d3dde;
}

.p-interview-main__highlight-green {
  color: #6cb252;
}

.p-interview-main__highlight-orange {
  color: #e16d18;
}

.p-interview-main__img {
  display: block;
  width: 100%;
  max-width: 33.75rem;
}
@media screen and (max-width: 767px) {
  .p-interview-main__img {
    max-width: 20.9375rem;
  }
}
.p-interview-main__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 540/400;
  border-radius: 0.75rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-interview-main__img img {
    aspect-ratio: 335/248;
  }
}

.p-interview-message {
  padding-block: 5rem;
  background: url(../images/interview/message-bg.webp) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-interview-message {
    padding-block: 3.125rem;
    background: url(../images/interview/message-bg_sp.webp) no-repeat center/cover;
  }
}

.p-interview-message__inner {
  max-width: 83.125rem;
}

.p-interview-message__title {
  padding: 0.625rem 1.25rem;
  font-size: max(1.5rem, 10px);
  color: #ffffff;
  background-color: #f4a905;
  border-radius: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-interview-message__title {
    font-size: max(1rem, 10px);
  }
}

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

.p-interview-message__item {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-interview-message__item {
    margin-top: 0.75rem;
    flex-direction: column;
    gap: 0;
  }
}

.p-interview-message__item:first-child {
  margin-top: 0;
}

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

.p-interview-message__img {
  display: block;
  width: 100%;
  max-width: 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-interview-message__img {
    margin-left: auto;
    max-width: 7.5rem;
  }
}
.p-interview-message__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1;
  border-radius: 0.5rem;
  overflow: hidden;
}

.p-interview-message__content {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-interview-message__content {
    margin-top: -1.0625rem;
  }
}

.p-interview-message__speaker {
  padding: 0.125rem 0.5rem;
  display: inline-block;
  min-width: 3.75rem;
  font-size: max(1rem, 10px);
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-interview-message__speaker {
    min-width: 3.375rem;
    font-size: max(0.875rem, 10px);
  }
}

.p-interview-message__speaker-orange {
  background-color: #e16d18;
}

.p-interview-message__speaker-blue {
  background-color: #3d3dde;
}

.p-interview-message__speaker-green {
  background-color: #6cb252;
}

.p-interview-message__text {
  font-size: max(1rem, 10px);
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-interview-message__text {
    font-size: max(0.875rem, 10px);
  }
}

.p-job-head {
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-job-head {
    padding-top: 3.125rem;
  }
}

.p-job-head__inner {
  margin-inline: auto;
  padding-inline: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-job-head__inner {
    padding-inline: initial;
  }
}

.p-job-head__container {
  margin-inline: auto;
  padding: 3.75rem;
  max-width: 80rem;
  background-color: #fff3eb;
  border-radius: 1.5rem;
  box-shadow: 0 0 1.25rem rgba(52, 46, 41, 0.05);
}
@media screen and (max-width: 767px) {
  .p-job-head__container {
    padding: 1.875rem 1.25rem;
  }
}

.p-job-head__title {
  font-size: max(1.875rem, 10px);
  text-align: center;
  background: linear-gradient(90deg, #e16d18, #f4a905); /* 背景色にグラデーションを指定 */
  -webkit-background-clip: text; /* テキストで切り抜く */
  -webkit-text-fill-color: transparent; /* 切り抜いた部分は背景を表示 */
}
@media screen and (max-width: 767px) {
  .p-job-head__title {
    font-size: max(1.5rem, 10px);
    text-align: left;
  }
}

.p-job-head__text {
  margin-top: 3.75rem;
  font-size: max(1rem, 10px);
  font-weight: 400;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-job-head__text {
    margin-top: 1.875rem;
    font-size: max(0.875rem, 10px);
    text-align: left;
  }
}

.p-job-main {
  padding-top: 8.75rem;
  padding-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-job-main {
    padding-top: 5rem;
    padding-bottom: 1.875rem;
  }
}

.p-job-main__inner {
  max-width: 83.125rem;
}

.p-job-main__img {
  display: block;
  width: 100%;
  max-width: 80rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-job-main__img {
    max-width: 20.9375rem;
  }
}
.p-job-main__img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 1280/1049;
}
@media screen and (max-width: 767px) {
  .p-job-main__img img {
    aspect-ratio: 335/429;
  }
}

.p-job-main__item {
  width: 22.5rem;
  height: 13.9375rem;
  border-radius: 1.5rem;
  position: absolute;
  cursor: pointer;
  transition: border-color 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .p-job-main__item {
    width: 7.5rem;
    height: 5.4375rem;
    border-radius: 0.5rem;
  }
}

.p-job-main__item--01 {
  border: 0.25rem solid #ffe6af;
  top: 0;
  left: 0;
  background: url(../images/job/img-item.webp) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-job-main__item--01 {
    border: 0.125rem solid #ffe6af;
    background: url(../images/job/img-item_sp.webp) no-repeat center/cover;
  }
}

.p-job-main__item--02,
.p-job-main__item--03,
.p-job-main__item--04,
.p-job-main__item--05 {
  border: 0.25rem solid #241204;
}
@media screen and (max-width: 767px) {
  .p-job-main__item--02,
  .p-job-main__item--03,
  .p-job-main__item--04,
  .p-job-main__item--05 {
    border: 0.125rem solid #241204;
  }
}

.p-job-main__item--02 {
  top: 16.4375rem;
  left: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-job-main__item--02 {
    top: 6.1875rem;
    top: 23%;
    left: 1.5rem;
    left: 7%;
  }
}

.p-job-main__item--03 {
  top: 16.4375rem;
  left: 35rem;
}
@media screen and (max-width: 767px) {
  .p-job-main__item--03 {
    top: 6.1875rem;
    top: 23%;
    left: 12.5625rem;
    left: 60%;
  }
}

.p-job-main__item--04 {
  top: 35.375rem;
  left: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-job-main__item--04 {
    top: 14.125rem;
    top: 52.6%;
    left: 1.5rem;
    left: 7%;
  }
}

.p-job-main__item--05 {
  top: 35.375rem;
  left: 35rem;
}
@media screen and (max-width: 767px) {
  .p-job-main__item--05 {
    top: 14.125rem;
    top: 52.6%;
    left: 12.5625rem;
    left: 60%;
  }
}

@media (any-hover: hover) {
  .p-job-main__item--01:hover {
    border-color: #f24469;
  }
  .p-job-main__item--02:hover {
    border-color: #9d79c9;
  }
}
@media screen and (any-hover: hover) and (max-width: 767px) {
  .p-job-main__item--02:hover {
    border-color: #68bdc3;
  }
}
@media (any-hover: hover) {
  .p-job-main__item--03:hover {
    border-color: #6cb252;
  }
}
@media screen and (any-hover: hover) and (max-width: 767px) {
  .p-job-main__item--03:hover {
    border-color: #9d79c9;
  }
}
@media (any-hover: hover) {
  .p-job-main__item--04:hover {
    border-color: #68bdc3;
  }
}
@media screen and (any-hover: hover) and (max-width: 767px) {
  .p-job-main__item--04:hover {
    border-color: #3d3dde;
  }
}
@media (any-hover: hover) {
  .p-job-main__item--05:hover {
    border-color: #3d3dde;
  }
}
@media screen and (any-hover: hover) and (max-width: 767px) {
  .p-job-main__item--05:hover {
    border-color: #6cb252;
  }
}
.p-news-category__title {
  font-size: max(1.5rem, 10px);
  font-family: "Prompt", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-news-category__title {
    display: none;
  }
}

.p-news-category__list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-news-category__list {
    margin-top: initial;
    flex-direction: row;
    gap: 0.5rem;
  }
}

.p-news-category__link {
  padding: 0.9375rem;
  display: inline-block;
  width: 15rem;
  font-size: max(1rem, 10px);
  line-height: 1;
  color: #e16d18;
  background-color: #ffffff;
  border: 1px solid #e16d18;
  border-radius: 100vmax;
  text-transform: uppercase;
  text-align: center;
  transition: color 0.3s ease-out, background-color 0.3s ease-out;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-news-category__link {
    padding: 0.4375rem 1.1875rem;
    width: auto;
    font-size: max(0.75rem, 10px);
  }
}

.p-news-category__link.is-active {
  color: #ffffff;
  background-color: #e16d18;
}

@media (any-hover: hover) {
  .p-news-category__link:hover {
    color: #ffffff;
    background-color: #e16d18;
    opacity: 1;
  }
}
.p-news-archive {
  padding-block: 5rem;
}
@media screen and (max-width: 767px) {
  .p-news-archive {
    padding-block: 3.125rem;
  }
}

.p-news-archive__container {
  margin-inline: auto;
  max-width: 80rem;
  display: flex;
  gap: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-news-archive__container {
    flex-direction: column;
    gap: 1.25rem;
  }
}

.p-news-list {
  width: 100%;
}

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

.p-news-list__item-link {
  padding: 2.1875rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.875rem;
  background-color: #fff3eb;
  border-radius: 1rem;
  transition: color 0.3s ease-out, opacity 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .p-news-list__item-link {
    padding: 1.3125rem 1.25rem 1.5625rem;
    flex-direction: column;
    align-items: initial;
    gap: 0.25rem;
  }
}

.p-news-list__meta {
  display: flex;
  align-items: center;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-news-list__meta {
    gap: 0.625rem;
  }
}

.p-news-list__date {
  font-size: max(0.75rem, 10px);
  font-family: "Prompt", sans-serif;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-news-list__date {
    min-width: 4.875rem;
  }
}

.p-news-list__category {
  padding: 0.25rem 0.625rem;
  min-width: 5.625rem;
  display: inline-block;
  font-size: max(0.625rem, 10px);
  font-weight: 400;
  line-height: 1;
  color: #e16d18;
  border: 1px solid #e16d18;
  border-radius: 100vmax;
  text-align: center;
  transition: color 0.3s ease-out, background-color 0.3s ease-out;
}

.p-news-list__body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.875rem;
}

.p-news-list__text {
  font-size: max(0.875rem, 10px);
  line-height: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.p-news-list__item-img {
  display: block;
  width: 100%;
  max-width: 1.875rem;
  position: relative;
}
.p-news-list__item-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}
.p-news-list__item-img img:nth-of-type(2) {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}

@media (any-hover: hover) {
  .p-news-list__item-link:hover {
    color: #f4a905;
    opacity: 1;
  }
  .p-news-list__item-link:hover .p-news-list__category {
    color: #ffffff;
    background-color: #e16d18;
    opacity: 1;
  }
  .p-news-list__item-link:hover .p-news-list__item-img img:nth-of-type(1) {
    opacity: 0;
    visibility: hidden;
  }
  .p-news-list__item-link:hover .p-news-list__item-img img:nth-of-type(2) {
    opacity: 1;
    visibility: visible;
  }
}
.p-news-post {
  padding-block: 5rem;
  background-color: #e9e4d9;
}
@media screen and (max-width: 767px) {
  .p-news-post {
    padding-block: 3.125rem;
  }
}

.p-news-post__container {
  margin-inline: auto;
  padding: 3.75rem 5rem;
  max-width: 80rem;
  background-color: #ffffff;
  border-radius: 1.5rem;
  box-shadow: 0 0 2.5rem rgba(52, 46, 41, 0.1);
}
@media screen and (max-width: 767px) {
  .p-news-post__container {
    padding: 1.875rem 1rem;
    border-radius: 0.75rem;
  }
}

.p-news-post__meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-news-post__meta {
    gap: 1rem;
  }
}

.p-news-post__date {
  min-width: 4.875rem;
  font-size: max(0.75rem, 10px);
  font-family: "Prompt", sans-serif;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-news-post__date {
    min-width: 4.5rem;
  }
}

.p-news-post__category {
  padding: 0.25rem 0.6875rem;
  min-width: 5.625rem;
  font-size: max(0.625rem, 10px);
  font-weight: 400;
  line-height: 1;
  color: #e16d18;
  border: 1px solid #e16d18;
  border-radius: 100vmax;
  text-align: center;
}

.p-news-post__title {
  margin-top: 1.25rem;
  padding-bottom: 1.25rem;
  font-size: max(2.5rem, 10px);
  text-align: justify;
  border-bottom: 0.125rem solid #e9e4d9;
}
@media screen and (max-width: 767px) {
  .p-news-post__title {
    margin-top: 0.75rem;
    padding-bottom: 0.75rem;
    font-size: max(1.5rem, 10px);
  }
}

.p-news-post__img {
  margin-top: 2.5rem;
  display: block;
  width: 100%;
  max-width: 70rem;
}
@media screen and (max-width: 767px) {
  .p-news-post__img {
    margin-top: 1.5rem;
    max-width: 18.9375rem;
  }
}

.p-news-post__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1120/630;
}
@media screen and (max-width: 767px) {
  .p-news-post__img img {
    aspect-ratio: 303/170.44;
  }
}

.p-news-post__box {
  margin-inline: auto;
  max-width: 67.5rem;
}

.p-news-post__button {
  margin-top: 3.75rem;
  margin-inline: auto;
  width: 25rem;
}
@media screen and (max-width: 767px) {
  .p-news-post__button {
    margin-top: 2.5rem;
    width: 100%;
  }
}

.p-news-post h2 {
  margin-top: 1.25rem;
  padding: 0.5rem 0.75rem 0.375rem;
  font-size: 1.5rem;
  border-bottom: 0.125rem solid #342e29;
}
@media screen and (max-width: 767px) {
  .p-news-post h2 {
    margin-top: 1rem;
    padding: 0.5rem 0.5rem 0.375rem;
    font-size: 1.375rem;
  }
}

.p-news-post p {
  margin-top: 2.5rem;
  font-size: max(1rem, 10px);
  font-weight: 400;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .p-news-post p {
    margin-top: 1.5rem;
    font-size: max(0.875rem, 10px);
  }
}

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

.p-news-post h3 {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-news-post h3 {
    margin-top: 1rem;
    gap: 0.25rem;
    font-size: 1.125rem;
  }
}

.p-news-post h3::before {
  display: block;
  content: "";
  width: 0.25rem;
  height: 1.875rem;
  background-color: #342e29;
}
@media screen and (max-width: 767px) {
  .p-news-post h3::before {
    height: 1.6875rem;
  }
}

.p-news-post ul,
.p-news-post ol {
  margin-top: 0.625rem;
  padding-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-news-post ul,
  .p-news-post ol {
    margin-top: 0.5rem;
  }
}

.p-news-post ul {
  list-style: disc;
}

.p-news-post li {
  margin-top: 0.25rem;
  font-size: 1rem;
  font-weight: 400;
  text-align: justify;
}

.p-news-post li::marker {
  color: #342e29;
}

.p-news-post ol {
  counter-reset: number;
}

.p-news-post ol li {
  text-indent: -1em;
}

.p-news-post ol li::before {
  content: counter(number) ". ";
  counter-increment: number;
  font-weight: 700;
  color: #342e29;
}

.p-number-main {
  padding-block: 5rem;
  background-color: #fff3eb;
}
@media screen and (max-width: 767px) {
  .p-number-main {
    padding-block: 3.125rem;
  }
}

.p-number-main__inner {
  margin-inline: auto;
  padding-inline: 1.5625rem;
  max-width: 83.125rem;
}
@media screen and (max-width: 767px) {
  .p-number-main__inner {
    padding-inline: initial;
  }
}

.p-number-main__img {
  display: block;
  width: 100%;
  max-width: 80rem;
}
@media screen and (max-width: 767px) {
  .p-number-main__img {
    max-width: 23.4375rem;
  }
}
.p-number-main__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1280/1840;
}
@media screen and (max-width: 767px) {
  .p-number-main__img img {
    aspect-ratio: 375/4040;
  }
}

.p-offering-faq {
  padding-block: 8.75rem;
  background-color: #fff3eb;
}
@media screen and (max-width: 767px) {
  .p-offering-faq {
    padding-block: 5rem;
  }
}

.p-offering-faq__inner {
  max-width: 66.875rem;
}

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

.p-offering-faq__item {
  margin-top: 1.25rem;
  padding-bottom: 0.625rem;
  background-color: #ffffff;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-offering-faq__item {
    margin-top: 0.5rem;
    padding-bottom: 0.375rem;
  }
}

.p-offering-faq__item:first-child {
  margin-top: 0;
}

.p-offering-faq__question {
  display: flex;
  align-items: center;
  padding: 1.875rem 1.25rem 1.25rem 2.5rem;
  cursor: pointer;
  list-style: none;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-offering-faq__question {
    padding: 1rem 0.625rem 0.625rem 0.625rem;
    gap: 0.625rem;
  }
}

.p-offering-faq__question::-webkit-details-marker {
  display: none;
}

.p-offering-faq__question-icon {
  padding-bottom: 0.125rem;
  width: 3.75rem;
  height: 3.75rem;
  background-color: #f4a905;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: max(1.5rem, 10px);
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-offering-faq__question-icon {
    width: 1.875rem;
    height: 1.875rem;
    font-size: max(1rem, 10px);
  }
}

.p-offering-faq__question-text {
  margin-left: 1.25rem;
  font-size: max(1rem, 10px);
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-offering-faq__question-text {
    margin-left: initial;
    font-size: max(0.875rem, 10px);
  }
}

.p-offering-faq__toggle-icon {
  width: 2.5rem;
  height: 2.5rem;
  position: relative;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-offering-faq__toggle-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.p-offering-faq__toggle-icon::before,
.p-offering-faq__toggle-icon::after {
  content: "";
  position: absolute;
  background-color: #e16d18;
  transition: transform 0.3s ease;
}

.p-offering-faq__toggle-icon::before {
  top: 50%;
  left: 50%;
  width: 2.5rem;
  height: 0.1875rem;
  border-radius: 100vmax;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .p-offering-faq__toggle-icon::before {
    width: 1.25rem;
    height: 0.09375rem;
  }
}

.p-offering-faq__toggle-icon::after {
  top: 50%;
  left: 50%;
  width: 0.1875rem;
  height: 2.5rem;
  border-radius: 100vmax;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .p-offering-faq__toggle-icon::after {
    width: 0.09375rem;
    height: 1.25rem;
  }
}

.p-offering-faq__item[open] .p-offering-faq__toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.p-offering-faq__answer-wrapper {
  overflow: hidden;
  transition: height 0.3s ease;
}

.p-offering-faq__answer {
  padding-right: 5rem;
  padding-bottom: 1.875rem;
  padding-left: 2.5rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-offering-faq__answer {
    padding-right: 2.5rem;
    padding-bottom: 0.625rem;
    padding-left: 0.625rem;
  }
}

/* 既定の動作を無効化 */
.p-offering-faq__item:not([open]) .p-offering-faq__answer-wrapper {
  height: 0;
}

.p-offering-faq__item[open] .p-offering-faq__answer-wrapper {
  height: auto;
}

.p-offering-faq__answer-icon {
  padding-bottom: 0.125rem;
  width: 3.75rem;
  height: 3.75rem;
  background-color: #e16d18;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: max(1.5rem, 10px);
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-offering-faq__answer-icon {
    width: 1.875rem;
    height: 1.875rem;
    font-size: 0.875rem;
  }
}

.p-offering-faq__answer-text {
  margin-left: 1.25rem;
  font-size: max(1rem, 10px);
}
@media screen and (max-width: 767px) {
  .p-offering-faq__answer-text {
    margin-left: 0.625rem;
    font-size: max(0.875rem, 10px);
  }
}

.p-offering-flow {
  padding-block: 8.75rem;
}
@media screen and (max-width: 767px) {
  .p-offering-flow {
    padding-block: 5rem;
  }
}

.p-offering-flow__inner {
  max-width: 83.125rem;
}

.p-offering-flow__title {
  text-align: center;
  color: #e67e22;
}

.p-offering-flow__text {
  margin-top: 3.75rem;
  font-size: max(1rem, 10px);
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-offering-flow__text {
    margin-top: 2.5rem;
    font-size: max(0.875rem, 10px);
    text-align: left;
  }
}

.p-offering-flow__steps {
  margin-top: 3.75rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-offering-flow__steps {
    margin-top: 2.5rem;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }
}

.p-offering-flow__step {
  flex: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-offering-flow__step {
    display: flex;
    gap: 0.5rem;
  }
}

.p-offering-flow__step:last-child {
  padding-right: 0;
}
@media screen and (max-width: 767px) {
  .p-offering-flow__step:last-child {
    margin-top: 1.3125rem;
  }
}

.p-offering-flow__step:last-child .p-offering-flow__arrow {
  display: none;
}

.p-offering-flow__step-icon {
  margin-inline: auto;
  width: 12.5rem;
  height: 12.5rem;
  background-color: #fff3eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-offering-flow__step-icon {
    width: 6.25rem;
    height: 6.25rem;
  }
}

.p-offering-flow__step-icon img {
  width: 7.5rem;
  height: 7.5rem;
  aspect-ratio: 1;
}
@media screen and (max-width: 767px) {
  .p-offering-flow__step-icon img {
    width: 3.75rem;
    height: 3.75rem;
  }
}

@media screen and (max-width: 767px) {
  .p-offering-flow__step-content {
    flex: 1;
  }
}

.p-offering-flow__step-title {
  margin-top: 0.5rem;
  font-size: max(1.875rem, 10px);
  color: #e2843e;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-offering-flow__step-title {
    margin-top: 0;
    font-size: max(1.5rem, 10px);
    text-align: left;
  }
}

.p-offering-flow__step-text {
  margin-top: 0.5rem;
  font-size: max(1rem, 10px);
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-offering-flow__step-text {
    margin-top: 0.25rem;
    font-size: max(0.875rem, 10px);
    letter-spacing: initial;
  }
}

.p-offering-flow__arrow {
  position: absolute;
  top: 5rem;
  right: -3.75rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  rotate: -90deg;
}
@media screen and (max-width: 767px) {
  .p-offering-flow__arrow {
    width: 1.5rem;
    height: 1.5rem;
    right: initial;
    top: 8.25rem;
    left: 2.375rem;
  }
}

.p-offering-flow__arrow img {
  width: 1.5rem;
  height: 1.5rem;
  aspect-ratio: 1;
}
@media screen and (max-width: 767px) {
  .p-offering-flow__arrow img {
    transform: rotate(90deg);
  }
}

.p-offering-profile {
  padding-block: 5rem;
  background-color: #f3efe6;
}
@media screen and (max-width: 767px) {
  .p-offering-profile {
    padding-block: 3.125rem;
  }
}

.p-offering-profile__inner {
  margin-inline: auto;
  padding-inline: 1.5625rem;
  max-width: 66.875rem;
}
@media screen and (max-width: 767px) {
  .p-offering-profile__inner {
    padding-inline: 1.25rem;
  }
}

.p-offering-profile__item {
  padding: 1.5rem 2.5rem;
  display: flex;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-offering-profile__item {
    padding-block: 0.5rem;
    padding-inline: initial;
    flex-direction: column;
    gap: 0.5rem;
  }
}
.p-offering-profile__item::before {
  content: "";
  width: 100%;
  height: 0.125rem;
  background-color: #f8f8f8;
  position: absolute;
  bottom: 0;
  left: 0;
}
.p-offering-profile__item::after {
  content: "";
  width: 18.75rem;
  height: 0.125rem;
  background-color: #e16d18;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-offering-profile__item::after {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .p-offering-profile__list .p-offering-profile__item:first-of-type {
    padding-top: 0;
  }
}

.p-offering-profile__term {
  width: 18.75rem;
  font-size: max(1rem, 10px);
}
@media screen and (max-width: 767px) {
  .p-offering-profile__term {
    font-size: max(0.875rem, 10px);
  }
}

.p-offering-profile__description {
  flex: 1;
  font-size: max(1rem, 10px);
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-offering-profile__description {
    font-size: max(0.875rem, 10px);
  }
}

.p-privacy-main {
  padding-block: 5rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-main {
    padding-block: 3.125rem;
  }
}

.p-privacy-main__inner {
  margin-inline: auto;
  padding-inline: 1.5625rem;
  max-width: 83.125rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-main__inner {
    padding-inline: 1.25rem;
  }
}

.p-privacy-main__read {
  font-size: max(1rem, 10px);
  font-weight: 400;
}

.p-privacy-main__text {
  font-size: max(1rem, 10px);
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-privacy-main__text {
    font-size: max(0.875rem, 10px);
  }
}

.p-privacy-main__title + .p-privacy-main__text {
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-main__title + .p-privacy-main__text {
    margin-top: 0.25rem;
  }
}

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

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

.p-privacy-main__title {
  font-size: max(1rem, 10px);
}
@media screen and (max-width: 767px) {
  .p-privacy-main__title {
    font-size: max(0.875rem, 10px);
  }
}

.p-privacy-main__ol {
  margin-top: 0.5rem;
  counter-reset: number;
}
@media screen and (max-width: 767px) {
  .p-privacy-main__ol {
    margin-top: 0.25rem;
  }
}

.p-privacy-main__ol-item {
  padding-left: 1.5em;
  font-size: max(1rem, 10px);
  font-weight: 400;
  text-indent: -1em;
}
@media screen and (max-width: 767px) {
  .p-privacy-main__ol-item {
    font-size: max(0.875rem, 10px);
  }
}
.p-privacy-main__ol-item::before {
  content: counter(number) ". ";
  counter-increment: number;
}

.p-privacy-main__ol-child-item {
  padding-left: 1.7em;
  counter-increment: my-counter;
}
.p-privacy-main__ol-child-item::before {
  content: counter(my-counter, lower-alpha) ".";
  position: relative;
  left: -0.3125rem;
}

.p-privacy-main__ol-grandchild-item {
  padding-left: 2.3em;
  counter-increment: ol-counter;
  position: relative;
}
.p-privacy-main__ol-grandchild-item::before {
  content: counter(ol-counter, upper-roman) ".";
  position: absolute;
  left: 1rem;
  text-align: right;
}

.p-privacy-main__address {
  margin-top: 0.5rem;
  font-size: max(1rem, 10px);
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .p-privacy-main__address {
    margin-top: 0.25rem;
    font-size: max(0.875rem, 10px);
  }
}

.p-privacy-main__button {
  margin-top: 3.75rem;
  margin-inline: auto;
  width: 25rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-main__button {
    margin-top: 2.5rem;
    width: 100%;
  }
}

.p-recruit-head {
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-head {
    padding-top: 3.125rem;
  }
}

.p-recruit-head__inner {
  margin-inline: auto;
  padding-inline: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-head__inner {
    padding-inline: initial;
  }
}

.p-recruit-head__container {
  margin-inline: auto;
  padding: 3.75rem;
  max-width: 80rem;
  background-color: #fff3eb;
  border-radius: 1.5rem;
  box-shadow: 0 0 1.25rem rgba(52, 46, 41, 0.05);
}
@media screen and (max-width: 767px) {
  .p-recruit-head__container {
    padding: 1.875rem 1.25rem;
  }
}

.p-recruit-head__title {
  font-size: max(1.875rem, 10px);
  text-align: center;
  background: linear-gradient(90deg, #e16d18, #f4a905); /* 背景色にグラデーションを指定 */
  -webkit-background-clip: text; /* テキストで切り抜く */
  -webkit-text-fill-color: transparent; /* 切り抜いた部分は背景を表示 */
}
@media screen and (max-width: 767px) {
  .p-recruit-head__title {
    font-size: max(1.5rem, 10px);
    text-align: left;
  }
}

.p-recruit-head__text {
  margin-top: 3.75rem;
  font-size: max(1rem, 10px);
  font-weight: 400;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-recruit-head__text {
    margin-top: 1.875rem;
    font-size: max(0.875rem, 10px);
    text-align: left;
  }
}

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

.p-recruit-list__inner {
  max-width: 83.125rem;
}

.p-recruit-list__item {
  display: flex;
  align-items: center;
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-list__item {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.p-recruit-list__item + .p-recruit-list__item {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-list__item + .p-recruit-list__item {
    margin-top: 3.125rem;
  }
}

.p-recruit-list__item:nth-child(odd) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-recruit-list__item:nth-child(odd) {
    flex-direction: column;
  }
}

.p-recruit-list__img {
  display: block;
  width: 100%;
  max-width: 41.25rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-list__img {
    max-width: 20.9375rem;
  }
}
.p-recruit-list__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 660/400;
  border-radius: 1.5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-recruit-list__img img {
    aspect-ratio: 335/203.03;
  }
}

.p-recruit-list__content {
  flex: 1;
}

.p-recruit-list__title {
  font-size: max(1.875rem, 10px);
  color: #e16d18;
}
@media screen and (max-width: 767px) {
  .p-recruit-list__title {
    font-size: max(1.5rem, 10px);
  }
}

.p-recruit-list__text {
  margin-top: 2.5rem;
  font-size: max(1rem, 10px);
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-recruit-list__text {
    margin-top: 1rem;
    font-size: max(0.875rem, 10px);
  }
}

.p-recruit-list__button {
  margin-top: 2.5rem;
  width: 25rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-list__button {
    margin-top: 1rem;
    width: 100%;
  }
}

.p-recruit-mv {
  height: 100vh;
  min-height: 48.75rem;
  max-height: 56.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-recruit-mv {
    height: 100svh;
    min-height: 25rem;
    max-height: 41.6875rem;
  }
}

.p-recruit-mv__copy {
  position: absolute;
  bottom: 0;
  left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-mv__copy {
    bottom: 0.625rem;
    bottom: 0.25rem;
    left: 0.625rem;
  }
}

.p-recruit-mv__copy-text {
  font-size: max(9.375rem, 10px);
  font-family: "Prompt", sans-serif;
  line-height: 1;
  color: #f4a905;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-recruit-mv__copy-text {
    font-size: max(2.3125rem, 10px);
  }
}

.p-thanks {
  padding-block: 5rem;
}
@media screen and (max-width: 767px) {
  .p-thanks {
    padding-block: 3.125rem;
  }
}

.p-thanks__title {
  font-size: max(1.5rem, 10px);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-thanks__title {
    font-size: max(1.125rem, 10px);
  }
}

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

.p-thanks__text {
  font-size: max(1rem, 10px);
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-thanks__text {
    font-size: max(0.875rem, 10px);
    letter-spacing: initial;
    text-align: left;
  }
}
.p-thanks__text + .p-thanks__text {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-thanks__text + .p-thanks__text {
    margin-top: 1.3125rem;
  }
}

.p-thanks__button {
  margin-top: 3.75rem;
  margin-inline: auto;
  width: 25rem;
}
@media screen and (max-width: 767px) {
  .p-thanks__button {
    margin-top: 2.5rem;
    width: 100%;
  }
}

.p-top-contact {
  padding-top: 5rem;
  background: linear-gradient(0deg, #f8f8f8 0%, #f8f8f8 39.3%, transparent 39.3%, transparent 100%);
}
@media screen and (max-width: 767px) {
  .p-top-contact {
    padding-top: 3.125rem;
    background: linear-gradient(0deg, #f8f8f8 0%, #f8f8f8 60.75%, transparent 60.75%, transparent 100%);
  }
}

.p-top-contact__container {
  margin-inline: auto;
  display: flex;
  max-width: 80rem;
}
@media screen and (max-width: 767px) {
  .p-top-contact__container {
    flex-direction: column;
  }
}

.p-top-contact__item {
  padding-block: 4.9375rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-contact__item {
    padding-block: 3.375rem;
    gap: 1.5rem;
  }
}

.p-top-contact__item--recruit {
  background-color: #f4a905;
  border-radius: 1.5rem 0 0 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-contact__item--recruit {
    border-radius: 1.5rem 1.5rem 0 0;
  }
}

.p-top-contact__item--inquiry {
  background-color: #e16d18;
  border-radius: 0 1.5rem 1.5rem 0;
}
@media screen and (max-width: 767px) {
  .p-top-contact__item--inquiry {
    border-radius: 0 0 1.5rem 1.5rem;
  }
}

.p-top-contact__text {
  font-size: max(3.75rem, 10px);
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-top-contact__text {
    font-size: max(2rem, 10px);
  }
}

.p-top-contact__button {
  width: 25rem;
}
@media screen and (max-width: 767px) {
  .p-top-contact__button {
    width: 18.4375rem;
  }
}

.p-top-flow {
  padding-block: 5rem;
}
@media screen and (max-width: 767px) {
  .p-top-flow {
    padding-block: 3.125rem;
  }
}

.p-top-flow__inner {
  margin-inline: auto;
  padding-block: 3.75rem;
  max-width: 80rem;
  background: url(../images/top/package-bg.webp) no-repeat center/cover;
  border-radius: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-flow__inner {
    padding-block: 1.875rem;
    padding-inline: 1.25rem;
    background: url(../images/top/package-bg_sp.webp) no-repeat center/cover;
  }
}

.p-top-flow__title {
  text-align: center;
}

.p-top-flow__lead {
  margin-top: 0.625rem;
  font-size: max(1.875rem, 10px);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-flow__lead {
    margin-top: 0.5rem;
    font-size: max(1.5rem, 10px);
  }
}
.p-top-flow__lead span {
  color: #e16d18;
}

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

.p-top-flow__item {
  margin-inline: auto;
  padding: 1.875rem 3.75rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  max-width: 52.5rem;
  background-color: #fff3eb;
  border-radius: 1rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-flow__item {
    padding: 0.75rem;
    flex-direction: column;
    gap: 0.5rem;
  }
}
.p-top-flow__item + .p-top-flow__item {
  margin-top: 5.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-flow__item + .p-top-flow__item {
    margin-top: 4.5rem;
  }
}
.p-top-flow__item::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background: url(../images/common/flow-arrow.svg) no-repeat center/contain;
  position: absolute;
  top: -3.375rem;
  left: 50%;
  translate: -50% 0;
}
@media screen and (max-width: 767px) {
  .p-top-flow__item::before {
    top: -3rem;
  }
}

.p-top-flow__item:nth-of-type(1)::before {
  display: none;
}

.p-top-flow__number {
  font-size: max(5rem, 10px);
  font-family: "Prompt", sans-serif;
  line-height: 1;
  color: rgba(226, 132, 62, 0.6);
  position: absolute;
  top: -2.5rem;
  left: 0rem;
}
@media screen and (max-width: 767px) {
  .p-top-flow__number {
    font-size: max(3.75rem, 10px);
    top: -1.875rem;
  }
}

.p-top-flow__icon {
  display: block;
  width: 100%;
  max-width: 8.75rem;
}
@media screen and (max-width: 767px) {
  .p-top-flow__icon {
    max-width: 5rem;
  }
}
.p-top-flow__icon img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1;
}

.p-top-flow__heading {
  padding-bottom: 0.25rem;
  width: fit-content;
  font-size: max(1.875rem, 10px);
  background: linear-gradient(90deg, #e16d18, #f4a905); /* 背景色にグラデーションを指定 */
  -webkit-background-clip: text; /* テキストで切り抜く */
  -webkit-text-fill-color: transparent; /* 切り抜いた部分は背景を表示 */
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-flow__heading {
    margin-inline: auto;
    font-size: max(1.5rem, 10px);
  }
}
.p-top-flow__heading::after {
  content: "";
  width: 100%;
  height: 0.125rem;
  background: linear-gradient(90deg, #e16d18, #f4a905);
  position: absolute;
  bottom: -1.5px;
  left: 0;
  border-radius: 100vmax;
}

.p-top-flow__text {
  margin-top: 0.75rem;
  font-size: max(1rem, 10px);
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-top-flow__text {
    margin-top: 0.5rem;
    font-size: max(0.875rem, 10px);
  }
}

.p-top-flow__button {
  margin-top: 3.75rem;
  margin-inline: auto;
  width: 25rem;
}
@media screen and (max-width: 767px) {
  .p-top-flow__button {
    margin-top: 2.5rem;
    width: 100%;
  }
}

.p-top-message {
  --bg-opacity: 0;
  padding-block: 8.75rem;
  text-align: center;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-message {
    padding-block: 5rem;
  }
}
.p-top-message::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/top/message-bg.webp) no-repeat center bottom/cover;
  opacity: var(--bg-opacity);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top-message::before {
    background: url(../images/top/message-bg_sp.webp) no-repeat center bottom/cover;
  }
}

@media (prefers-reduced-motion: reduce) {
  .p-top-message {
    --bg-opacity: 1;
  }
  .p-top-message__title-en,
  .p-top-message__title-ja,
  .p-top-message__text-box,
  .p-top-message__button {
    opacity: 1 !important;
  }
  .p-top-message__rocket-container {
    display: none !important;
  }
}
.p-top-message__rocket-container {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 12.5rem;
  height: 9.375rem;
}
@media screen and (max-width: 767px) {
  .p-top-message__rocket-container {
    width: 9.375rem;
    height: 7rem;
  }
}

.p-top-message__smoke {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
}
.p-top-message__smoke img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-top-message__rocket {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 6.25rem;
  height: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-message__rocket {
    width: 4.6875rem;
    height: 5.625rem;
  }
}
.p-top-message__rocket img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-top-message__title-en {
  font-size: max(6.25rem, 10px);
  font-family: "Prompt", sans-serif;
  color: #e16d18;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-top-message__title-en {
    font-size: max(3.125rem, 10px);
  }
  .p-top-message__title-en span {
    display: none;
  }
}

.p-top-message__title-ja {
  font-size: max(1.875rem, 10px);
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-top-message__title-ja {
    margin-top: 0.625rem;
    font-size: max(1.5rem, 10px);
  }
}

.p-top-message__text-box {
  margin-top: 3.75rem;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-top-message__text-box {
    margin-top: 2.5rem;
  }
}

.p-top-message__text {
  font-size: max(1rem, 10px);
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 2;
  letter-spacing: initial;
}
@media screen and (max-width: 767px) {
  .p-top-message__text {
    font-size: max(0.875rem, 10px);
    letter-spacing: -0.01em;
  }
}
.p-top-message__text + .p-top-message__text {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-top-message__text + .p-top-message__text {
    margin-top: 1.75rem;
  }
}
.p-top-message__text span {
  font-weight: 700;
  color: #e16d18;
}

.p-top-message__button {
  margin-top: 3.75rem;
  margin-inline: auto;
  width: 25rem;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-top-message__button {
    margin-top: 2.5rem;
    width: 100%;
  }
}

.p-top-mv {
  height: 100vh;
  min-height: 48.75rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-mv {
    height: 100svh;
    min-height: 26.875rem;
  }
}

.p-top-mv__inner {
  height: inherit;
  min-height: inherit;
  position: relative;
}

.p-top-mv__swiper {
  height: inherit;
  min-height: inherit;
  width: 100%;
}
.p-top-mv__swiper .swiper-slide {
  height: inherit;
  min-height: inherit;
}

.p-top-mv__img {
  display: block;
  width: 100%;
  height: inherit;
  min-height: inherit;
}
.p-top-mv__img picture {
  height: inherit;
  min-height: inherit;
}
.p-top-mv__img img {
  width: 100%;
  height: auto;
  height: inherit;
  min-height: inherit;
  object-fit: cover;
  aspect-ratio: 1440/900;
}
@media screen and (max-width: 767px) {
  .p-top-mv__img img {
    aspect-ratio: 375/667;
  }
}

.p-top-mv__box {
  position: absolute;
  bottom: 35%;
  left: 3.125rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-top-mv__box {
    bottom: 34%;
    left: 0.625rem;
  }
}

.p-top-mv__title {
  font-size: max(4.5rem, 10px);
  color: #ffffff;
  text-shadow: 0 0 3.75rem rgba(52, 46, 41, 0.8);
}
@media screen and (max-width: 767px) {
  .p-top-mv__title {
    font-size: max(2.5rem, 10px);
  }
}

.js-mv-line {
  display: inline-block;
  font-size: 0;
}

.js-mv-char {
  display: inline-block;
  opacity: 0;
  transform: translateX(-30px);
  font-size: max(4.5rem, 10px);
  margin: 0;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  .js-mv-char {
    font-size: max(2.5rem, 10px);
  }
}

.js-mv-highlight {
  color: #ffffff;
  transition: color 0.8s ease;
}
.js-mv-highlight.is-highlighted {
  color: #e16d18;
}

.p-top-mv__text {
  margin-top: 1rem;
  font-size: max(1.5rem, 10px);
  color: #ffffff;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-top-mv__text {
    margin-top: 0.5rem;
    font-size: max(0.875rem, 10px);
  }
}

.p-top-mv__copy {
  position: absolute;
  bottom: 1.6875rem;
  left: 2.625rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-top-mv__copy {
    bottom: 0.8125rem;
    left: 0.625rem;
  }
}

.p-top-mv__copy-text {
  font-size: max(11.5625rem, 10px);
  font-family: "Prompt", sans-serif;
  line-height: 1;
  color: #f4a905;
  white-space: nowrap;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-top-mv__copy-text {
    font-size: max(2.875rem, 10px);
  }
}

.p-top-news {
  padding-block: 5rem;
}
@media screen and (max-width: 767px) {
  .p-top-news {
    padding-block: 3.125rem;
  }
}

.p-top-news__container {
  margin-inline: auto;
  display: flex;
  gap: 3.75rem;
  max-width: 80rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__container {
    flex-direction: column;
    gap: 2.5rem;
  }
}

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

@media screen and (max-width: 767px) {
  .p-top-news__title {
    order: 1;
  }
}

.p-top-news__button {
  margin-top: 3.75rem;
  width: 25rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__button {
    margin-top: initial;
    order: 3;
    width: 100%;
  }
}

.p-top-news__link {
  padding: 2.1875rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.875rem;
  background-color: #fff3eb;
  border-radius: 1rem;
  transition: color 0.3s ease-out, opacity 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .p-top-news__link {
    padding: 1.5625rem 1.25rem;
    flex-direction: column;
    align-items: initial;
    gap: 0.5rem;
  }
}

.p-top-news__link-img {
  display: block;
  width: 100%;
  max-width: 1.875rem;
  position: relative;
}
.p-top-news__link-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}
.p-top-news__link-img img:nth-of-type(2) {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}

.p-top-news__list {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top-news__list {
    order: 2;
  }
}

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

.p-top-news__date {
  font-size: max(0.75rem, 10px);
  font-family: "Prompt", sans-serif;
  font-weight: 500;
  line-height: 1;
}

.p-top-news__body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.875rem;
}

.p-top-news__heading {
  font-size: max(0.875rem, 10px);
  line-height: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.p-top-news__no-posts {
  padding: 2.5rem;
  text-align: center;
  color: #e9e4d9;
  background-color: #fff3eb;
  border-radius: 1rem;
  font-size: max(1rem, 10px);
}
@media screen and (max-width: 767px) {
  .p-top-news__no-posts {
    padding: 1.875rem;
    font-size: max(0.875rem, 10px);
    order: 2;
  }
}

@media (any-hover: hover) {
  .p-top-news__link:hover {
    color: #e16d18;
    opacity: 1;
  }
  .p-top-news__link:hover .p-top-news__link-img img:nth-of-type(1) {
    opacity: 0;
    visibility: hidden;
  }
  .p-top-news__link:hover .p-top-news__link-img img:nth-of-type(2) {
    opacity: 1;
    visibility: visible;
  }
}
.p-top-office {
  padding-block: 8.75rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-office {
    padding-block: 5rem;
  }
}

.p-top-office__bg {
  display: block;
  width: 100%;
  position: absolute;
  inset: 0;
}
.p-top-office__bg img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1440/634;
}
@media screen and (max-width: 767px) {
  .p-top-office__bg img {
    aspect-ratio: 375/501;
  }
}

.p-top-office__content {
  margin-inline: auto;
  max-width: 80rem;
  position: relative;
}

.p-top-office__text {
  margin-top: 3.75rem;
  font-size: max(1rem, 10px);
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-top-office__text {
    margin-top: 2.5rem;
    font-size: max(0.875rem, 10px);
  }
}

.p-top-office__button {
  margin-top: 3.75rem;
  width: 25rem;
}
@media screen and (max-width: 767px) {
  .p-top-office__button {
    margin-top: 2.5rem;
    width: 100%;
  }
}

.p-top-recruit {
  padding-block: 5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-recruit {
    padding-block: 3.125rem;
  }
}

.p-top-recruit__inner {
  margin-inline: auto;
  padding-inline: 1.25rem;
  max-width: 82.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-recruit__inner {
    padding-inline: initial;
  }
}

.p-top-recruit__container {
  padding: 3.75rem 3.75rem 3.5rem;
  background: url(../images/top/works-bg.webp) no-repeat center/cover;
  display: flex;
  gap: 1.5rem;
  border-radius: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-recruit__container {
    padding: 1.875rem 1.25rem;
    flex-direction: column;
    gap: 2.25rem;
    background: url(../images/top/works-bg_sp.webp) no-repeat center/cover;
  }
}

.p-top-recruit__text {
  margin-top: 3.75rem;
  font-size: max(1rem, 10px);
  font-weight: 400;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-top-recruit__text {
    margin-top: 2.5rem;
    font-size: max(0.875rem, 10px);
  }
}

.p-top-recruit__list {
  margin-top: 3.75rem;
  width: min(100%, 22rem);
}
@media screen and (max-width: 767px) {
  .p-top-recruit__list {
    margin-top: 2.5rem;
  }
}

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

.p-top-recruit__link {
  padding-bottom: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: max(1.875rem, 10px);
  color: #ffffff;
  background-image: linear-gradient(#e16d18, #e16d18);
  background-repeat: no-repeat;
  background-position: bottom right; /* 下線の初期位置 */
  background-size: 0 0.125rem; /* 下線のサイズ（横幅、高さ） */
  transition: background-size 0.3s ease-out, color 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .p-top-recruit__link {
    font-size: max(1.5rem, 10px);
  }
}

.p-top-recruit__link-img {
  display: block;
  width: 100%;
  max-width: 1.875rem;
  position: relative;
}
.p-top-recruit__link-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1;
  opacity: 1;
  transition: opacity 0.3s ease-out;
}
.p-top-recruit__link-img img:nth-of-type(2) {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.p-top-recruit__img {
  display: block;
  width: 100%;
  max-width: 33.75rem;
  position: absolute;
  top: 15.4375rem;
  right: 0;
}
@media screen and (max-width: 767px) {
  .p-top-recruit__img {
    margin-top: initial;
    margin-inline: auto;
    max-width: 16.875rem;
    position: initial;
  }
}
.p-top-recruit__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 540/400;
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-recruit__img img {
    aspect-ratio: 270/200;
  }
}

@media (any-hover: hover) {
  .p-top-recruit__link:hover {
    color: #e16d18;
    opacity: 1;
    background-position: bottom left; /* 下線のホバー時位置 */
    background-size: 100% 0.125rem; /* 下線の横幅を100%にする */
  }
  .p-top-recruit__link:hover .p-top-recruit__link-img img:nth-of-type(1) {
    opacity: 0;
  }
  .p-top-recruit__link:hover .p-top-recruit__link-img img:nth-of-type(2) {
    opacity: 1;
  }
}
.p-top-service {
  padding-block: 8.75rem;
  height: 56.25rem;
  background: url(../images/top/service-bg.webp) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-top-service {
    padding-block: 5rem;
    height: 50rem;
    background: url(../images/top/service-bg_sp.webp) no-repeat center/cover;
  }
}

.p-top-service__container {
  margin-inline: auto;
  max-width: 80rem;
  display: flex;
  justify-content: space-between;
  gap: 2.3125rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__container {
    flex-direction: column;
    gap: 2.5rem;
  }
}

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

.p-top-service__title {
  font-size: max(3.75rem, 10px);
  background: linear-gradient(90deg, #e16d18, #f4a905);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .p-top-service__title {
    font-size: max(2rem, 10px);
    order: 1;
  }
}

.p-top-service__button {
  margin-top: 3.75rem;
  width: 25rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__button {
    margin-top: -42.8125rem;
    width: 100%;
    order: 3;
  }
}

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

.p-top-service__icon {
  margin-inline: auto;
  display: block;
  width: 100%;
  max-width: 26.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__icon {
    max-width: 20.9375rem;
  }
}
.p-top-service__icon img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1;
}

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

.p-top-service__item {
  position: relative;
}
.p-top-service__item + .p-top-service__item {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__item + .p-top-service__item {
    margin-top: 2.5rem;
  }
}

.p-top-service__img {
  display: block;
  width: 100%;
  max-width: 28rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__img {
    max-width: 20.9375rem;
  }
}
.p-top-service__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 448/252;
  border-radius: 0.75rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-service__img img {
    aspect-ratio: 335/188;
  }
}

.p-top-service__body {
  content: "";
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.p-top-service__heading {
  font-size: max(1.875rem, 10px);
  color: #ffffff;
  text-shadow: 0 0 1.25rem rgba(52, 46, 41, 0.8);
}
@media screen and (max-width: 767px) {
  .p-top-service__heading {
    font-size: max(1.5rem, 10px);
  }
}

.p-top-service__text {
  margin-top: 1rem;
  font-size: max(1rem, 10px);
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 0 1.25rem rgba(52, 46, 41, 0.8);
}
@media screen and (max-width: 767px) {
  .p-top-service__text {
    font-size: max(0.875rem, 10px);
  }
}

.js-fadein {
  opacity: 0;
  transform: translateY(6.25rem);
  transition: all 0.5s ease-out;
}

.js-fadein.is-scrollin {
  opacity: 1;
  transform: translateY(0);
}

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

.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .page-numbers {
    gap: 1rem;
  }
}

.pagination__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  font-size: max(1rem, 10px);
  font-family: "Prompt", sans-serif;
  line-height: 1;
  letter-spacing: initial;
  border: 1px solid #e2843e;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .pagination__number {
    width: 1.75rem;
    height: 1.75rem;
    font-size: max(0.875rem, 10px);
  }
}

.page-numbers a {
  color: #e2843e;
  background-color: #ffffff;
}

.current .pagination__number {
  color: #ffffff;
  background-color: #e2843e;
}

.pagination__icon--prev {
  background: url(../images/common/left-arrow.svg) no-repeat center/contain;
  width: 1.125rem;
  height: 1.125rem;
  border: initial;
}

.pagination__icon--next {
  background: url(../images/common/right-arrow.svg) no-repeat center/contain;
  width: 1.125rem;
  height: 1.125rem;
  border: initial;
}

.page-numbers.dots {
  font-size: 0;
  width: 3.0625rem;
  height: 1rem;
  display: inline-block;
  background: url(../images/common/page-dot.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .page-numbers.dots {
    width: 2.6875rem;
    height: 0.875rem;
  }
}

li:has(> .page-numbers.dots) {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.scroll-infinity__wrap {
  display: flex;
  gap: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .scroll-infinity__wrap {
    gap: 0.5rem;
  }
}

.scroll-infinity__list {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .scroll-infinity__list {
    gap: 0.5rem;
  }
}

.scroll-infinity__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

.scroll-infinity__item {
  width: 22.5rem;
}
@media screen and (max-width: 767px) {
  .scroll-infinity__item {
    width: 8.4375rem;
  }
}

.scroll-infinity__item > img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 360/240;
}
@media screen and (max-width: 767px) {
  .scroll-infinity__item > img {
    aspect-ratio: 135/90;
  }
}

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

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

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