@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 1300px) {
  html {
    font-size: 1.2307692308vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.l-mt-32 {
  margin-top: 2rem;
}

.l-mt-40 {
  margin-top: 2.5rem;
}

.l-mt-48 {
  margin-top: 3rem;
}

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

.c-bl {
  display: block;
}

.c-br {
  display: inline-block;
}

.c-breadcrumb {
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb {
    font-size: 10px;
  }
}

.c-btn-arrow {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.07em;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #212121;
}
@media screen and (max-width: 767px) {
  .c-btn-arrow {
    font-size: 0.875rem;
  }
}

.c-btn-arrow--sm {
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .c-btn-arrow--sm {
    font-size: 0.75rem;
  }
}

.c-btn-arrow--white {
  color: #FDFDFD;
  border-color: #FDFDFD;
}

.c-btn-arrow__right {
  display: inline-block;
  width: 1.5rem;
  height: 0.4375rem;
  -webkit-mask-image: url("../images/arrow-btn.svg");
          mask-image: url("../images/arrow-btn.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #212121;
  transition: transform 0.3s ease;
}

.c-btn-arrow__right--white {
  background-color: #FDFDFD;
}

.c-btn-arrow:hover .c-btn-arrow__right {
  transform: translateX(4px);
  transition: transform 0.3s ease;
}

.c-btn-arrow--service:hover .c-btn-arrow__right {
  background-color: #FDFDFD;
}

.c-btn-arrow--service:hover {
  border-bottom: 1px solid #FDFDFD;
}

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 1.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.07em;
  color: #212121;
  border: 1px solid #212121;
  max-width: 13.125rem;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-btn {
    max-width: 11.25rem;
    font-size: 0.875rem;
    padding: 1.25rem 0.625rem;
  }
}

.c-btn--white {
  color: #FDFDFD;
  border-color: #FDFDFD;
}

.c-btn:hover .c-btn__arrow {
  transform: translateX(0.625rem);
}

.c-btn__arrow {
  display: inline-block;
  width: 1.5rem;
  height: 0.4375rem;
  -webkit-mask-image: url("../images/arrow-btn.svg");
          mask-image: url("../images/arrow-btn.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #212121;
  transition: transform 0.3s ease;
}

.c-btn--white .c-btn__arrow {
  background-color: #FDFDFD;
}

.c-category-link {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.07em;
  padding: 0.625rem;
  border: 1px solid rgba(33, 33, 33, 0.5);
}
@media screen and (max-width: 767px) {
  .c-category-link {
    font-size: 0.875rem;
    padding: 0.5rem;
  }
}

.c-category {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.07em;
  display: inline-block;
  padding: 0.375rem;
  border: 1px solid rgba(33, 33, 33, 0.5);
}
@media screen and (max-width: 767px) {
  .c-category {
    font-size: 10px;
    padding: 0.3125rem;
  }
}

.c-contact-btn {
  display: inline-block;
  padding: 1.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.07em;
  background-color: #212121;
  color: #FDFDFD;
  border: 1px solid #212121;
  max-width: 13.125rem;
  width: 100%;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-contact-btn {
    max-width: 11.25rem;
    font-size: 0.875rem;
    padding: 1.25rem 0.625rem;
  }
}

.c-contact-btn:hover {
  background-color: #FDFDFD;
  color: #212121;
}

.c-section-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.07em;
  color: #212121;
}

.c-text-2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.07em;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .c-text-2 {
    font-size: 0.875rem;
  }
}

.c-text-3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.07em;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .c-text-3 {
    font-size: 0.875rem;
  }
}

.c-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.07em;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .c-text {
    font-size: 0.875rem;
  }
}

.p-404 {
  padding-block: 3.75rem 6.25rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-404 {
    padding-block: 2.5rem 5rem;
  }
}

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

.p-404__title {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.07em;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-404__title {
    font-size: 1.375rem;
    margin-top: 3.75rem;
  }
}

.p-404__lead {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.07em;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-404__lead {
    font-size: 1rem;
    margin-top: 0.9375rem;
  }
}

.p-404__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.07em;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-404__text {
    font-size: 0.875rem;
    margin-top: 2.5rem;
  }
}

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

.p-about__body {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-about__body {
    flex-direction: column;
    gap: 2.5rem;
  }
}

.p-about__lead {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.07em;
  width: 34.375rem;
}
@media screen and (max-width: 767px) {
  .p-about__lead {
    font-size: 1.375rem;
    width: 100%;
  }
}

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

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

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

.p-about__wrapper {
  transition-timing-function: linear;
  transition-duration: 0.3s;
}

.p-about__slide {
  width: 18.75rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-about__slide {
    width: 12.5rem;
  }
}

.p-about__slide img {
  aspect-ratio: 300/200;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-about__slide img {
    aspect-ratio: 200/160;
  }
}

.p-archive-blog {
  padding-block: 5rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-archive-blog {
    padding-block: 3.75rem 6.25rem;
  }
}

.p-archive-blog__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-archive-blog__cards {
    grid-template-columns: repeat(1fr);
  }
}

.p-archive-voice {
  padding-block: 5rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-archive-voice {
    padding-block: 3.75rem 6.25rem;
  }
}

