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

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

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

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

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

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

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

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

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 1200px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.2666666667;
  letter-spacing: 0;
  color: #28180a;
}

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

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

@keyframes shootingDown {
  0% {
    clip-path: inset(0% 0% 0% 0%);
  }
  50% {
    clip-path: inset(100% 0% 0% 0%);
  }
  51% {
    clip-path: inset(0% 0% 100% 0%);
  }
  100% {
    clip-path: inset(0% 0% 0% 0%);
  }
}
@keyframes shootingUp {
  0% {
    clip-path: inset(0% 0% 0% 0%);
  }
  50% {
    clip-path: inset(0% 0% 100% 0%);
  }
  51% {
    clip-path: inset(100% 0% 0% 0%);
  }
  100% {
    clip-path: inset(0% 0% 0% 0%);
  }
}
@keyframes shootingBar {
  0% {
    clip-path: inset(0% 0% 0% 0%);
  }
  50% {
    clip-path: inset(0% 0% 0% 100%);
  }
  51% {
    clip-path: inset(0% 100% 0% 0%);
  }
  100% {
    clip-path: inset(0% 0% 0% 0%);
  }
}
.l-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}

.l-page-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 2000;
}

.c-lower-heading {
  position: relative;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 3.75rem;
  line-height: 1.2666666667;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .c-lower-heading {
    margin-left: 3.125rem;
    font-size: 2rem;
    line-height: 1.25;
  }
}
.c-lower-heading::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(100% + 1.5625rem);
  display: inline-block;
  width: 30vw;
  height: 0.0625rem;
  background-color: #de8430;
  animation: shootingBar 2s cubic-bezier(0.5, 0.5, 1, 0.65) infinite forwards;
}
@media screen and (max-width: 767px) {
  .c-lower-heading::before {
    right: calc(100% + 1.25rem);
  }
}

.c-lower-heading.c-lower-heading--center {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-lower-heading.c-lower-heading--center {
    margin-left: unset;
  }
}
.c-lower-heading.c-lower-heading--center::before {
  top: -12.5rem;
  right: 50%;
  transform: translateX(50%);
  width: 0.0625rem;
  height: 11.25rem;
  animation: shootingDown 2s cubic-bezier(0.5, 0.5, 1, 0.65) infinite forwards;
}
@media screen and (max-width: 767px) {
  .c-lower-heading.c-lower-heading--center::before {
    top: -4.375rem;
    right: 50%;
    height: 3.125rem;
  }
}

.c-lower-heading span {
  color: #de8430;
}

.c-page-top {
  display: none;
  padding-top: 0.75rem;
  row-gap: 0.5rem;
  width: 3.125rem;
  height: 3.125rem;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  line-height: 1.5;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
  background-color: #de8430;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-page-top {
    padding-top: 0.5rem;
    row-gap: 0.375rem;
    width: 2.1875rem;
    height: 2.1875rem;
    font-size: 0.75rem;
  }
}
.c-page-top::before {
  content: "";
  display: block;
  margin-inline: auto;
  margin-bottom: 0.125rem;
  width: 100%;
  max-width: 0.9375rem;
  aspect-ratio: 15/9;
  background-image: url(../images/common/page-top-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-page-top::before {
    margin-bottom: 0;
    max-width: 0.625rem;
    aspect-ratio: 10/6;
  }
}
.c-page-top:hover {
  transform: scale(1.2);
}
.c-page-top:hover::before {
  transform: translateY(-0.125rem);
}

.c-top-sub-title {
  display: block;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.5;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-top-sub-title {
    font-size: 0.75rem;
    text-align: left;
  }
}

.c-top-sub-title.c-top-sub-title--left {
  text-align: left;
}

.c-top-title {
  position: relative;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 3.75rem;
  line-height: 1.2666666667;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-top-title {
    font-size: 2.25rem;
    line-height: 1.25;
    text-align: left;
  }
}
.c-top-title::before {
  content: attr(data-title);
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 9.375rem;
  line-height: 1.26;
  color: #f9f6f0;
}
@media screen and (max-width: 767px) {
  .c-top-title::before {
    left: 0;
    transform: translate(0, -50%);
    font-size: 4rem;
    line-height: 1.265625;
  }
}
.c-top-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3.125rem;
  transform: translateX(-50%);
  width: 3.125rem;
  height: 0.0625rem;
  background-color: #de8430;
}
@media screen and (max-width: 767px) {
  .c-top-title::after {
    left: 0;
    bottom: -2.125rem;
    transform: translateX(0);
    width: 1.875rem;
  }
}

