@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3913043478vw;
  }
}
@media (min-width: 1150px) {
  html {
    font-size: 100%;
  }
}

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

@media screen and (min-width: 768px) {
  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-blog {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .l-blog {
    margin-top: 10.875rem;
  }
}

.l-contact {
  background-color: #3D3D3D;
  padding-top: 1.4375rem;
  padding-bottom: 4rem;
  margin-top: 8.0625rem;
}
@media screen and (min-width: 768px) {
  .l-contact {
    padding-top: 4.625rem;
    padding-bottom: 9.3125rem;
    margin-top: 9.375rem;
  }
}

.l-content {
  margin-top: 6.3125rem;
}
@media screen and (min-width: 768px) {
  .l-content {
    margin-top: 10.5625rem;
  }
}

.l-footer {
  padding-top: 2.375rem;
  padding-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding-top: 1.3125rem;
    padding-right: 2rem;
    padding-bottom: 1.625rem;
    padding-left: 2rem;
  }
}

.l-inner {
  width: 100%;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1150px;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

.l-overview {
  padding-top: 4.5rem;
}
@media screen and (min-width: 768px) {
  .l-overview {
    padding-top: 10.9375rem;
  }
}

.l-recent {
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .l-recent {
    margin-top: 2rem;
  }
}

.l-single-blog {
  margin-top: 4.125rem;
}

.l-works {
  margin-top: 4.4375rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .l-works {
    margin-top: 10.5625rem;
  }
}

.c-breadcrumb {
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.01em;
  line-height: 1;
  margin-top: 1rem;
  margin-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb {
    margin-left: 5.625rem;
  }
}

.c-btn {
  position: relative;
  display: inline-block;
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  line-height: 1;
  background-color: #333;
  text-align: center;
  border: 1px solid #FFF;
  padding: 0.875rem 5rem 0.875rem 5rem;
  min-width: 20.9375rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .c-btn {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    padding: 1.3125rem 6.3125rem;
    min-width: 22.5rem;
  }
}

.c-btn span {
  position: relative;
  z-index: 299;
}

.c-btn::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #FFF;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 2;
}

.c-btn:hover span {
  color: #333;
  opacity: 1;
}

.c-btn:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.c-btn.c-btn__sm {
  position: relative;
  display: inline-block;
  font-size: 1.25rem;
  letter-spacing: 0.07em;
  line-height: 1;
  background-color: #333;
  text-align: center;
  border: 1px solid #FFF;
  padding: 1rem 6.5625rem 0.9375rem 6.5625rem;
  min-width: 20.9375rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .c-btn.c-btn__sm {
    color: #000;
    font-weight: 500;
    line-height: 1;
    background-color: #FFF;
    padding: 0.375rem 0.25rem 0.375rem 0.3125rem;
    min-width: 8.375rem;
  }
}

.c-btn.c-btn__sm span {
  position: relative;
  z-index: 300;
}

.c-btn.c-btn__sm::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #FFF;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .c-btn.c-btn__sm::before {
    background-color: #333;
  }
}

.c-btn.c-btn__sm:hover span {
  color: #333;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .c-btn.c-btn__sm:hover span {
    color: #FFF;
  }
}

.c-btn.c-btn__sm:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.c-card1 {
  display: block;
}
@media screen and (min-width: 768px) {
  .c-card1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.c-card1__content {
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -1.375rem;
  left: -0.125rem;
}
@media screen and (min-width: 768px) {
  .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -1.9375rem;
    left: -1.25rem;
  }
}

.swiper-pagination-bullet {
  background-color: #F9F871;
}

.c-card1__img {
  aspect-ratio: 375/261;
}
@media screen and (min-width: 768px) {
  .c-card1__img {
    width: 34.8125rem;
    aspect-ratio: 557/389;
  }
}

.c-card1__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-card1__body {
  max-width: 37.5rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.c-card1__title {
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-card1__title {
    font-size: 1.5625rem;
    text-align: left;
  }
}

.c-card1__text {
  font-size: 1rem;
  letter-spacing: 0.11em;
  line-height: 1.4375;
  margin-top: 1.875rem;
  min-height: 10.75rem;
}
@media screen and (min-width: 768px) {
  .c-card1__text {
    letter-spacing: 0.05em;
    line-height: 2.1875;
    min-height: 8.75rem;
    margin-top: 3rem;
  }
}

.c-card1__btn {
  text-align: center;
  margin-top: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .c-card1__btn {
    text-align: left;
    margin-top: 3rem;
  }
}

.c-card2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  position: relative;
  background-color: #FFF;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.c-card2:first-child::before {
  position: absolute;
  content: "new";
  font-size: 1rem;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  top: -0.8125rem;
  left: -0.9375rem;
  background-color: #FFBA6A;
  border-radius: 50%;
}