.p-archive-voice__cards {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-archive-voice__cards {
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}

.p-archive-works {
  padding-block: 5rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-archive-works {
    padding-block: 3.75rem 6.25rem;
  }
}

.p-archive-works__cards {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-archive-works__cards {
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}

.p-blog-card {
  width: 17.5rem;
}
@media screen and (max-width: 767px) {
  .p-blog-card {
    width: 15rem;
  }
}

.p-blog-card__link:hover .p-blog-card__img img {
  transform: scale(1.1);
}

.p-blog-card__img {
  overflow: hidden;
}

.p-blog-card__img img {
  aspect-ratio: 290/180;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-blog-card__img img {
    aspect-ratio: 240/180;
  }
}

.p-blog-card__meta {
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-blog-card__meta {
    margin-top: 0.625rem;
  }
}

.p-blog-card__time {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .p-blog-card__time {
    font-size: 10px;
  }
}

.p-blog-card__title {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.07em;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-blog-card__title {
    font-size: 1.125rem;
  }
}

.p-blog-card__text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-top: 0.625rem;
}

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

.p-company__title::after {
  content: "COMPANY";
  display: block;
  color: #212121;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.07em;
  padding-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-company__title::after {
    font-size: 1.875rem;
    padding-top: 0.3125rem;
  }
}

.p-company__table {
  width: 100%;
  margin-top: 3rem;
}

.p-company__row {
  display: flex;
  padding-block: 1.5625rem;
  border-bottom: 1px solid rgba(33, 33, 33, 0.5);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-company__row {
    flex-direction: column;
    text-align: left;
    gap: 0.625rem;
    padding-block: 1.25rem;
  }
}

.p-company__heading {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.07em;
  width: 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-company__heading {
    line-height: 1.4;
    width: 100%;
  }
}

.p-company__data {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.07em;
  width: calc(100% - 12.5rem);
}
@media screen and (max-width: 767px) {
  .p-company__data {
    line-height: 1.4;
    width: 100%;
  }
}

.p-contact {
  padding-block: 5.3125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding-block: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-contact__block {
    background-color: #FDFDFD;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 1.875rem 1.25rem;
  }
}

.p-contact__title {
  color: #FDFDFD;
}
@media screen and (max-width: 767px) {
  .p-contact__title {
    color: #212121;
  }
}

.p-contact__title::after {
  content: "CONTACT";
  display: block;
  color: #FDFDFD;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.07em;
  padding-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-contact__title::after {
    font-size: 1.875rem;
    padding-top: 0.3125rem;
    color: #212121;
  }
}

.p-contact__text {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.07em;
  margin-top: 1.75rem;
  color: #FDFDFD;
}
@media screen and (max-width: 767px) {
  .p-contact__text {
    font-size: 1rem;
    color: #212121;
    margin-top: 0.875rem;
  }
}

.p-contact__btn {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-contact__btn {
    margin-top: 1.25rem;
    color: #212121;
  }
}

@media screen and (max-width: 767px) {
  .p-contact__btn .c-btn-arrow {
    color: #212121;
    border-bottom: 1px solid #212121;
  }
}

@media screen and (max-width: 767px) {
  .p-contact__btn .c-btn-arrow__right {
    color: #212121;
    background-color: #212121;
  }
}

.p-contact__img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 26.875rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-contact__img {
    position: initial;
    height: 20rem;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}

.p-contact__img img {
  aspect-ratio: 1440/430;
  width: 100%;
  height: 26.875rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-contact__img img {
    height: 20rem;
    aspect-ratio: 750/440;
    -o-object-position: center;
       object-position: center;
  }
}

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

.p-container__side {
  width: 6.875rem;
  position: sticky;
  top: 6.25rem;
  align-self: flex-start;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-container__side {
    width: 100%;
    position: initial;
    top: 0;
    padding-bottom: 3.75rem;
  }
}

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

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

.p-container__body--faq {
  width: 62.5rem;
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-container__body--faq {
    width: 100%;
  }
}

.p-footer {
  background-color: #FDFDFD;
  padding-block: 6.25rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-block: 3.125rem 2.5rem;
  }
}

.p-footer__top {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-footer__top {
    flex-direction: column;
    gap: 1.875rem;
  }
}

.p-footer__message {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.07em;
  width: 35rem;
}
@media screen and (max-width: 767px) {
  .p-footer__message {
    font-size: 1.375rem;
    width: 100%;
    text-align: center;
  }
}

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

.p-footer__catch:not(:first-child) {
  margin-top: 0.625rem;
}

.p-footer__catch-img {
  background-image: url("../images/footer-1.webp");
  background-size: cover;
  background-position: center;
  width: 6.25rem;
  height: 3.75rem;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-footer__catch-img {
    width: 3.125rem;
    height: 2.1875rem;
  }
}

.p-footer__catch-img--2 {
  background-image: url("../images/footer-2.webp");
}

.p-footer__nav {
  width: 32.5rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-footer__nav {
    width: 100%;
    justify-content: center;
    gap: 3.75rem;
  }
}

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

.p-footer__nav-item {
  font-family: "Raleway", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item {
    font-size: 1rem;
  }
}

.p-footer__sub-list {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-footer__sub-list {
    gap: 0.5rem;
  }
}

