@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 1250px) {
  html {
    font-size: 1.28vw;
  }
}
@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;
  overflow-x: hidden;
}

@media screen and (max-width: 767px) {
  a,
  button {
    -webkit-transition: 0.3s;
    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 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

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

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

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

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

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

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

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

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

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1250px;
  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: 31.25rem;
  }
}

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

.l-pb {
  padding-block: 7.5rem;
}
@media screen and (max-width: 767px) {
  .l-pb {
    padding-block: 3.75rem;
  }
}

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

.c-btn {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.07em;
  padding: 1.25rem 1.5625rem;
  max-width: 12.5rem;
  text-align: center;
  border: 1px solid #212121;
  -webkit-transform: transition(all, 0.3s);
          transform: transition(all, 0.3s);
}

.c-btn:hover {
  opacity: 0.7;
}

.c-hidden {
  overflow-x: hidden;
}

.c-loading {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.c-loading__logo {
  opacity: 0;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease;
  width: 12.5rem;
  height: auto;
}

.c-loading__message {
  margin-top: 1rem;
  font-size: 1rem;
  color: #212121;
}

.c-loading--active .c-loading__logo {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.c-text {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .c-text {
    font-size: 1rem;
  }
}

.c-title {
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .c-title {
    font-size: 2rem;
  }
}

.p-content-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3.75rem;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-content-1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.9375rem;
    margin-top: 1.25rem;
  }
}

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

.p-content-1__body {
  width: 37.5rem;
}
@media screen and (max-width: 767px) {
  .p-content-1__body {
    width: 100%;
  }
}

.p-content-1__lead {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .p-content-1__lead {
    font-size: 1.5rem;
  }
}

.p-content-1__img {
  width: 31.25rem;
}
@media screen and (max-width: 767px) {
  .p-content-1__img {
    width: 100%;
  }
}

.p-content-1__img img {
  aspect-ratio: 540/400;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-content-1__img img {
    aspect-ratio: 540/360;
  }
}

.p-content-1__movie {
  width: 31.25rem;
}
@media screen and (max-width: 767px) {
  .p-content-1__movie {
    width: 100%;
  }
}

.p-content-1__movie video {
  aspect-ratio: 540/400;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-content-1__movie video {
    aspect-ratio: 540/360;
  }
}

.p-images {
  width: 100%;
}

.p-images__swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.p-images__swiper-slide {
  width: 25rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-images__swiper-slide {
    width: 22.5rem;
  }
}

.p-images__swiper-slide img {
  aspect-ratio: 400/280;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-images__swiper-slide img {
    aspect-ratio: 360/240;
  }
}

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

.p-content-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.75rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-content-3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.875rem;
  }
}

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

.p-content-3__table {
  width: 100%;
}

.p-content-3__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.875rem;
  border-bottom: 1px solid #212121;
  padding-bottom: 0.625rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-content-3__row {
    font-size: 1.25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0.625rem;
    gap: 0.625rem;
  }
}

.p-content-3__th {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.07em;
  text-align: left;
  display: block;
  width: 25%;
}
@media screen and (max-width: 767px) {
  .p-content-3__th {
    font-size: 1.25rem;
    width: 100%;
  }
}

.p-content-3__td {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.07em;
  text-align: left;
  display: block;
  width: 75%;
}
@media screen and (max-width: 767px) {
  .p-content-3__td {
    font-size: 1.25rem;
    width: 100%;
  }
}

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

.p-content-3__iframe {
  width: 100%;
}

.p-contact {
  background-color: #212121;
  color: #fdfdfd;
}

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

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

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

.p-contact__btn .c-btn {
  border: 1px solid #fdfdfd;
}

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

.p-footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-footer__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-footer__logo-link img {
  width: 12.5rem;
  height: auto;
}

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

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

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

.p-footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-footer__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: left;
  }
}

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

.p-group__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-group__list {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1.875rem;
  }
}
@media screen and (max-width: 499px) {
  .p-group__list {
    grid-template-columns: 1fr;
    margin-top: 1.25rem;
  }
}

.p-group__item {
  border: 1px solid #212121;
  padding: 1.5625rem 1.25rem;
}

.p-group__item-link {
  display: block;
}

.p-group__item-img img {
  width: 100%;
  height: auto;
}

.p-group__item-title {
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.07em;
  text-align: center;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-group__item-title {
    font-size: 1.25rem;
  }
}

.p-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 6.25rem;
  padding: 1.25rem 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;
    height: 4.375rem;
  }
}

.p-header__logo-link img {
  width: 12.5rem;
  height: auto;
}

@media screen and (max-width: 767px) {
  .p-header__hamburger {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 100;
    height: inherit;
    width: 4rem;
  }
}