.c-card2:hover {
  opacity: 1;
  background-color: #333;
}
.c-card2:hover .c-card2__body {
  background-color: #333;
}
.c-card2:hover .c-card2__title {
  color: #FFF;
}
.c-card2:hover .c-card2__text {
  color: #FFF;
}
.c-card2:hover .c-card2__time {
  color: #FFF;
}

.c-card2__img {
  aspect-ratio: 335/223;
}
@media screen and (min-width: 768px) {
  .c-card2__img {
    aspect-ratio: 345/233;
  }
}

.c-card2__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-card2__body {
  padding: 0.25rem 1.5rem 0 1.375rem;
  background-color: #FFF;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .c-card2__body {
    padding: 0.5rem 1.4375rem 1.0625rem;
  }
}

.c-card2__title {
  font-size: 1.125rem;
  color: #333;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.9444444444;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.c-card2__text {
  font-size: 0.875rem;
  color: #333;
  letter-spacing: 0.07em;
  line-height: 1.8571428571;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-top: 0.25rem;
}

.c-card2__bottom {
  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;
  margin-top: auto;
  padding-bottom: 1rem;
  padding-right: 1.4375rem;
  padding-left: 1.4375rem;
}

.c-card2__category {
  display: inline-block;
  font-size: 0.875rem;
  color: #000;
  letter-spacing: 0.1em;
  line-height: 1.8571428571;
  background-color: #FFEA2E;
  padding-right: 0.125rem;
  padding-left: 0.4375rem;
}