.p-footer__sub-item {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.07em;
  color: #adadad;
}
@media screen and (max-width: 767px) {
  .p-footer__sub-item {
    font-size: 0.875rem;
  }
}

.p-footer__bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-footer__bottom {
    flex-direction: column;
    gap: 1.875rem;
  }
}

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

.p-footer__desc {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.07em;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__desc {
    font-size: 0.75rem;
  }
}

.p-footer__contact {
  margin-top: 1.5rem;
}

.p-footer__email {
  font-family: "Raleway", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .p-footer__email {
    font-size: 0.75rem;
  }
}

.p-footer__copyright {
  align-self: flex-end;
  font-family: "Raleway", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    font-size: 10px;
  }
}

.p-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  padding: 0.625rem 2.5rem;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #FDFDFD;
}
@media screen and (max-width: 767px) {
  .p-header {
    padding: 0.625rem 1.25rem;
  }
}

.p-header__logo {
  position: relative;
  z-index: 1000;
  width: 5.5625rem;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: 4.375rem;
  }
}

.p-header__hamburger {
  display: block;
  width: 3.25rem;
  height: 3.25rem;
  z-index: 100;
  border: 1px solid #212121;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.p-header__hamburger-line {
  display: block;
  width: 2.125rem;
  height: 1px;
  background-color: #212121;
  transition: 0.3s;
  margin-inline: auto;
  transform: rotate(-8deg);
}
@media screen and (max-width: 767px) {
  .p-header__hamburger-line {
    width: 1.75rem;
  }
}

.p-header__hamburger-line:nth-child(2) {
  margin-top: 10px;
}

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

.p-header__hamburger.open span:nth-child(2) {
  position: relative;
  transform: rotate(-45deg);
  top: -4px;
}

.p-header__drawer {
  display: none;
  position: fixed;
  top: 5rem;
  right: 0;
  left: 0;
  background-color: #FDFDFD;
  width: 100%;
  height: 100%;
  z-index: 1;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-header__drawer {
    align-items: center;
    top: 0;
  }
}

.p-header__drawer-img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-header__drawer-img {
    display: none;
  }
}

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

.p-header__drawer-menu {
  margin-inline: auto;
  align-self: center;
}

.p-header__catch {
  font-size: 1.5rem;
  font-weight: 350;
  line-height: 170%;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .p-header__catch {
    text-align: center;
  }
}

.p-header__nav {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
  gap: 2.5rem;
}

.p-header__nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.p-header__nav-item {
  font-family: "Raleway", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.07em;
}

.p-header__sub-list {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.p-header__sub-item {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.07em;
  color: #adadad;
}

.p-home-news {
  padding-block: 5rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-home-news {
    padding-block: 3.75rem 6.25rem;
  }
}

.p-home-news__inner {
  max-width: 62.5rem;
}

.p-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.p-home-news__list {
  margin-top: 2.5rem;
}

.p-lp-faq {
  padding-block: 5rem;
  border-bottom: 1px solid rgba(33, 33, 33, 0.5);
}
@media screen and (max-width: 767px) {
  .p-lp-faq {
    padding-block: 3.75rem;
  }
}

.p-lp-faq__title::after {
  content: "FAQ";
  display: block;
  color: #212121;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.07em;
  padding-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-lp-faq__title::after {
    font-size: 1.875rem;
    padding-top: 0.3125rem;
  }
}

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

.p-faq {
  display: grid;
  gap: 0.625rem;
}

.p-faq__item {
  border: 1px solid #adadad;
  padding: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-faq__item {
    padding: 0.9375rem;
  }
}

.p-faq__question-title {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.07em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-faq__question-title {
    font-size: 1rem;
  }
}

.p-faq__question-text {
  width: 85%;
}

.p-faq__question-icon {
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid #adadad;
  transition: all 0.3s;
  padding: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-faq__question-icon {
    width: 1.5rem;
    height: 1.5rem;
    padding: 0.25rem;
  }
}

.p-faq__question-icon::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 1px;
  height: 20px;
  background-color: #212121;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-faq__question-icon::before {
    width: 1px;
    height: 14px;
  }
}

.p-faq__question-icon::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 1px;
  background-color: #212121;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-faq__question-icon::after {
    width: 14px;
    height: 1px;
  }
}

.p-faq__question-title.open .p-faq__question-icon::before {
  opacity: 0;
}

.p-faq__answer-text {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.07em;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-faq__answer-text {
    font-size: 1rem;
    margin-top: 0.625rem;
  }
}

.p-lp-feature {
  padding-block: 5rem;
  border-bottom: 1px solid rgba(33, 33, 33, 0.5);
}
@media screen and (max-width: 767px) {
  .p-lp-feature {
    padding-block: 3.75rem;
  }
}

.p-lp-feature__title::after {
  content: "FEATURES OF VUPS";
  display: block;
  color: #212121;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.07em;
  padding-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-lp-feature__title::after {
    font-size: 1.875rem;
    padding-top: 0.3125rem;
  }
}

.p-lp-feature__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem 1.25rem;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-lp-feature__list {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 2.5rem;
    gap: 0.9375rem;
  }
}

.p-lp-feature__item {
  background-color: #f5f5f5;
  padding: 1.25rem 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-lp-feature__item {
    padding: 0.9375rem;
  }
}