.c-top-title.c-top-title--left {
  text-align: left;
}
.c-top-title.c-top-title--left::before {
  left: 0;
  transform: translate(0, -50%);
}
.c-top-title.c-top-title--left::after {
  content: "";
  position: absolute;
  left: 0;
  transform: translateX(0);
}

.c-transition-button {
  display: inline-block;
  position: relative;
  padding: 1rem 4.125rem 0.9375rem 2.0625rem;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.2857142857;
  color: #de8430;
  text-decoration: none;
  text-transform: uppercase;
  outline: 0.0625rem solid #de8430;
  outline-offset: -0.0625rem;
  background-color: #ffffff;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-transition-button {
    padding: 1rem 4.4375rem 1rem 2.5rem;
    font-size: 0.75rem;
    line-height: 1.25;
  }
}
.c-transition-button:hover {
  color: #ffffff;
  background-color: #de8430;
}
.c-transition-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.0625rem;
  transform: translateY(-50%);
  width: 0.8125rem;
  height: 0.25rem;
  background-image: url(../images/common/button-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: right 0.3s;
}
@media screen and (max-width: 767px) {
  .c-transition-button::after {
    width: 0.6875rem;
    right: 2.5rem;
  }
}
.c-transition-button:hover::after {
  right: 1.4375rem;
  background-image: url(../images/common/button-arrow-hover.svg);
}
@media screen and (max-width: 767px) {
  .c-transition-button:hover::after {
    right: 1.875rem;
  }
}

.p-about-company-profile {
  width: 100%;
  max-width: 32.875rem;
}

.p-about-company-profile__list {
  padding-bottom: 0.9375rem;
  padding-left: 1.875rem;
  display: flex;
  line-height: 1.2;
  border-bottom: 1px solid #ebe8e2;
}
@media screen and (max-width: 767px) {
  .p-about-company-profile__list {
    padding-left: unset;
    flex-direction: column;
    align-items: center;
  }
}

.p-about-company-profile__list + .p-about-company-profile__list {
  margin-top: 0.9375rem;
}

.p-about-company-profile__term {
  width: 100%;
  max-width: 6.5625rem;
  flex-shrink: 0;
  font-weight: 700;
  color: #de8430;
}
@media screen and (max-width: 767px) {
  .p-about-company-profile__term {
    max-width: none;
    text-align: center;
  }
}

.p-about-company-profile__description {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-about-company-profile__description {
    margin-top: 0.625rem;
  }
}

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

.p-about-company__deco {
  position: absolute;
  width: 100%;
  z-index: -1;
}

.p-about-company__deco--topLeft {
  top: 0;
  left: 9.25rem;
  max-width: 9.625rem;
  aspect-ratio: 154/191;
  animation: shootingDown 2.5s cubic-bezier(0.5, 0.5, 1, 0.65) infinite forwards;
}
@media screen and (max-width: 767px) {
  .p-about-company__deco--topLeft {
    left: 0;
    max-width: 5.25rem;
    aspect-ratio: 84/82;
  }
}

.p-about-company__deco--topRight {
  top: 0;
  right: 0;
  max-width: 10.5rem;
  aspect-ratio: 168/291;
  animation: shootingUp 2s cubic-bezier(0.5, 0.5, 1, 0.65) infinite forwards;
}
@media screen and (max-width: 767px) {
  .p-about-company__deco--topRight {
    max-width: 3.9375rem;
    aspect-ratio: 63/117;
  }
}

.p-about-company__deco--bottomLeft {
  bottom: 0;
  left: -1.875rem;
  max-width: 9.8125rem;
  aspect-ratio: 157/174;
  animation: shootingUp 3s cubic-bezier(0.5, 0.5, 1, 0.65) 0.2s infinite forwards;
}
@media screen and (max-width: 767px) {
  .p-about-company__deco--bottomLeft {
    bottom: -3.375rem;
    left: 0;
    max-width: 2.1875rem;
    aspect-ratio: 35/89;
  }
}

.p-about-company__deco--bottomRight {
  bottom: -3.125rem;
  right: 0;
  max-width: 9.8125rem;
  aspect-ratio: 157/310;
  animation: shootingDown 3.2s cubic-bezier(0.5, 0.5, 1, 0.65) 0.6s infinite forwards;
}
@media screen and (max-width: 767px) {
  .p-about-company__deco--bottomRight {
    bottom: 0;
    max-width: 6.125rem;
  }
}