@media screen and (max-width: 767px) {
  .p-header__hamburger span {
    width: 1.5rem;
    height: 2px;
    background-color: #212121;
    display: block;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  .p-header__hamburger span:nth-child(2) {
    margin-top: 5px;
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 767px) {
  .p-header__hamburger.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 6px;
  }
}

@media screen and (max-width: 767px) {
  .p-header__hamburger.open span:nth-child(2) {
    margin-top: 5px;
    margin-bottom: 5px;
    opacity: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-header__hamburger.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: -8px;
  }
}

@media screen and (max-width: 767px) {
  .p-header__nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background-color: #fdfdfd;
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    z-index: 10;
  }
}

.p-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-header__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%;
    padding: 6.25rem 3.125rem;
    gap: 1.875rem;
  }
}

.p-header__nav-item {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.07em;
}

.p-message {
  background-color: #e5e5e5;
}

.p-mv {
  position: relative;
}

.p-mv__title {
  color: #FDFDFD;
  text-shadow: 2px 2px 5px #212121;
  font-size: 4.375rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.07em;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  padding-left: 6.25rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-mv__title {
    font-size: 2.625rem;
    padding-left: 1.25rem;
  }
}
@media screen and (max-width: 499px) {
  .p-mv__title {
    font-size: 2.25rem;
    padding-left: 0.625rem;
  }
}

.p-mv__swiper-slide {
  overflow: hidden;
  position: relative;
}

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

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
.swiper-slide-active .swiper-img,
.swiper-slide-duplicate-active .swiper-img,
.swiper-slide-prev .swiper-img {
  -webkit-animation: zoomUp 7s linear 0s normal both;
          animation: zoomUp 7s linear 0s normal both;
}

.p-content-4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-content-4 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.25rem;
  }
}

.p-content-4__body {
  width: 37.5rem;
}
@media screen and (max-width: 767px) {
  .p-content-4__body {
    width: 100%;
  }
}

.p-content-4__title {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.07em;
  border-bottom: 1px solid #212121;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-content-4__title {
    font-size: 1.75rem;
  }
}

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

.p-content-4__img {
  width: 31.25rem;
}
@media screen and (max-width: 767px) {
  .p-content-4__img {
    width: 100%;
  }
}

.p-content-4__img img {
  aspect-ratio: 540/400;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-content-4__img img {
    aspect-ratio: 540/360;
  }
}

.p-content-4__movie {
  width: 31.25rem;
}
@media screen and (max-width: 767px) {
  .p-content-4__movie {
    width: 100%;
  }
}

.p-content-4__movie video {
  aspect-ratio: 540/400;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-content-4__movie video {
    aspect-ratio: 540/360;
  }
}

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

.p-content-5__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5rem;
  padding-block: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-content-5__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.9375rem;
    padding-block: 1.25rem;
  }
}

.p-content-5__item:not(:first-child) {
  border-top: 1px solid #212121;
}

.p-content-5__item-title {
  font-size: 2.125rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.07em;
  width: 27.5rem;
}
@media screen and (max-width: 767px) {
  .p-content-5__item-title {
    font-size: 1.5rem;
    width: 100%;
  }
}

.p-content-5__item-text {
  width: 42.5rem;
}
@media screen and (max-width: 767px) {
  .p-content-5__item-text {
    width: 100%;
  }
}

.p-bg {
  background-color: #e5e5e5;
}

.p-service {
  background-color: #e5e5e5;
}

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

.p-content-2__img img {
  aspect-ratio: 580/640;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-content-2__img img {
    aspect-ratio: 290/320;
  }
}

.p-content-2__movie video {
  aspect-ratio: 580/640;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-content-2__movie video {
    aspect-ratio: 290/320;
  }
}

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

.p-content-2__title {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.07em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-content-2__title {
    font-size: 1.5rem;
  }
}

.p-content-2__text {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-content-2__text {
    margin-top: 0.625rem;
  }
}

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

.p-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 320/240;
  -o-object-fit: cover;
     object-fit: cover;
}

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

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

.p-sub-mv__img {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-sub-mv__img {
    margin-top: 1.25rem;
  }
}

.p-sub-mv__img img {
  aspect-ratio: 1440/500;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-works {
  background-color: #e5e5e5;
}

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

.p-card__img img {
  aspect-ratio: 380/260;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-card__meta {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.07em;
  gap: 0.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-card__meta {
    font-size: 0.875rem;
    margin-top: 1.25rem;
  }
}

.p-card__category {
  padding: 0.3125rem;
  border: 1px solid #212121;
  display: inline-block;
}

.p-card__date {
  display: inline-block;
}

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

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

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

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