.p-lp-feature__label {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .p-lp-feature__label {
    font-size: 0.875rem;
  }
}

.p-lp-feature__heading {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.07em;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-lp-feature__heading {
    font-size: 1.25rem;
  }
}

.p-lp-feature__description {
  margin-top: 0.9375rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .p-lp-feature__description {
    font-size: 0.875rem;
    margin-top: 0.625rem;
  }
}

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

.p-lp-feature__wrapper {
  transition-timing-function: linear;
  transition-duration: 0.3s;
}

.p-lp-feature__slide {
  width: 16.5625rem;
}
@media screen and (max-width: 767px) {
  .p-lp-feature__slide {
    width: 12.5rem;
  }
}

.p-lp-feature__slide img {
  aspect-ratio: 265/200;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-lp-feature__slide img {
    aspect-ratio: 200/150;
  }
}

.p-lp-flow {
  padding-block: 5rem;
  border-bottom: 1px solid rgba(33, 33, 33, 0.5);
}
@media screen and (max-width: 767px) {
  .p-lp-flow {
    padding-block: 3.75rem;
  }
}

.p-lp-flow__title::after {
  content: "FLOW";
  display: block;
  color: #212121;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.07em;
  padding-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-lp-flow__title::after {
    font-size: 1.875rem;
    padding-top: 0.3125rem;
  }
}

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

.p-lp-flow__item {
  border: 1px solid #adadad;
  border-bottom: 0px;
  padding: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-lp-flow__item {
    margin-bottom: 0.625rem;
    border-bottom: 1px solid #adadad;
    padding: 0.9375rem;
  }
}

.p-lp-flow__item:last-child {
  border-bottom: 1px solid #adadad;
}
@media screen and (max-width: 767px) {
  .p-lp-flow__item:last-child {
    margin-bottom: 0;
  }
}

.p-lp-flow__step {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .p-lp-flow__step {
    font-size: 0.875rem;
  }
}

.p-lp-flow__question-title {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.07em;
  margin-top: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-lp-flow__question-title {
    font-size: 1.25rem;
    margin-top: 0.3125rem;
    line-height: 1.5;
  }
}

.p-lp-flow__question-text {
  width: 85%;
}

.p-lp-flow__question-icon {
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid #adadad;
  padding: 0.3125rem;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-lp-flow__question-icon {
    width: 1.5rem;
    height: 1.5rem;
    padding: 0.25rem;
  }
}

.p-lp-flow__question-icon::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 1px;
  height: 20px;
  background-color: #212121;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-lp-flow__question-icon::before {
    width: 1px;
    height: 14px;
  }
}

.p-lp-flow__question-icon::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 1px;
  background-color: #212121;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-lp-flow__question-icon::after {
    width: 14px;
    height: 1px;
  }
}

.p-lp-flow__question-title.open .p-lp-flow__question-icon::before {
  opacity: 0;
}

.p-lp-flow__answer-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.07em;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-lp-flow__answer-text {
    font-size: 0.875rem;
    margin-top: 0.625rem;
  }
}

.p-lp-flow__contact {
  text-decoration: underline;
}

.p-lp-solution {
  padding-bottom: 5rem;
  border-bottom: 1px solid rgba(33, 33, 33, 0.5);
}
@media screen and (max-width: 767px) {
  .p-lp-solution {
    padding-bottom: 3.75rem;
  }
}

.p-lp-solution--pt {
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-lp-solution--pt {
    padding-top: 3.75rem;
  }
}

.p-lp-solution__title::after {
  content: "CHALLENGES WE SOLVE";
  display: block;
  color: #212121;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.07em;
  padding-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-lp-solution__title::after {
    font-size: 1.875rem;
    padding-top: 0.3125rem;
  }
}

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

.p-lp-solution__item {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.07em;
  padding: 0.75rem 1.25rem;
  border: 1px solid #212121;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-lp-solution__item {
    font-size: 1rem;
    line-height: 1.4;
    padding: 0.625rem;
    gap: 0.5rem;
  }
}

.p-lp-solution__item-ck {
  display: inline-block;
  width: 1.5rem;
  height: 1rem;
  background-image: url("../images/lp/ck.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .p-lp-solution__item-ck {
    width: 1.25rem;
    height: 0.875rem;
  }
}

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

.p-lp-works__title::after {
  content: "WORKS";
  display: block;
  color: #212121;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.07em;
  padding-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-lp-works__title::after {
    font-size: 1.875rem;
    padding-top: 0.3125rem;
  }
}