.p-about-company__inner {
  margin-inline: auto;
  padding: 6.25rem 1.5625rem;
  width: 100%;
  max-width: 70.625rem;
}
@media screen and (max-width: 767px) {
  .p-about-company__inner {
    padding: 3.125rem 1.25rem;
    max-width: 40rem;
  }
}

.p-about-company__profile {
  margin-top: 3.75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-about-company__profile {
    margin-top: 2.8125rem;
  }
}

.p-about-creative {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-about-creative {
    padding-top: 3.125rem;
  }
}
.p-about-creative::after {
  content: "creative";
  display: inline-block;
  width: 100%;
  position: absolute;
  bottom: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 9.375rem;
  line-height: 0.7;
  color: #f4f4f4;
  text-transform: uppercase;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-about-creative::after {
    bottom: 24%;
    font-size: 4rem;
    text-align: right;
  }
}

.p-about-creative__img {
  position: absolute;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-about-creative__img {
    position: static;
  }
}

.p-about-creative__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-about-creative__img:first-of-type {
  top: 6.25rem;
  left: 0;
  max-width: 26.4375rem;
}
@media screen and (max-width: 767px) {
  .p-about-creative__img:first-of-type {
    max-width: 18.4375rem;
  }
}

.p-about-creative__img:first-of-type img {
  aspect-ratio: 423/334;
}
@media screen and (max-width: 767px) {
  .p-about-creative__img:first-of-type img {
    aspect-ratio: 295/228;
  }
}

.p-about-creative__img:last-of-type {
  bottom: 0;
  right: 0;
  max-width: 30.625rem;
}
@media screen and (max-width: 767px) {
  .p-about-creative__img:last-of-type {
    margin-top: 1.875rem;
    margin-left: auto;
    max-width: 20.3125rem;
  }
}

.p-about-creative__img:last-of-type img {
  aspect-ratio: 490/445;
}
@media screen and (max-width: 767px) {
  .p-about-creative__img:last-of-type img {
    aspect-ratio: 325/212;
  }
}

.p-about-creative__text-wrap {
  margin-inline: auto;
  padding: 12.5rem 1.5625rem 10.625rem;
  width: 100%;
  max-width: 35.8125rem;
}
@media screen and (max-width: 767px) {
  .p-about-creative__text-wrap {
    margin-top: 1.875rem;
    padding: 0 1.25rem;
  }
}

.p-about-creative__lead {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  color: #de8430;
}
@media screen and (max-width: 767px) {
  .p-about-creative__lead {
    font-size: 1.25rem;
  }
}