.c-card2__time {
  display: inline-block;
  font-size: 0.875rem;
  color: #333;
  letter-spacing: 0.23em;
  line-height: 1.8571428571;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.c-copyright {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  line-height: 1.4545454545;
  margin-top: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-copyright {
    font-size: 0.9375rem;
    margin-top: 4.0625rem;
    line-height: 2.3333333333;
  }
}

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

.c-footer__logo-link {
  display: inline-block;
  aspect-ratio: 95/30;
  padding-right: 0.3125rem;
  padding-left: 0.3125rem;
}

.c-footer__logo-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-footer__logo {
  width: 4.375rem;
}

.c-footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-hamburger {
  display: block;
  position: relative;
  cursor: pointer;
  width: 1.5rem;
  height: 0.8125rem;
  z-index: 9999;
}
@media screen and (min-width: 768px) {
  .c-hamburger {
    display: none;
  }
}

.c-hamburger span {
  display: inline-block;
  position: absolute;
  background-color: #FFF;
  width: 1.5rem;
  height: 0.125rem;
  border-radius: 50px;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.c-hamburger span:nth-of-type(1) {
  top: 0;
}

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

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

.c-hamburger.is-active span:nth-child(1) {
  top: 0.3125rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.c-hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.c-hamburger.is-active span:nth-child(3) {
  top: 0.3125rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.c-logo__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-logo {
  position: relative;
  width: 4.375rem;
  z-index: 9999;
}
@media screen and (min-width: 768px) {
  .c-logo {
    width: 5.875rem;
  }
}

.c-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-page__category-list {
  margin-top: 5.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}
@media screen and (min-width: 768px) {
  .c-page__category-list {
    margin-top: 7.1875rem;
  }
}

.c-page__category-list li {
  display: block;
  line-height: 3;
  margin-right: 1.4375rem;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .c-page__category-list li {
    margin-right: 2.5rem;
  }
}

.c-page__category-link {
  display: inline-block;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 0.125rem 0.25rem 0.1875rem;
  border-bottom: 1px solid #000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.c-page__category-link.current {
  color: #333;
  background-color: #FFF;
}

.c-page__category-link:hover {
  color: #333;
  background-color: #FFF;
}

.c-page__mv {
  position: relative;
}

.c-page__mv::before {
  position: absolute;
  display: block;
  content: "";
  background-color: #111;
  opacity: 20%;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.c-page__mv-img {
  aspect-ratio: 375/425;
}
@media screen and (min-width: 768px) {
  .c-page__mv-img {
    aspect-ratio: 1280/370;
  }
}

.c-page__mv-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-page__mv-title {
  position: absolute;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .c-page__mv-title {
    font-size: 2.1875rem;
  }
}

.c-page__top {
  position: fixed;
  background-color: #FFF;
  width: 2.8125rem;
  height: 2.8125rem;
  right: 1.3125rem;
  bottom: 2.5625rem;
  z-index: 9999;
}
@media screen and (min-width: 768px) {
  .c-page__top {
    right: 2rem;
    bottom: 1.9375rem;
  }
}

.c-page__top a {
  position: relative;
  display: block;
  width: 2.8125rem;
  height: 2.8125rem;
}

.c-page__top a::before {
  position: absolute;
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  border-right: 2px solid #333;
  border-top: 2px solid #333;
  top: 43%;
  left: 61%;
  -webkit-transform: rotate(-45deg) translate(-50%, -50%);
          transform: rotate(-45deg) translate(-50%, -50%);
}

.c-related {
  margin-top: 7.5rem;
}
@media screen and (min-width: 768px) {
  .c-related {
    margin-top: 6.5rem;
  }
}

.c-related-title {
  font-size: 1rem;
  letter-spacing: 0.02em;
  line-height: 1.4375;
  background-color: #333;
  border: solid 1px #FFF;
  padding: 0.5625rem 0.9375rem 0.5rem 0.875rem;
  text-align: center;
}

.c-related-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .c-related-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 5rem;
  }
}

@media screen and (min-width: 768px) {
  .c-card2__img.c-related-item-img {
    aspect-ratio: 251/148;
  }
}

.c-card2__title.c-related-item-title {
  font-size: 0.875rem;
}

.c-section__title-en {
  font-size: 3.125rem;
  color: #F9F871;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.03em;
  line-height: 1.44;
  text-align: center;
  text-transform: capitalize;
  opacity: 27%;
}
@media screen and (min-width: 768px) {
  .c-section__title-en {
    font-size: 6.875rem;
    line-height: 1;
  }
}

.c-section__title-ja {
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  line-height: 1.45;
  text-align: center;
  margin-top: -1.5625rem;
}
@media screen and (min-width: 768px) {
  .c-section__title-ja {
    font-size: 1.875rem;
    line-height: 1.1666666667;
  }
}

@media screen and (min-width: 768px) {
  .c-section__title-ja.--content {
    margin-left: 2.625rem;
  }
}

@media screen and (min-width: 768px) {
  .c-section__title-ja.--works {
    margin-right: 8.3125rem;
    margin-top: -0.25rem;
  }
}

@media screen and (min-width: 768px) {
  .c-section__title-ja.--blog {
    margin-right: 15.8125rem;
  }
}

@media screen and (min-width: 768px) {
  .c-section__title-ja.--contact {
    margin-left: 1.4375rem;
  }
}

@media screen and (min-width: 768px) {
  .c-section__title-ja.--overview {
    margin-left: -2.4375rem;
  }
}

@media screen and (min-width: 768px) {
  .c-section__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .c-section__title.--works,
  .c-section__title.--blog {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-flow: row-reverse;
            flex-flow: row-reverse;
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .c-section__title.--contact {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.p-404__inner {
  margin-top: 8.0625rem;
  margin-bottom: 7.5rem;
}
@media screen and (min-width: 768px) {
  .p-404__inner {
    margin-top: 12.5rem;
    margin-bottom: 9.375rem;
  }
}

.p-404__title {
  font-size: 2.5rem;
  font-weight: 400;
  color: #FFEA2E;
  text-transform: capitalize;
  opacity: 30%;
  letter-spacing: 0.02em;
  line-height: 0.875;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-404__title {
    font-size: 3.75rem;
  }
}

.p-404__sub-title {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.45;
  margin-top: 5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-404__sub-title {
    font-size: 1.875rem;
    line-height: 0.8571428571;
  }
}

.p-archive-content__block.l-inner {
  max-width: 37.5rem;
  width: 100%;
  padding-right: 0;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .p-archive-content__block.l-inner {
    max-width: 71.25rem;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.p-archive-content__title-block {
  margin-top: 5.3125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-archive-content__title-block {
    margin-top: 4.3125rem;
  }
}

.p-archive-content__title {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.45;
}
@media screen and (min-width: 768px) {
  .p-archive-content__title {
    font-size: 1.5625rem;
    line-height: 1.4;
  }
}

.p-archive-content__text {
  display: inline-block;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.4375;
  margin-top: 1.5rem;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-archive-content__text {
    width: 33.5rem;
    line-height: 2.1875;
    padding: 0;
  }
}

.p-archive-content__items {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p-archive-content__items {
    margin-top: 9.375rem;
  }
}

.p-archive-content__item:not(:first-child) {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-archive-content__item:not(:first-child) {
    margin-top: 6.5rem;
  }
}

.p-archive-content__item:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-flow: row-reverse;
          flex-flow: row-reverse;
}

@media screen and (min-width: 768px) {
  .c-card1.p-archive-content__item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.c-card1__body.p-archive-content__body {
  padding: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-card1__body.p-archive-content__body {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.p-archive-blog__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  margin-top: 2.3125rem;
}
@media screen and (min-width: 768px) {
  .p-archive-blog__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 1.5rem;
    margin-top: 2.5rem;
  }
}

.p-archive-blog__card {
  position: relative;
}

.p-archive-blog__nav {
  text-align: center;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p-archive-blog__nav {
    margin-top: 6.5rem;
  }
}

.p-archive-works__items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3rem;
  margin-top: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .p-archive-works__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 7.0625rem 3rem;
    margin-top: 2.5rem;
  }
}

.p-archive-works__card {
  display: block;
}

.p-archive-works__card-img {
  position: relative;
  aspect-ratio: 375/249;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-archive-works__card-img {
    aspect-ratio: 525/349;
    margin-right: 0;
    margin-left: 0;
  }
}

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

.p-archive-works__card-category {
  position: absolute;
  font-size: 1rem;
  color: #FFF;
  letter-spacing: 0.02em;
  line-height: 1;
  background-color: #111;
  padding: 0.5rem 1.4375rem 0.5rem;
  min-width: 8rem;
  top: 0;
  right: 0;
}

.p-archive-works__card-name {
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  text-align: center;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-archive-works__card-name {
    margin-top: 0.75rem;
  }
}

.p-archive-works__page-nav {
  margin-top: 5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-archive-works__page-nav {
    margin-top: 6.5rem;
  }
}

.p-blog__items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  max-width: 37.5rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 4.25rem;
}
@media screen and (min-width: 768px) {
  .p-blog__items {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5625rem;
    max-width: 69.75rem;
    margin-top: 0;
  }
}

.p-blog__card {
  position: relative;
}

.p-blog__btn {
  margin-top: 1.3125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-blog__btn {
    margin-top: 2.75rem;
  }
}

.p-complete__inner {
  margin-top: 8.125rem;
  margin-bottom: 7.5rem;
}
@media screen and (min-width: 768px) {
  .p-complete__inner {
    margin-top: 12.5rem;
    margin-bottom: 9.375rem;
  }
}

.p-complete__title,
.p-complete__sub-title {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.45;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-complete__title,
  .p-complete__sub-title {
    font-size: 1.875rem;
    line-height: 0.8571428571;
  }
}

.p-complete__sub-title {
  margin-top: 5rem;
}

.p-complete__btn {
  margin-top: 5rem;
  text-align: center;
  text-transform: uppercase;
}

.p-contact__text-block {
  margin-top: 1.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact__text-block {
    margin-top: 1.5rem;
  }
}

.p-contact__text {
  font-size: 1rem;
  letter-spacing: 0.13em;
  line-height: 1.4375;
  min-height: 4.75rem;
}

.p-contact__btn {
  text-align: center;
  margin-top: 2.5625rem;
}
@media screen and (min-width: 768px) {
  .p-contact__btn {
    margin-top: 0.4375rem;
  }
}

.p-content {
  position: relative;
}

.p-content::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 42rem;
  background-image: linear-gradient(to right top, transparent 50%, #F9F871 50.1%, #F9F871 calc(50.1% + 1px), transparent calc(50.2% + 1px));
  top: 1.125rem;
  left: 0;
  z-index: -2;
}
@media screen and (min-width: 768px) {
  .p-content::before {
    width: 94.6875%;
    height: 75.75rem;
    background-image: linear-gradient(to right top, transparent 50%, #F9F871 50.1%, #F9F871 calc(50.1% + 1px), transparent calc(50.2% + 1px));
    top: -5rem;
    left: 0;
  }
}

.p-content__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-content__items {
    margin-top: 0;
  }
}

.p-content__card {
  position: relative;
  display: block;
  width: 50%;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-content__card {
    width: 25%;
  }
}

.p-content__card::before {
  position: absolute;
  display: block;
  content: "";
  background-color: rgba(255, 255, 255, .6);
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 3;
}

.p-content__card:hover::before {
  opacity: 1;
}

.p-content__img {
  position: relative;
  aspect-ratio: 187/168;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-content__img {
    aspect-ratio: 170/168;
  }
}

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

.p-content__title {
  position: absolute;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  line-height: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 300;
  opacity: 1;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-content__title {
    font-size: 1.5625rem;
  }
}

.p-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  background-color: #000;
  z-index: -300;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.p-drawer__content-list {
  width: 100%;
  height: inherit;
  overflow: scroll;
  padding-top: 13.0625rem;
}

.p-drawer__content-item {
  display: block;
  text-align: center;
}

.p-drawer__content-item:not(:first-child) {
  margin-top: 2rem;
}

.p-drawer__content-item a {
  display: block;
  letter-spacing: 0.2em;
  line-height: 1.4375;
  width: 100%;
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}

.p-drawer.is-active {
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 300;
}

.p-footer__content {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-footer__content {
    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 (min-width: 768px) {
  .p-footer__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-footer__item {
  font-size: 1rem;
  letter-spacing: 0.08em;
  line-height: 1.4375;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer__item {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__item:not(:first-child) {
    margin-left: 2.125rem;
  }
}

.p-header {
  position: fixed;
  width: 100%;
  height: 3.125rem;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(17, 17, 15, .5);
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25);
  z-index: 9999;
}

.p-header.change-color {
  background-color: #111;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.p-header__inner {
  width: 100%;
  height: inherit;
  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;
  padding-right: 0;
  padding-right: 1.375rem;
  padding-left: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    padding-right: 0;
    padding-left: 2.0625rem;
  }
}

.p-header__nav {
  height: inherit;
}

.p-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

.p-header__item {
  height: inherit;
}

@media screen and (min-width: 768px) {
  .p-header__item:not(:first-child) {
    margin-left: 1.625rem;
  }
}

.p-header__item a {
  font-size: 1rem;
  letter-spacing: 0.2em;
  line-height: 1;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-header__item.p-header__item-contact a {
  position: relative;
  color: #333;
  background-color: #FFF;
  padding-right: 1.625rem;
  padding-left: 1.8125rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.p-header__item.p-header__item-contact span {
  position: relative;
  z-index: 9999;
}

.p-header__item.p-header__item-contact a::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #333;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.p-header__item.p-header__item-contact:hover a {
  color: #FFF;
  opacity: 1;
}

.p-header__item.p-header__item-contact:hover a::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.p-home {
  width: 100%;
  margin: auto;
}

.p-home__inner {
  max-width: 37.5rem;
  width: 100%;
  margin-top: 5.3125rem;
}
@media screen and (min-width: 768px) {
  .p-home__inner {
    max-width: 56.875rem;
    margin-top: 4.5rem;
  }
}

.p-home__item {
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-home__item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-home__item:not(:first-child) {
  margin-top: 2.875rem;
}
@media screen and (min-width: 768px) {
  .p-home__item:not(:first-child) {
    margin-top: 2.25rem;
  }
}

.p-home__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-home__time {
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.07em;
}
@media screen and (min-width: 768px) {
  .p-home__time {
    width: 5rem;
  }
}

.p-home__category {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1;
  border: solid 1px #FFF;
  padding: 0.5rem 0.75rem 0.4375rem;
  margin-left: 1.8125rem;
  min-width: 6.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-home__category {
    margin-left: 3rem;
  }
}

.p-home__title {
  font-size: 1rem;
  line-height: 1;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-home__title {
    width: calc(100% - 14.1875rem);
    margin-top: 0;
    margin-left: 3.8125rem;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}

@media screen and (min-width: 768px) {
  .p-home__title:hover {
    color: #F9F871;
  }
}

.p-home__page-nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-home__page-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 6.5rem;
  }
}

.p-mv {
  width: 100%;
  height: 100vh;
  overflow:hidden;
}
@media screen and (min-width: 768px) {
  .p-mv {
    height: 53.1875rem;
  }
}

.p-mv__swiper.swiper {
  position: relative;
  width: 100%;
  height: 100vh;
}
@media screen and (min-width: 768px) {
  .p-mv__swiper.swiper {
    height: 53.1875rem;
  }
}

.p-mv__swiper::before {
  position: absolute;
  display: block;
  content: "";
  background-color: rgba(17, 17, 17, .2);
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.swiper-slide.p-mv__swiper-slide img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100vh;
}
@media screen and (min-width: 768px) {
  .swiper-slide.p-mv__swiper-slide img {
    height: 53.1875rem;
  }
}

.p-mv__swiper-slide.swiper-slide-active img,
.p-mv__swiper-slide.swiper-slide-duplicate-active img,
.p-mv__swiper-slide.swiper-slide-prev img {
  -webkit-animation: zoom 10s linear 0s 1 normal both;
          animation: zoom 10s linear 0s 1 normal both;
}

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

@keyframes zoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
.p-mv__content {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 8888;
}

.p-mv__title {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-mv__title {
    font-size: 3.125rem;
  }
}

.p-mv__subTitle {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-mv__subTitle {
    font-size: 1.5625rem;
  }
}

.p-overview {
  position: relative;
  overflow: hidden;
}

.p-overview::before {
  position: absolute;
  content: "";
  width: 62.6666667%;
  height: 54.75rem;
  background-image: linear-gradient(to right bottom, transparent 56%, #F9F871 56.1%, #F9F871 calc(56.1% + 1px), transparent calc(56.2% + 1px));
  top: -11.125rem;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-overview::before {
    width: 94.6875%;
    height: 75.75rem;
    background-image: linear-gradient(to right bottom, transparent 50%, #F9F871 50.1%, #F9F871 calc(50.1% + 1px), transparent calc(50.2% + 1px));
    top: -11.125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-overview__inner {
    width: 71.875rem;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 768px) {
  .p-overview__wrapper {
    margin-left: calc(50% - 50vw);
    background: -webkit-gradient(linear, left top, right top, from(#333), color-stop(75%, #333), color-stop(75%, transparent), to(transparent));
    background: linear-gradient(90deg, #333 0%, #333 75%, transparent 75%, transparent 100%);
  }
}

.c-card1.p-overview__item {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  margin-top: 3rem;
  background-color: #333;
}
@media screen and (min-width: 768px) {
  .c-card1.p-overview__item {
    background-color: transparent;
    max-width: 71.875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-flow: row-reverse;
            flex-flow: row-reverse;
    padding-top: 4.5625rem;
    padding-bottom: 5.0625rem;
    margin-top: 0;
    margin-right: 0;
    margin-left: auto;
  }
}

.c-card1__body.p-overview__body {
  background-color: #333;
  padding: 1.5625rem 1.25rem 1.375rem;
}
@media screen and (min-width: 768px) {
  .c-card1__body.p-overview__body {
    width: 32.4375rem;
    padding: 0;
    margin-right: 1.4375rem;
  }
}

.p-page-contact__content {
  margin-top: 5.3125rem;
  margin-bottom: 7.5rem;
}
@media screen and (min-width: 768px) {
  .p-page-contact__content {
    margin-top: 7.1875rem;
    margin-bottom: 9.375rem;
  }
}

.p-page-contact__inner {
  max-width: 37.5rem;
}

.p-page-contact__form {
  max-width: 37.5rem;
  width: 100%;
  margin-top: 2rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-page-contact__form {
    max-width: 43.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-page-contact__form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-page-contact__form-row:not(:first-child) {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-page-contact__form-row:not(:first-child) {
    margin-top: 2.8125rem;
  }
}

.p-page-contact__form-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.7142857143;
}
@media screen and (min-width: 768px) {
  .p-page-contact__form-label {
    width: 8.25rem;
    text-align: right;
    margin-right: 1.5rem;
  }
}

.p-page-contact__form-input {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-page-contact__form-input {
    width: calc(100% - 9.75rem);
    margin-top: 0;
  }
}

.p-page-contact__form-input [type=text] {
  border: solid 1px #000;
  background-color: #FFF;
  padding: 0.4375rem 1rem;
  font-size: 0.875rem;
  width: 100%;
}

.p-page-contact__form-input [type=email] {
  border: solid 1px #000;
  background-color: #FFF;
  padding: 0.4375rem 1rem;
  font-size: 0.875rem;
  width: 100%;
}

.p-page-contact__form-input textarea {
  height: 15.625rem;
  border: 1px solid #707070;
  background-color: #FFF;
  padding: 0.4375rem 1rem;
  font-size: 0.875rem;
  width: 100%;
  resize: none;
}
@media screen and (min-width: 768px) {
  .p-page-contact__form-input textarea {
    height: 18.75rem;
  }
}

.p-page-contact__form-btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-page-contact__form-btn {
    margin-top: 3.5rem;
    margin-left: 5rem;
  }
}

.p-page-contact__form-btn [type=submit] {
  position: relative;
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 400;
  color: #333;
  background-color: #FFF;
  line-height: 1;
  text-align: center;
  padding: 0.75rem 9.0625rem 0.875rem 9.125rem;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25);
}
@media screen and (min-width: 768px) {
  .p-page-contact__form-btn [type=submit] {
    padding: 1.0625rem 9.8125rem 1.1875rem 9.9375rem;
  }
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted.wpcf7-response-output {
  font-size: 1rem;
  color: #FF5757;
  letter-spacing: 0.02em;
  text-align: center;
  border-color: #111;
}

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

.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required.wpcf7-not-valid,
.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required.wpcf7-not-valid {
  background-color: #FFDCDC;
}

.p-page__overview-list {
  margin-top: 5.3125rem;
}
@media screen and (min-width: 768px) {
  .p-page__overview-list {
    margin-top: 7.1875rem;
  }
}

.p-page__overview-list dl {
  padding-bottom: 1.1875rem;
  border-bottom: solid 1px #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-page__overview-list dl {
    padding-bottom: 1.75rem;
  }
}

.p-page__overview-list dl:not(:first-child) {
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-page__overview-list dl:not(:first-child) {
    margin-top: 2.25rem;
  }
}

.p-page__overview-list dt,
.p-page__overview-list dd {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.8461538462;
}
@media screen and (min-width: 768px) {
  .p-page__overview-list dt,
  .p-page__overview-list dd {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.p-page__overview-list dt {
  width: 3.25rem;
}
@media screen and (min-width: 768px) {
  .p-page__overview-list dt {
    width: 4rem;
  }
}

.p-page__overview-list dd {
  margin-left: 3.5625rem;
  width: calc(100% - 6.875rem);
}
@media screen and (min-width: 768px) {
  .p-page__overview-list dd {
    width: calc(100% - 9.5rem);
    margin-left: 5.5rem;
  }
}

.p-overview__map-wrapper {
  width: 100vw;
  margin-top: 7.5rem;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-overview__map-wrapper {
    width: 100%;
    margin-top: 5rem;
    margin-right: auto;
    margin-left: auto;
  }
}

.p-page-overview__map {
  aspect-ratio: 375/300;
}
@media screen and (min-width: 768px) {
  .p-page-overview__map {
    aspect-ratio: 1100/367;
  }
}

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

.p-recent__inner {
  max-width: 37.5rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1.1875rem;
  padding-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-recent__inner {
    max-width: 65.125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-recent__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-recent__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-recent__time {
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
}

.p-recent__category {
  display: inline-block;
  font-size: 0.875rem;
  color: #FFF;
  line-height: 1;
  border: solid 1px #FFF;
  padding: 0.4375rem 1.25rem 0.5rem;
  margin-left: 2rem;
}
@media screen and (min-width: 768px) {
  .p-recent__category {
    margin-left: 2.25rem;
  }
}

.p-recent__text {
  line-height: 1.4375;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-recent__text {
    position: relative;
    margin-top: 0;
    margin-left: 3.8125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-recent__text::after {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    background: #FFF;
    bottom: -1px;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
    -webkit-transition: all 0.3s;
    transition: all 0.3s; /*変形の時間*/
  }
}

.p-recent__text:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
  -webkit-transform-origin: left top;
          transform-origin: left top; /*左から右に向かう*/
}

.p-recent__btn {
  display: block;
  margin-top: 1.625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-recent__btn {
    display: inline-block;
    text-align: left;
    text-align: initial;
    margin-top: 0;
    margin-left: 3.125rem;
  }
}

.p-single-blog__inner.l-inner {
  max-width: 37.5rem;
  width: 100%;
  margin-top: 4.875rem;
}
@media screen and (min-width: 768px) {
  .p-single-blog__inner.l-inner {
    max-width: 53.125rem;
    margin-top: 5.6875rem;
  }
}

.p-single-blog-title {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .p-single-blog-title {
    font-size: 1.4375rem;
    line-height: 1.5217391304;
  }
}

.p-single-blog-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .p-single-blog-meta {
    margin-top: 2rem;
  }
}

.p-single-blog-time {
  font-size: 1rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.p-single-blog-category {
  display: inline-block;
  font-size: 1rem;
  letter-spacing: 0.02em;
  line-height: 1;
  border: solid 1px #FFF;
  padding: 0.625rem 1.25rem 0.75rem;
  min-width: 8rem;
  margin-left: 1.5rem;
}

.p-single-blog-img {
  aspect-ratio: 375/251;
  margin-top: 1rem;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-single-blog-img {
    aspect-ratio: 799/427;
    margin-top: 2rem;
    margin-right: auto;
    margin-left: auto;
  }
}

.p-single-blog-text {
  font-size: 1rem;
  letter-spacing: 0.04em;
  line-height: 2.1875;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-single-blog-text {
    margin-top: 2rem;
  }
}

.p-single-blog-sub-title1 {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  padding-left: 0.5625rem;
  border-left: solid 3px #FFF;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-single-blog-sub-title1 {
    margin-top: 2rem;
  }
}

.p-single-blog-sub-title2 {
  display: inline-block;
  position: relative;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  padding-bottom: 0.375rem;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-single-blog-sub-title2 {
    margin-top: 2rem;
  }
}

.p-single-blog-sub-title2::before {
  position: absolute;
  content: "";
  background-color: #FFF;
  width: 100%;
  height: 0.1875rem;
  bottom: 0;
  left: 0;
}

.p-single-blog-sub-title2::after {
  position: absolute;
  content: "";
  background-color: #FFEA2E;
  width: 33.6%;
  height: 0.1875rem;
  bottom: 0;
  left: 0;
}

.p-single-blog-list {
  font-size: 1rem;
  letter-spacing: 0.04em;
  line-height: 2.1875;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-single-blog-list {
    margin-top: 2rem;
  }
}

.p-single-blog-navi {
  text-align: center;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p-single-blog-navi {
    margin-top: 6.5rem;
  }
}

.p-single-recommend {
  margin-top: 7.5rem;
}
@media screen and (min-width: 768px) {
  .p-single-recommend {
    margin-top: 6.5rem;
  }
}

.p-single-recommend__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-single-recommend__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: rem8(80);
  }
}

.c-card2__img.p-single-recommend__item-img {
  aspect-ratio: 335/223;
}
@media screen and (min-width: 768px) {
  .c-card2__img.p-single-recommend__item-img {
    aspect-ratio: 251/148;
  }
}

.p-single-works {
  margin-top: 4.125rem;
}

.p-single-works__title-block {
  margin-top: 3.3125rem;
}
@media screen and (min-width: 768px) {
  .p-single-works__title-block {
    max-width: 53.1875rem;
    width: 100%;
    margin-top: 5.6875rem;
  }
}

.p-single-works__title {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-single-works__title {
    font-size: 1.4375rem;
  }
}

.p-single-works__title-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-single-works__title-meta {
    margin-top: 2rem;
  }
}

.p-single-works__time {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
}

.p-single-works__category {
  display: inline-block;
  font-size: 1rem;
  letter-spacing: 0.02em;
  line-height: 1;
  border: solid 1px #FFF;
  padding: 0.625rem 1.375rem 0.75rem 1.4375rem;
  margin-left: 1.875rem;
}

.p-single-works__swiper {
  width: 100%;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-single-works__swiper {
    margin-top: 2rem;
  }
}

.p-single-works__slider {
  position: relative;
  width: 100%;
  height: 15.6875rem;
  margin-bottom: 0.625rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-single-works__slider {
    height: 26.6875rem;
  }
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
}

.p-single__slide.swiper-slide {
  width: 100%;
  height: 25rem;
}

.p-single__slide.swiper-slide img {
  width: 100%;
  height: 15.6875rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-single__slide.swiper-slide img {
    height: 26.6875rem;
  }
}

.swiper-container.p-single__thumbs {
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.p-single__thumbs-slide.swiper-slide {
  width: 10.1875rem;
  height: 10.1875rem;
  text-align: center;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-single__thumbs-slide.swiper-slide {
    width: 5.8125rem;
    height: 5.8125rem;
  }
}

.p-single__thumbs-slide.swiper-slide img {
  width: 100%;
  height: 100%;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  height: 3.125rem;
  width: 3.125rem;
  background-color: #111;
  border-radius: 50%;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  width: 0.8125rem;
  height: 1.6875rem;
  top: 50%;
  left: 50%;
  margin: auto;
}

.swiper-button-prev::after {
  background-image: url(../images/arrow-prev.png);
}

.swiper-button-next::after {
  background-image: url(../images/arrow-next.png);
}

.swiper-slide img {
  height: auto;
  width: 100%;
}

.p-single-works__items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-single-works__items {
    gap: 3rem;
    margin-top: 5rem;
  }
}

.p-single-works__item-title {
  display: inline-block;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  line-height: 1.45;
  border: solid 1px #FFF;
  border-radius: 3.125rem;
  background-color: #111;
  padding: 0.4375rem 2.625rem 0.5rem;
  margin-left: 1.5rem;
}

.p-single-works__item-text {
  font-size: 1rem;
  letter-spacing: 0.04em;
  line-height: 2.1875;
  border: solid 1px #FFF;
  padding: 3.4375rem 0.625rem 2rem;
  margin-top: -1.4375rem;
}

.p-single-works__nav {
  margin-top: 5rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .p-single-works__nav {
    margin-top: 6.5rem;
  }
}

.p-single-works__nav a {
  display: inline-block;
  font-size: 1rem;
  color: #FFF;
  background-color: #111;
  font-weight: 400;
  line-height: 1;
  border: solid 1px #FFF;
  padding: 0.1875rem 0.4375rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (min-width: 768px) {
  .p-single-works__nav a:hover {
    color: #333;
    background-color: #FFF;
    opacity: 1;
  }
}

.p-single-works__nav li:not(:first-child) {
  margin-left: 1rem;
}

.p-test {
  color: red;
  font-size: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-test {
    font-size: 3.125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-works__inner {
    max-width: 71.875rem;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 768px) {
  .p-works__wrapper {
    margin-right: calc(50% - 50vw);
    background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(24.5%, transparent), color-stop(24.5%, #333), to(#333));
    background: linear-gradient(90deg, transparent 0%, transparent 24.5%, #333 24.5%, #333 100%);
  }
}

.c-card1.p-works__item {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  margin-top: 3rem;
  background-color: #333;
}
@media screen and (min-width: 768px) {
  .c-card1.p-works__item {
    background-color: transparent;
    max-width: 68.75rem;
    padding-top: 5.0625rem;
    padding-bottom: 5rem;
    margin-top: 0;
    margin-right: auto;
    margin-left: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-works__content {
    width: 34.8125rem;
    margin-right: 1.75rem;
  }
}

.p-works__body {
  padding: 1.625rem 1.75rem 1.4375rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-works__body {
    width: calc(100% - 34.8125rem);
    padding: 0;
  }
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

.wp-pagenavi a {
  display: inline-block;
  font-size: 1rem;
  color: #FFF;
  background-color: #111;
  font-weight: 400;
  line-height: 1;
  border: solid 1px #FFF;
  padding: 0.1875rem 0.4375rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (min-width: 768px) {
  .wp-pagenavi a:hover {
    color: #333;
    background-color: #FFF;
    opacity: 1;
  }
}

.wp-pagenavi a:not(:first-child) {
  margin-left: 1rem;
}

.wp-pagenavi span {
  display: inline-block;
  font-size: 1rem;
  color: #333;
  font-weight: 400;
  line-height: 1;
  background-color: #FFF;
  border: solid 1px #FFF;
  padding: 0.1875rem 0.4375rem;
  margin-left: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.wp-pagenavi.p-archive-works__page-nav span.current {
  background-color: #FFF;
  margin-left: 1rem;
}

.wp-pagenavi.p-archive-blog__nav span.current {
  background-color: #F9F871;
  border: solid 1px #F9F871;
}

.wp-pagenavi.p-archive-blog__nav a:hover {
  background-color: #F9F871;
  border: solid 1px #F9F871;
}

.wp-pagenavi a.first {
  margin-right: 0.5rem;
}

.wp-pagenavi a.last {
  margin-left: 1.375rem;
}

.wp-pagenavi span.extend {
  margin-left: 1rem;
}

.wp-pagenavi span.current {
  margin-left: 1rem;
}
/*# sourceMappingURL=styles.css.map */