.p-lp-works__cards {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-lp-works__cards {
    margin-top: 2.5rem;
    gap: 2.5rem;
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-lp-works__card {
  margin-top: 0;
}

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

.p-message__title {
  border-bottom: 1px solid rgba(33, 33, 33, 0.5);
  padding-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .p-message__title {
    padding-bottom: 2.5rem;
  }
}

.p-message__title::after {
  content: "MESSAGE";
  display: block;
  color: #212121;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.07em;
  padding-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-message__title::after {
    font-size: 1.875rem;
    padding-top: 0.3125rem;
  }
}

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

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

.p-message__lead {
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .p-message__lead {
    font-size: 1.25rem;
  }
}

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

.p-message__name {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.07em;
  margin-top: 1.875rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-message__name {
    font-size: 1rem;
    margin-top: 0.9375rem;
  }
}

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

.p-message__img img {
  aspect-ratio: 400/450;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-message__img img {
    aspect-ratio: 320/360;
  }
}

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

.p-message__wrapper {
  transition-timing-function: linear;
  transition-duration: 0.3s;
}

.p-message__slide {
  width: 30rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-message__slide {
    width: 12.5rem;
  }
}

.p-message__slide img {
  aspect-ratio: 480/320;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-message__slide img {
    aspect-ratio: 200/160;
  }
}

.p-mission {
  padding-block: 2.5rem 5rem;
  border-bottom: 1px solid rgba(33, 33, 33, 0.5);
}
@media screen and (max-width: 767px) {
  .p-mission {
    padding-block: 1.875rem 3.125rem;
  }
}

.p-mission__title::after {
  content: "MISSION";
  display: block;
  color: #212121;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.07em;
  padding-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-mission__title::after {
    font-size: 1.875rem;
    padding-top: 0.3125rem;
  }
}

.p-news-list__item {
  border-top: 1px solid rgba(33, 33, 33, 0.5);
}

.p-news-list__item:last-child {
  border-bottom: 1px solid rgba(33, 33, 33, 0.5);
}

.p-news-list__link {
  display: flex;
  align-items: center;
  gap: 7.5rem;
  padding: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-news-list__link {
    flex-direction: column;
    gap: 0.625rem;
    padding: 0.75rem 0;
    align-items: flex-start;
  }
}

.p-news-list__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.p-news-list__time {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .p-news-list__time {
    gap: 0.375rem;
  }
}

.p-news-list__text {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.07em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
}
@media screen and (max-width: 767px) {
  .p-news-list__text {
    font-size: 1.125rem;
  }
}

.p-news-list__text {
  position: relative;
  display: inline-block;
}

.p-news-list__text::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #212121;
  transition: width 0.3s ease;
}

.p-news-list__link:hover .p-news-list__text::before {
  width: 100%;
}

.p-page-contact {
  padding-block: 3.75rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-page-contact {
    padding-block: 2.5rem 6.25rem;
  }
}

.p-page-contact__text {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-page-contact__text {
    text-align: left;
  }
}

.p-page-contact__form {
  margin-top: 3.75rem;
}

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

.p-form__group {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-form__group {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
  }
}

.p-form__label {
  display: flex;
  align-items: center;
  gap: 1.875rem;
  width: 50%;
  padding: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-form__label {
    width: 100%;
    padding: 0;
    gap: 0.625rem;
  }
}

.p-form__required {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.07em;
  padding: 0.375rem;
  display: inline-block;
  border: 1px solid rgba(33, 33, 33, 0.5);
  background-color: #212121;
  color: #fff;
}

.p-form__required--bg {
  background-color: #FDFDFD;
  color: #212121;
}

.p-form__data-select {
  width: 100%;
}

.p-form__select,
.p-form__input,
.p-form__textarea {
  width: 100%;
  background-color: #f5f5f5;
  padding: 1.25rem;
  border: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .p-form__select,
  .p-form__input,
  .p-form__textarea {
    font-size: 0.875rem;
    padding: 0.9375rem;
  }
}

.p-form__data {
  width: 100%;
}

.p-form__input {
  width: 100%;
}

.p-form__group--start {
  align-items: flex-start;
}

.p-form__textarea {
  height: 18.75rem;
}

.p-form__label--ck {
  display: block;
  padding: 0;
  width: 100%;
  text-align: center;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-form__label--ck {
    margin-top: 2.5rem;
  }
}

.p-form__privacy {
  text-decoration: underline;
}

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

.p-form__group--privacy {
  display: block;
}

.p-form__btn-text {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.07em;
  margin-top: 1.25rem;
  display: block;
}

.p-form__btn-note {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.07em;
  margin-top: 0.625rem;
  display: block;
}

.p-form__btn-note a {
  text-decoration: underline;
}

.wpcf7-spinner {
  position: absolute;
}

.grecaptcha-badge {
  visibility: hidden;
}

.p-page-faq:last-child {
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-page-faq:last-child {
    padding-bottom: 5rem;
  }
}

.p-page-faq__title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .p-page-faq__title {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.p-page-faq__list {
  margin-top: 1.25rem;
}

.p-page-privacy {
  padding-block: 5rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-page-privacy {
    padding-block: 3.75rem 6.25rem;
  }
}

.p-page-privacy__list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.p-page-privacy__item {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.p-page-privacy__title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .p-page-privacy__title {
    font-size: 1.125rem;
  }
}

.p-page-privacy__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .p-page-privacy__text {
    font-size: 0.875rem;
  }
}

.p-purpose {
  padding-bottom: 6.25rem;
  border-bottom: 1px solid rgba(33, 33, 33, 0.5);
}
@media screen and (max-width: 767px) {
  .p-purpose {
    padding-bottom: 5rem;
  }
}

.p-purpose__title::after {
  content: "PURPOSE";
  display: block;
  color: #212121;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.07em;
  padding-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-purpose__title::after {
    font-size: 1.875rem;
    padding-top: 0.3125rem;
  }
}

.p-service-mv {
  position: relative;
  color: #FDFDFD;
}

.p-service-mv__block {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 100%;
  height: 100%;
  padding: 5rem;
}
@media screen and (max-width: 767px) {
  .p-service-mv__block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.875rem 0.625rem;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.p-service-mv__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-service-mv__body {
    flex-direction: column;
    align-items: start;
    gap: 0.9375rem;
  }
}

.p-service-mv__title {
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.07em;
  border: 1px solid #FDFDFD;
  padding: 0.625rem;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-service-mv__title {
    font-size: 0.875rem;
    padding: 0.5rem;
  }
}

.p-service-mv__lead {
  text-align: center;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-service-mv__lead {
    text-align: left;
    margin-top: 1.875rem;
  }
}

.p-service-mv__sub-title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .p-service-mv__sub-title {
    font-size: 1.125rem;
  }
}