.p-about-creative__description {
  margin-top: 3.75rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-about-creative__description {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}

.p-about-message-ceo__contents {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-about-message-ceo__contents {
    margin-top: 1.875rem;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: start;
    row-gap: 1.875rem;
  }
}

.p-about-message-ceo__text-wrap {
  width: 100%;
  max-width: 25rem;
}
@media screen and (max-width: 767px) {
  .p-about-message-ceo__text-wrap {
    max-width: 37.5rem;
  }
}

.p-about-message-ceo__title {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.25;
  color: #de8430;
}
@media screen and (max-width: 767px) {
  .p-about-message-ceo__title {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.p-about-message-ceo__message {
  margin-top: 1.875rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-about-message-ceo__message {
    margin-top: 1.5625rem;
    font-size: 0.875rem;
    line-height: 1.8;
  }
}

.p-about-message-ceo__name {
  margin-top: 1.5625rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-about-message-ceo__name {
    margin-top: 1.25rem;
    font-size: 0.875rem;
  }
}

.p-about-message-ceo__img {
  position: relative;
  width: 100%;
  max-width: 33.75rem;
}
@media screen and (max-width: 767px) {
  .p-about-message-ceo__img {
    max-width: 37.5rem;
  }
}
.p-about-message-ceo__img::before {
  content: "";
  position: absolute;
  top: -7.6875rem;
  right: -11.75rem;
  display: inline-block;
  width: 100%;
  max-width: 16.625rem;
  aspect-ratio: 266/212;
  background-image: url(../images/common/about-decoration-dots.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-about-message-ceo__img::before {
    top: -3.5rem;
    right: -3rem;
    max-width: 9.25rem;
    aspect-ratio: 148/90;
  }
}

.p-about-message-ceo__img img {
  width: 100%;
  aspect-ratio: 540/326;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-about-message-vision__grid {
  margin-top: 3.75rem;
  display: grid;
  gap: 4rem 9.375rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .p-about-message-vision__grid {
    margin-top: 1.875rem;
    gap: 1.5625rem 0;
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-about-message-vision__item span {
  display: block;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: #de8430;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-about-message-vision__item span {
    font-size: 0.875rem;
    line-height: 1.2857142857;
  }
}

.p-about-message-vision__title {
  margin-top: 1.25rem;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.2142857143;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-about-message-vision__title {
    margin-top: 0.625rem;
    font-size: 1.25rem;
    line-height: 1.2;
  }
}

.p-about-message-vision__description {
  margin-top: 2.5rem;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-about-message-vision__description {
    margin-top: 1.25rem;
    font-size: 0.875rem;
    line-height: 1.2142857143;
  }
}

.p-about-message {
  position: relative;
  padding: 6.25rem 0;
  overflow: hidden;
  background-image: url(../images/common/about-message-bg-pc.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .p-about-message {
    padding: 3.125rem 0 7.0625rem;
    background-image: url(../images/common/about-message-bg-sp.webp);
  }
}
.p-about-message::after {
  content: "message";
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 9.375rem;
  line-height: 0.72;
  color: #e8e4e0;
  text-align: right;
  text-transform: uppercase;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-about-message::after {
    bottom: 3.125rem;
    font-size: 4rem;
  }
}

.p-about-message__inner {
  margin-inline: auto;
  padding: 0 1.5625rem;
  width: 100%;
  max-width: 70.625rem;
}
@media screen and (max-width: 767px) {
  .p-about-message__inner {
    padding: 0 1.25rem;
    max-width: 40rem;
  }
}

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

.p-about-parallax {
  width: 100%;
  height: 21.875rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-about-parallax {
    height: 6.5625rem;
  }
}

.p-about-parallax img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-footer {
  position: relative;
  padding: 6.25rem 0 2.5rem;
  background-color: #623a14;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding: 3.125rem 0 1.25rem;
  }
}

.p-footer__inner {
  margin-inline: auto;
  padding: 0 1.5625rem;
  width: 100%;
  max-width: 70.625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__inner {
    padding: 0 1rem;
  }
}

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

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

.p-footer__address {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .p-footer__address {
    font-size: 0.875rem;
    line-height: 1.2857142857;
  }
}

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

.p-footer__btn {
  width: 100%;
  max-width: 8.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  padding: 0.5rem 0.9375rem;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #ffffff;
  background-color: #de8430;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-footer__btn {
    margin-inline: auto;
    -moz-column-gap: 0.625rem;
         column-gap: 0.625rem;
    padding: 0.625rem 0.9375rem;
    font-size: 0.75rem;
    line-height: 1.25;
  }
}
.p-footer__btn::after {
  content: "";
  width: 100%;
  max-width: 0.6875rem;
  aspect-ratio: 1/1;
  background-image: url(../images/common/external-link-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-footer__btn::after {
    width: 0.625rem;
  }
}

.p-footer__map-wrap {
  width: 100%;
  max-width: 39.375rem;
}
@media screen and (max-width: 767px) {
  .p-footer__map-wrap {
    height: 18.75rem;
  }
}

.p-footer__map {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 47.5%;
}

.p-footer__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

.p-footer__logo {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.25;
  color: #ffffff;
  text-transform: uppercase;
}

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

.p-footer__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-footer__nav-item:not(:first-of-type) {
  border-left: 0.0625rem solid #ffffff;
}

.p-footer__nav-item a {
  padding: 0 0.625rem;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  line-height: 1.2666666667;
  color: #ffffff;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item a {
    font-size: 0.875rem;
    line-height: 1.2857142857;
  }
}

.p-footer__copy-right {
  display: block;
  margin-top: 3.75rem;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 0.625rem;
  line-height: 1.3;
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-footer__copy-right {
    margin-top: 3.125rem;
  }
}

.p-header {
  height: 4.375rem;
  transform: translateY(-4.375rem);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-header {
    height: 2.5rem;
  }
}

.p-header.is-scroll {
  background-color: #ffffff;
}

.p-header__inner {
  padding: 0 3.125rem;
  height: inherit;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding: 0 0 0 0.9375rem;
  }
}

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

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

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

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

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

.p-header__nav-item {
  height: inherit;
}

.p-header__nav-item.p-header__nav-item--contact {
  margin-left: 0.9375rem;
  display: flex;
  align-items: center;
}

.p-header__nav-item a {
  position: relative;
  padding: 0 0.9375rem;
  height: inherit;
  display: flex;
  align-items: center;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.2666666667;
  color: #28180a;
  text-transform: uppercase;
}

.p-header__nav-item a::before {
  content: "";
  position: absolute;
  bottom: 0.9375rem;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #de8430;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.6s cubic-bezier(0.6, 0, 0, 1);
}

.p-header__nav-item a:hover::before {
  transform: scale(1, 1);
  transform-origin: left top;
}

.p-header__nav-item.p-header__nav-item--contact a {
  padding: 0.5rem 1.25rem;
  position: relative;
  height: initial;
  color: #ffffff;
  background-color: #de8430;
}
.p-header__nav-item.p-header__nav-item--contact a::before {
  display: none;
}
.p-header__nav-item.p-header__nav-item--contact a::after {
  content: "";
  margin-left: 0.5rem;
  width: 0.6875rem;
  height: 0.75rem;
  display: inline-block;
  background-image: url(../images/common/external-link-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.p-header__hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    display: block;
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    position: relative;
    z-index: 999;
    width: 2.5rem;
    height: inherit;
    background-color: #de8430;
    cursor: pointer;
    transition: 0.3s;
  }
}
.p-header__hamburger::before {
  content: "CLOSE";
  display: none;
  position: absolute;
  top: 50%;
  left: -3.125rem;
  transform: translateY(-50%);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.2857142857;
  letter-spacing: 0.05em;
  color: #ffffff;
  transition: 0.3s;
}

.p-header__hamburger.is-open {
  background-color: transparent;
}
.p-header__hamburger.is-open::before {
  display: block;
}
.p-header__hamburger.is-open:hover::before {
  color: #de8430;
}

.p-header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 0.9375rem;
  height: 1px;
  background-color: #ffffff;
  transition: transform 0.5s, background-color 0.3s;
}

.p-header__hamburger.is-open:hover span {
  background-color: #de8430;
}

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

.p-header__hamburger span:nth-of-type(2) {
  top: 0;
  clip-path: inset(0% 0.1875rem 0% 0%);
}

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

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

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

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

.p-header__drawer {
  padding: 11.25rem 0;
  position: absolute;
  z-index: 900;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100dvh;
  background-color: rgba(98, 58, 20, 0.95);
  overflow-y: scroll;
  scrollbar-width: none;
  transition: 0.6s;
}

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

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

.p-header__drawer-list {
  margin-inline: auto;
}

.p-header__drawer-item a {
  padding: 0.9375rem 0 0.9375rem 3.125rem;
  display: block;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-transform: uppercase;
  transition: 0.3s;
}
.p-header__drawer-item a:hover {
  color: #de8430;
}

.p-header__drawer-item.p-header__drawer-item--contact a::after {
  content: "";
  margin-bottom: 0.375rem;
  margin-left: 0.9375rem;
  width: 100%;
  max-width: 0.9375rem;
  aspect-ratio: 1/1;
  display: inline-block;
  background-image: url(../images/common/external-link-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.p-header__drawer-copy-right {
  position: absolute;
  bottom: 3.125rem;
  left: 3.25rem;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 0.625rem;
  line-height: 1.3;
  color: #ffffff;
}

.p-mv {
  position: relative;
  height: 100svh;
  min-height: 25rem;
}

@media screen and (max-width: 767px) {
  .p-mv.p-mv--lower {
    height: 34.375rem;
  }
}

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

.p-mv__title-wrap {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: calc(10% - min(50vw, 5.3125rem));
  transform: translateY(-30%);
  width: 100%;
  max-width: 35.625rem;
}
@media screen and (max-width: 767px) {
  .p-mv__title-wrap {
    padding: 0 1.25rem;
    left: 50%;
    transform: translate(-50%, 20%);
    max-width: 23.4375rem;
  }
}

@media screen and (max-width: 767px) {
  .p-mv__title-wrap.p-mv__title-wrap--lower {
    top: unset;
    left: unset;
    transform: unset;
    bottom: 4.375rem;
  }
}

.p-mv__main-title {
  clip-path: inset(0% 100% 0% 0%);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 8rem;
  line-height: 1.2578125;
  letter-spacing: 0.03em;
  color: #28180a;
}
@media screen and (max-width: 767px) {
  .p-mv__main-title {
    font-size: 3.125rem;
    line-height: 1.26;
  }
}

.p-mv__title-wrap--lower .p-mv__main-title {
  text-transform: uppercase;
}

.p-mv__main-title span {
  display: block;
}

.p-mv__main-title span:nth-child(2) {
  text-align: right;
}

.p-mv__sub-title {
  clip-path: inset(0% 100% 0% 0%);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.8;
  letter-spacing: 0.2em;
  color: #28180a;
}
@media screen and (max-width: 767px) {
  .p-mv__sub-title {
    font-size: 0.9375rem;
  }
}

.p-mv__img {
  opacity: 0;
}

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

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

.p-top-about {
  position: relative;
  padding-top: 6.25rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-about {
    padding: 3.125rem 0;
  }
}
.p-top-about::before {
  content: "";
  position: absolute;
  top: -1.25rem;
  left: -3.4375rem;
  display: block;
  width: 100%;
  max-width: 16.625rem;
  aspect-ratio: 266/211.81;
  background-image: url(../images/common/top-decoration-dots.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .p-top-about::before {
    display: none;
  }
}

.p-top-about__inner {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__inner {
    flex-direction: column;
    align-items: start;
  }
}

@media screen and (max-width: 767px) {
  .p-top-about__img {
    margin-top: 2.8125rem;
    order: 2;
    padding-right: 1.25rem;
  }
}

.p-top-about__img img {
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

.p-top-about__contents {
  padding-right: 9.375rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__contents {
    display: contents;
  }
}

@media screen and (max-width: 767px) {
  .p-top-about__title {
    padding: 0 1.25rem;
    order: 1;
  }
}

.p-top-about__content {
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__content {
    margin-top: 1.25rem;
    margin-inline: auto;
    padding: 0 1.25rem;
    order: 3;
  }
}

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

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

.p-top-faq-list {
  padding: 0 1.5625rem;
  width: 100%;
  max-width: 53.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-faq-list {
    padding: 0 1.25rem;
  }
}

.p-top-faq-list__item {
  box-shadow: 0.0625rem 0.0625rem 1.25rem 0 rgba(68, 40, 15, 0.05);
}

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

.p-top-faq-list__item-question {
  padding: 0.5rem 3.75rem 0.5rem 5rem;
  position: relative;
  background-color: #de8430;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.2222222222;
  color: #ffffff;
  text-indent: -2.5rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-top-faq-list__item-question {
    padding: 0.8125rem 2.5rem 0.8125rem 1.875rem;
    font-size: 0.875rem;
    line-height: 1.2142857143;
    text-indent: -1.25rem;
  }
}

.p-top-faq-list__item-question::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 0.9375rem;
  height: 0.5rem;
  background-image: url(../images/common/accordion-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-top-faq-list__item-question::before {
    right: 0.625rem;
    width: 0.75rem;
    height: 0.4375rem;
  }
}

.p-top-faq-list__item-question.is-open::before {
  transform: translateY(-50%) rotate(180deg);
}

.p-top-faq-list__item-question span {
  margin-right: 1.25rem;
  font-family: "Outfit", sans-serif;
  line-height: 1.2777777778;
}
@media screen and (max-width: 767px) {
  .p-top-faq-list__item-question span {
    margin-right: 0.3125rem;
    line-height: 1.2857142857;
  }
}

.p-top-faq-list__item-answer {
  padding: 0.875rem 2.5rem 0.875rem 5rem;
  display: none;
  line-height: 1.5;
  color: #333333;
  text-indent: -2.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-faq-list__item-answer {
    padding: 0.75rem 0.9375rem 0.75rem 1.875rem;
    font-size: 0.8125rem;
    text-indent: -1.25rem;
  }
}

.p-top-faq-list__item-answer span {
  margin-right: 1.25rem;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.2777777778;
  color: #de8430;
}
@media screen and (max-width: 767px) {
  .p-top-faq-list__item-answer span {
    margin-right: 0.3125rem;
    font-size: 0.875rem;
    line-height: 1.2857142857;
  }
}

.p-top-faq {
  position: relative;
  padding: 14rem 0 6.25rem;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-faq {
    padding: 7.8125rem 0 3.125rem;
  }
}

.p-top-faq__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  width: 100%;
}

.p-top-faq__bg img {
  width: 100%;
  aspect-ratio: 1440/436;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-top-faq__bg img {
    aspect-ratio: 375/200;
  }
}

.p-top-faq__inner {
  position: relative;
  margin-inline: auto;
  padding: 0 1.5625rem;
  width: 100%;
  max-width: 74.375rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-top-faq__inner {
    padding: 0 1.25rem;
    max-width: 37.5rem;
  }
}

.p-top-faq__title {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .p-top-faq__title {
    left: 2.5rem;
    transform: translate(0, -50%);
  }
}

.p-top-faq__list-wrap {
  padding: 7.9375rem 0 3.75rem;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-top-faq__list-wrap {
    padding: 4.5625rem 0 1.25rem;
  }
}

.p-top-faq__list {
  margin-inline: auto;
}

.p-top-service-list__item {
  position: relative;
  display: flex;
  align-items: center;
  -moz-column-gap: 1.875rem;
       column-gap: 1.875rem;
  padding: 2.9375rem 0;
}
@media screen and (max-width: 767px) {
  .p-top-service-list__item {
    flex-direction: column;
    align-items: start;
    -moz-column-gap: 0;
         column-gap: 0;
    padding: 1.875rem 0 3.5rem;
  }
}
.p-top-service-list__item::before {
  content: "";
  margin-left: calc(50% - 50vw);
  position: absolute;
  top: 0;
  width: 100vw;
  height: 100%;
  background-color: #de8430;
  clip-path: polygon(17% 0, 100% 0%, 100% 100%, 11% 100%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top-service-list__item::before {
    clip-path: polygon(26% 0, 100% 0%, 100% 100%, 0% 100%);
  }
}

.p-top-service-list__item + .p-top-service-list__item {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-service-list__item + .p-top-service-list__item {
    margin-top: 1.5625rem;
  }
}

.p-top-service-list__item:nth-of-type(even) {
  flex-direction: row-reverse;
  margin-left: calc(50% - 50vw);
  margin-right: unset;
}
@media screen and (max-width: 767px) {
  .p-top-service-list__item:nth-of-type(even) {
    flex-direction: column;
    align-items: end;
    margin-left: unset;
  }
}
.p-top-service-list__item:nth-of-type(even)::before {
  content: "";
  margin-right: calc(50% - 50vw);
  clip-path: polygon(0 0, 93% 0, 88% 100%, 0 100%);
}
@media screen and (max-width: 767px) {
  .p-top-service-list__item:nth-of-type(even)::before {
    clip-path: polygon(0 0, 100% 0, 72% 100%, 0 100%);
  }
}

.p-top-service-list__item:nth-child(2n)::before {
  background-color: #de9830;
}

.p-top-service-list__item:nth-child(3n)::before {
  background-color: #dead30;
}

.p-top-service-list__item-img {
  width: 100%;
  max-width: 37.5rem;
  height: 18.75rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-service-list__item-img {
    margin-left: calc(50% - 50vw);
    height: 12.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top-service-list__item:nth-of-type(even) .p-top-service-list__item-img {
    margin-right: calc(50% - 50vw);
  }
}

.p-top-service-list__item-img img {
  height: 140%;
  aspect-ratio: 600/298;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-top-service-list__item-img img {
    aspect-ratio: 335/200;
  }
}

.p-top-service-list__item-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.24375rem;
}

.p-top-service-list__item-number,
.p-top-service-list__item-word {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #ffffff;
}

.p-top-service-list__item-number {
  letter-spacing: 0.03em;
}

.p-top-service-list__item-line {
  display: block;
  width: 0.0625rem;
  height: 9.375rem;
  background-color: #ffffff;
}

.p-top-service-list__item-word {
  writing-mode: vertical-rl;
}

.p-top-service-list__item-content {
  width: 100%;
  max-width: 28.4375rem;
}
@media screen and (max-width: 767px) {
  .p-top-service-list__item-content {
    margin-top: 1.5625rem;
    margin-left: auto;
    padding-left: 2.3125rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top-service-list__item:nth-of-type(even) .p-top-service-list__item-content {
    margin-left: unset;
    margin-right: auto;
    padding-left: unset;
    padding-right: 5.625rem;
  }
}

.p-top-service-list__item-title {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.25;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-top-service-list__item-title {
    font-size: 1.25rem;
    line-height: 1.25;
  }
}

.p-top-service-list__item-sub-title {
  margin-top: 0.625rem;
  font-size: 0.8125rem;
  line-height: 1.2307692308;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-top-service-list__item-sub-title {
    font-size: 0.75rem;
    line-height: 1.1666666667;
  }
}

.p-top-service-list__item-text {
  margin-top: 1.875rem;
  line-height: 1.5;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-top-service-list__item-text {
    margin-top: 1.25rem;
    font-size: 0.875rem;
  }
}

.p-top-service {
  overflow-x: hidden;
  padding: 6.25rem 0;
}
@media screen and (max-width: 767px) {
  .p-top-service {
    padding: 3.125rem 0;
  }
}

.p-top-service__inner {
  margin-inline: auto;
  padding-inline: 1.5625rem;
  max-width: 74.375rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top-service__inner {
    padding-inline: 1.25rem;
    max-width: 37.5rem;
  }
}

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

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

.p-top-works__deco {
  position: absolute;
  width: 100%;
  z-index: -1;
}

.p-top-works__deco--topLeft {
  top: 0;
  left: 0;
  max-width: 9.625rem;
  aspect-ratio: 154/191;
  animation: shootingDown 2.5s cubic-bezier(0.5, 0.5, 1, 0.65) infinite forwards;
}

.p-top-works__deco--topRight {
  top: 0;
  right: 0;
  max-width: 10.5rem;
  aspect-ratio: 168/291;
  animation: shootingUp 2s cubic-bezier(0.5, 0.5, 1, 0.65) infinite forwards;
}
@media screen and (max-width: 767px) {
  .p-top-works__deco--topRight {
    max-width: 5.6875rem;
    aspect-ratio: 91/114;
  }
}

.p-top-works__deco--bottomLeft {
  bottom: 0;
  left: 0;
  max-width: 9.8125rem;
  aspect-ratio: 157/174;
  animation: shootingUp 3s cubic-bezier(0.5, 0.5, 1, 0.65) 0.2s infinite forwards;
}
@media screen and (max-width: 767px) {
  .p-top-works__deco--bottomLeft {
    max-width: 4.875rem;
    aspect-ratio: 78/108;
  }
}

.p-top-works__deco--bottomRight {
  bottom: 0;
  right: 0;
  max-width: 14.75rem;
  aspect-ratio: 236/392;
  animation: shootingDown 3.2s cubic-bezier(0.5, 0.5, 1, 0.65) 0.6s infinite forwards;
}

.p-top-works__inner {
  margin-inline: auto;
  padding: 6.25rem 1.5625rem;
  width: 100%;
  max-width: 74.375rem;
}
@media screen and (max-width: 767px) {
  .p-top-works__inner {
    padding: 3.125rem 1.25rem;
    max-width: 40rem;
  }
}

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

.p-top-works__message {
  width: 100%;
  max-width: 33.75rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-top-works__message {
    font-size: 0.875rem;
  }
}

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

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

.p-works-list {
  display: grid;
  -moz-column-gap: 1.875rem;
       column-gap: 1.875rem;
  row-gap: 3.75rem;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .p-works-list {
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 1.5625rem;
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-works-list__item {
  display: block;
  height: 100%;
  background-color: #ffffff;
  box-shadow: 0 0 1.25rem 0 rgba(0, 0, 0, 0.08);
}

.p-works-list__item-img {
  width: 100%;
  overflow: hidden;
}

.p-works-list__item-img img {
  width: 100%;
  aspect-ratio: 360/186;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.6s;
}
@media screen and (max-width: 767px) {
  .p-works-list__item-img img {
    aspect-ratio: 335/173;
  }
}

.p-works-list__item:hover .p-works-list__item-img img {
  transform: scale(1.1);
}

.p-works-list__item-content {
  padding: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-works-list__item-content {
    padding: 1.625rem 1.75rem;
  }
}

.p-works-list__item-date {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #aaaaaa;
}
@media screen and (max-width: 767px) {
  .p-works-list__item-date {
    font-size: 0.8125rem;
  }
}

.p-works-list__item-title {
  margin-top: 0.625rem;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-works-list__item-title {
    font-size: 0.9375rem;
  }
}

.p-works-list__item-text {
  margin-top: 0.9375rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-works-list__item-text {
    font-size: 0.875rem;
  }
}

.p-works {
  padding: 6.25rem 0;
}
@media screen and (max-width: 767px) {
  .p-works {
    padding: 3.125rem 0 3.75rem;
  }
}

.p-works__inner {
  margin-inline: auto;
  padding: 0 1.5625rem;
  width: 100%;
  max-width: 74.375rem;
}
@media screen and (max-width: 767px) {
  .p-works__inner {
    padding: 0 1.25rem;
    max-width: 40rem;
  }
}

.p-works__intro {
  display: flex;
  align-items: center;
  gap: 0 6.375rem;
}
@media screen and (max-width: 767px) {
  .p-works__intro {
    flex-direction: column;
    align-items: start;
    gap: 1.875rem 0;
  }
}

.p-works__description {
  font-size: 0.875rem;
  line-height: 1.5;
}

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

@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=style.css.map */