.p-service-mv__partner {
  font-size: 2.75rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.07em;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-service-mv__partner {
    font-size: 1.625rem;
  }
}

.p-service-mv__text {
  margin-top: 1.875rem;
  text-align: center;
}

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

.p-service-mv__content {
  background: #212121;
  background-blend-mode: hard-light;
}

.p-service-mv__wrapper {
  transition-timing-function: linear;
  transition-duration: 0.3s;
}

.p-service-mv__slide {
  width: 23.4375rem;
}
@media screen and (max-width: 767px) {
  .p-service-mv__slide {
    width: 18.75rem;
  }
}

.p-service-mv__slide img {
  aspect-ratio: 375/300;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.p-side__link {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.07em;
  color: rgba(33, 33, 33, 0.5);
}
@media screen and (max-width: 767px) {
  .p-side__link {
    font-size: 1rem;
    color: #212121;
    text-decoration: underline;
  }
}

.p-side__link.is-active {
  color: #212121;
  text-decoration: underline;
}

.p-single-works__wrapper {
  padding-block: 3.75rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-single-works__wrapper {
    padding-block: 1.875rem 1.25rem;
  }
}

.p-single-works__body {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-single-works__body {
    flex-direction: column;
    gap: 0.9375rem;
  }
}

.p-single-works__title {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.07em;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-single-works__title {
    font-size: 1.375rem;
  }
}

.p-single-works__breadcrumb {
  align-self: flex-end;
}
@media screen and (max-width: 767px) {
  .p-single-works__breadcrumb {
    align-self: flex-start;
  }
}

.p-single-works__img img {
  aspect-ratio: 1440/600;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-single-works__container {
  display: flex;
  justify-content: space-between;
  gap: 3.125rem;
  padding-block: 5rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-single-works__container {
    flex-direction: column;
    gap: 1.875rem;
    padding-block: 2.5rem 3.75rem;
  }
}

.p-single-works__content-1 {
  width: 28.75rem;
}
@media screen and (max-width: 767px) {
  .p-single-works__content-1 {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
}

.p-single-works__name {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .p-single-works__name {
    font-size: 1.125rem;
    order: 1;
  }
}

.p-single-works__description {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.07em;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-single-works__description {
    font-size: 0.875rem;
    order: 2;
  }
}

@media screen and (max-width: 767px) {
  .p-single-works__data {
    order: 4;
  }
}

.p-single-works__data-item {
  margin-top: 1.625rem;
}

.p-single-works__data-label {
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.07em;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-single-works__data-label {
    font-size: 1rem;
  }
}

.p-single-works__team-list {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.p-single-works__team-item {
  padding-block: 0.3125rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(33, 33, 33, 0.5);
}

.p-single-works__team-item span {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-single-works__team-item span {
    width: 100%;
  }
}

.p-single-works__btn {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-single-works__btn {
    margin-top: 3.125rem;
    order: 5;
  }
}

.p-single-works__swiper {
  width: 46.875rem;
}
@media screen and (max-width: 767px) {
  .p-single-works__swiper {
    width: 100%;
    order: 3;
  }
}

.p-single-works__swiper-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-single-works__swiper-wrapper {
    transition-timing-function: linear;
    transition-duration: 0.3s;
    flex-direction: row;
    gap: 0;
  }
}

.p-single-works__swiper-slide {
  width: 100%;
  height: 100%;
  flex-shrink: 1;
}
@media screen and (max-width: 767px) {
  .p-single-works__swiper-slide {
    width: 20rem;
    flex-shrink: 0;
  }
}

.p-single-works__swiper-slide img {
  aspect-ratio: 750/530;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-single-works__swiper-slide img {
    aspect-ratio: 320/260;
  }
}

.p-single {
  padding-block: 3.75rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-single {
    padding-block: 2.5rem 6.25rem;
  }
}

.p-single__wrapper {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-single__wrapper {
    flex-direction: column;
    gap: 0.9375rem;
  }
}

.p-single__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-single__meta {
    gap: 0.5rem;
  }
}

.p-single__time {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .p-single__time {
    gap: 0.375rem;
  }
}

.p-single__title {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.07em;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-single__title {
    font-size: 1.375rem;
    line-height: 1.5;
  }
}

.p-single__breadcrumb {
  align-self: flex-end;
}
@media screen and (max-width: 767px) {
  .p-single__breadcrumb {
    align-self: flex-start;
  }
}

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

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

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

.p-single__texts p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .p-single__texts p {
    font-size: 0.875rem;
  }
}

.p-single__text:not(:first-child) {
  margin-top: 1.25rem;
}

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

.p-sub-mv {
  margin-top: 3.75rem;
}

.p-sub-mv__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-sub-mv__inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.9375rem;
  }
}

.p-sub-mv__inner--underline {
  border-bottom: 1px solid rgba(33, 33, 33, 0.5);
  padding-bottom: 1.25rem;
}

.p-sub-mv__title-jp {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  align-self: flex-end;
}
@media screen and (max-width: 767px) {
  .p-sub-mv__title-jp {
    align-self: center;
    font-size: 12px;
  }
}

.p-sub-mv__title-en {
  font-family: "Raleway", sans-serif;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .p-sub-mv__title-en {
    text-align: center;
    font-size: 2.5rem;
  }
}

.p-sub-mv__breadcrumb {
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.07em;
  align-self: flex-end;
}
@media screen and (max-width: 767px) {
  .p-sub-mv__breadcrumb {
    align-self: center;
    font-size: 10px;
  }
}

.p-sub-mv__img {
  margin-top: 1.25rem;
}

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

.p-title {
  background-color: #FDFDFD;
}

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

.p-title__title {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.p-top-about {
  position: relative;
  overflow: hidden;
}

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

.p-top-about__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-about__inner {
  padding-block: 13.125rem;
  margin-top: 100svh;
}
@media screen and (max-width: 767px) {
  .p-top-about__inner {
    padding-block: 3.75rem;
  }
}

.p-top-about__title {
  color: #FDFDFD;
}

.p-top-about__title::after {
  content: "ABOUT";
  display: block;
  color: #FDFDFD;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.07em;
  padding-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__title::after {
    font-size: 1.875rem;
    padding-top: 0.3125rem;
  }
}

.p-top-about__block {
  color: #FDFDFD;
  display: flex;
  gap: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__block {
    flex-direction: column;
    gap: 2.5rem;
  }
}

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

.p-top-about__catch {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.7;
  letter-spacing: 0.07em;
  width: 50%;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__catch {
    width: 100%;
    font-size: 1.375rem;
    margin-top: 2.5rem;
  }
}

.p-top-blog {
  padding-block: 8.75rem;
  background-color: #FDFDFD;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-blog {
    padding-block: 7.5rem;
  }
}

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

.p-top-blog__title::after {
  content: "BLOG";
  display: block;
  color: #212121;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.07em;
  padding-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-blog__title::after {
    font-size: 1.875rem;
    padding-top: 0.3125rem;
  }
}

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

.p-top-blog__pages {
  display: flex;
  align-items: center;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-blog__pages {
    margin-top: 1.875rem;
  }
}

.p-top-blog__navs {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: 10%;
  flex: 0 1 5rem;
}
@media screen and (max-width: 767px) {
  .p-top-blog__navs {
    gap: 0.625rem;
  }
}

.p-top-blog__nav--prev {
  background-image: url(../images/top/prev.svg);
  width: 2rem;
  height: 2rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  margin-top: 0;
  opacity: 1;
}

.p-top-blog__nav--next {
  background-image: url(../images/top/next.svg);
  width: 2rem;
  height: 2rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  margin-top: 0;
  opacity: 1;
}

.p-top-blog__scrollbar {
  flex: 1;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: relative;
  width: 90%;
}

.p-top-blog__btn {
  margin-top: 6.25rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-blog__btn {
    margin-top: 3.125rem;
  }
}

.p-top-mv__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 3.25rem;
  line-height: 1;
  letter-spacing: 0.07em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #FDFDFD;
  padding-block: 12.5rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-top-mv__title {
    font-size: 1.75rem;
    line-height: 1.5;
    padding-block: 6.25rem 1.25rem;
    flex-direction: column;
  }
}

.p-top-news {
  padding-block: 8.75rem;
  background-color: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .p-top-news {
    padding-block: 7.5rem;
  }
}

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

.p-top-news__title::after {
  content: "NEWS";
  display: block;
  color: #212121;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.07em;
  padding-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__title::after {
    font-size: 1.875rem;
    padding-top: 0.3125rem;
  }
}

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

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

.p-top-service {
  background-color: #F5F5F5;
  padding-block: 9.375rem;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-service {
    padding-block: 7.5rem;
  }
}

.p-top-service__title::after {
  content: "SERVICE";
  display: block;
  color: #212121;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.07em;
  padding-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__title::after {
    font-size: 1.875rem;
    padding-top: 0.3125rem;
  }
}

.p-top-service__list {
  margin-top: 3rem;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-top-service__list {
    flex-direction: column;
    margin-top: 2.5rem;
  }
}

.p-top-service__item {
  border: 0.5px solid #212121;
  padding: 3.25rem 2.5rem;
  background-color: #FDFDFD;
  width: 50%;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-top-service__item {
    width: 100%;
    padding: 1.5625rem 1.25rem;
  }
}

.p-top-service__item--1.is-hover {
  background-image: url("../images/top/service-5.png");
  color: #FDFDFD;
}

.p-top-service__item--2.is-hover {
  background-image: url("../images/top/service-6.png");
  color: #FDFDFD;
}

.p-top-service__item.is-hover .p-top-service__tag {
  border-color: #FDFDFD;
}

.p-top-service__item:nth-child(even) {
  border-left: 0;
}
@media screen and (max-width: 767px) {
  .p-top-service__item:nth-child(even) {
    border-left: 0.5px solid #212121;
    border-top: 0;
  }
}

.p-top-service__name {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.07em;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__name {
    font-size: 1.25rem;
    gap: 0.375rem;
  }
}

.p-top-service__no {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .p-top-service__no {
    font-size: 0.875rem;
  }
}

.p-top-service__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__tags {
    gap: 0.3125rem;
    margin-top: 0.75rem;
  }
}

.p-top-service__tag {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.07em;
  border: 1px solid #212121;
  padding: 0.375rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__tag {
    font-size: 10px;
    padding: 0.3125rem;
  }
}

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

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

.p-top-service__swiper {
  overflow: visible;
  margin-top: 8.75rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__swiper {
    margin-top: 7.5rem;
  }
}

.p-top-service__wrapper {
  transition-timing-function: linear;
  transition-duration: 0.3s;
}

.p-top-service__slide {
  width: 21.25rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-top-service__slide {
    width: 10.625rem;
  }
}

.p-top-service__slide img {
  aspect-ratio: 340/320;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-top-service__slide img {
    aspect-ratio: 170/120;
  }
}

.p-top-voice {
  padding-top: 8.75rem;
  background-color: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .p-top-voice {
    padding-block: 7.5rem 5rem;
  }
}

.p-top-voice__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-voice__wrapper {
    flex-direction: column;
    gap: 2.5rem;
  }
}

.p-top-voice__block {
  flex: 0 1 13.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-voice__block {
    flex: 1 1 auto;
    display: contents;
  }
}

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

.p-top-voice__title::after {
  content: "VOICE";
  display: block;
  color: #212121;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.07em;
  padding-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-voice__title::after {
    font-size: 1.875rem;
    padding-top: 0.3125rem;
  }
}

.p-top-voice__btn {
  margin-top: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-voice__btn {
    margin-top: 0;
    order: 2;
  }
}

.p-top-voice__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-top-voice__cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.875rem;
    order: 1;
  }
}

.p-top-voice__texts {
  white-space: nowrap;
  overflow: hidden;
  margin-top: 6.25rem;
  padding-block: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-voice__texts {
    margin-top: 5rem;
    padding-block: 0.9375rem;
  }
}

.p-top-voice__text {
  color: #ADADAD;
  font-family: "Raleway", sans-serif;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.07em;
  animation: marquee-right-to-left 30s linear infinite;
}
@media screen and (max-width: 767px) {
  .p-top-voice__text {
    font-size: 1.625rem;
  }
}

@keyframes marquee-right-to-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.p-top-works {
  padding-block: 8.75rem;
  background-color: #FDFDFD;
}
@media screen and (max-width: 767px) {
  .p-top-works {
    padding-block: 7.5rem;
  }
}

.p-top-works__title::after {
  content: "WORKS";
  display: block;
  color: #212121;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.07em;
  padding-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-works__title::after {
    font-size: 1.875rem;
    padding-top: 0.3125rem;
  }
}

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

.p-top-works__card:nth-child(even) {
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-top-works__card:nth-child(even) {
    margin-top: 0;
  }
}

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

.p-value {
  padding-block: 2.5rem 5rem;
  border-bottom: 1px solid rgba(33, 33, 33, 0.5);
}
@media screen and (max-width: 767px) {
  .p-value {
    padding-block: 1.875rem 3.125rem;
  }
}

.p-value__title::after {
  content: "VALUE";
  display: block;
  color: #212121;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.07em;
  padding-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-value__title::after {
    font-size: 1.875rem;
    padding-top: 0.3125rem;
  }
}

.p-vision {
  padding-block: 2.5rem 5rem;
  border-bottom: 1px solid rgba(33, 33, 33, 0.5);
}
@media screen and (max-width: 767px) {
  .p-vision {
    padding-block: 1.875rem 3.125rem;
  }
}

.p-vision__title::after {
  content: "VISION";
  display: block;
  color: #212121;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.07em;
  padding-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-vision__title::after {
    font-size: 1.875rem;
    padding-top: 0.3125rem;
  }
}

.p-voice-card__img {
  overflow: hidden;
}

.p-voice-card__link:hover .p-voice-card__img img {
  transform: scale(1.1);
}

.p-voice-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.p-voice-card__meta {
  margin-top: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.p-voice-card__time {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .p-voice-card__time {
    font-size: 10px;
  }
}

.p-voice-card__name {
  font-family: "Raleway", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.07em;
  margin-top: 0.75rem;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .p-voice-card__name {
    font-size: 1.125rem;
  }
}

.p-works-card__img {
  overflow: hidden;
}

.p-works-card__img img {
  aspect-ratio: 600/360;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-works-card__img img {
    aspect-ratio: 320/200;
  }
}

.p-works-card__category {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-works-card__category {
    gap: 0.375rem;
  }
}

.p-works-card__block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-works-card__block {
    margin-top: 0.625rem;
    flex-direction: column;
    gap: 1.125rem;
    align-items: flex-start;
  }
}

.p-works-card__name {
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .p-works-card__name {
    font-size: 1.25rem;
  }
}

.p-works-card.is-hover .p-works-card__img img {
  transform: scale(1.1);
}

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

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