@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul,
ol {
  padding: 0;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

input,
button,
select,
textarea {
  font: inherit;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  resize: vertical;
}

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

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}
@media screen and (max-width: 1100px) {
  html {
    font-size: 1.4545454545vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

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

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

/* =========================
   Header (PC)
========================= */
.l-header {
  position: relative;
  z-index: 10;
  background: #fff;
}

@media screen and (max-width: 768px) {
  .l-header--transparent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
  }
}

.l-header__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.5rem;
  position: relative;
  height: 5rem;
}

.l-header__brand {
  aspect-ratio: 258/180;
  max-width: 16.125rem;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .l-header__brand {
    aspect-ratio: 114/80;
    max-width: 7.125rem;
  }
}

/* ロゴ */
.l-header__logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* ナビ */
.l-header__nav {
  margin-left: auto;
  height: 5rem;
}
@media screen and (max-width: 768px) {
  .l-header__nav {
    display: none;
  }
}

.l-header__nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.125rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 5rem;
}

.l-header__nav-link {
  display: inline-block;
  text-decoration: none;
  color: #1a1917;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 0.5rem 0;
}

.l-header__nav-link:hover {
  opacity: 0.75;
}

/* CONTACTボタン */
.l-header__nav-item--contact {
  margin-left: 0.5rem;
  background: #2f3f35;
  border-radius: 0.125rem;
  padding: 0.625rem 1rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  height: 5rem;
  width: 11.6875rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.l-header__contact-icon {
  font-size: 1rem;
  color: #fff;
}

.l-header__nav-link--contact {
  color: #fff;
  font-weight: 600;
  padding: 0;
}

.l-header__nav-item--contact:hover {
  opacity: 0.85;
}

/* =========================
   Hamburger (SP)
========================= */
.l-header__hamburger {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-header__hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.375rem;
    width: 1.5625rem;
    height: 5rem;
    margin-right: 1.875rem;
    margin-left: auto;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 40;
  }
}

.l-header__hamburger-line {
  display: block;
  width: 1.5625rem;
  height: 0.0625rem;
  background-color: #1a1917;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}

.l-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #1e2620;
  z-index: 50;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  overflow-y: auto;
}
.l-drawer.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.l-drawer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
  padding-inline: 1.25rem;
}

.l-drawer__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.l-drawer__logo {
  position: absolute;
  top: 0;
  left: 0;
  aspect-ratio: 114/80;
  max-width: 7.125rem;
  width: 100%;
  height: auto;
}

.l-drawer__close {
  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: 2rem;
  height: 2rem;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  margin-right: 1.875rem;
  margin-left: auto;
  margin-top: 1.8125rem;
}

.l-drawer__close-line {
  position: absolute;
  display: block;
  width: 1.5rem;
  height: 0.125rem;
  background-color: #fff;
}
.l-drawer__close-line:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.l-drawer__close-line:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.l-drawer__nav {
  margin-top: 3.125rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.l-drawer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.l-drawer__nav-item + .l-drawer__nav-item {
  margin-top: 1.5rem;
}

.l-drawer__nav-link {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.l-drawer__nav-link:hover {
  opacity: 0.7;
}

.l-drawer__privacy-link {
  display: block;
  margin-top: 2.5rem;
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.l-drawer__privacy-link:hover {
  opacity: 0.7;
}

.l-drawer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: auto;
  padding-top: 2.5rem;
}
.l-drawer__social a {
  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: 2.25rem;
  height: 2.25rem;
  color: #fff;
  font-size: 1.125rem;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.l-drawer__social a:hover {
  opacity: 0.7;
}

.l-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 25, 23, 0.5);
  z-index: 49;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.l-drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.l-footer {
  background-color: #1e2620;
  color: #fff;
  padding-top: 3.9375rem;
  padding-bottom: 3.9375rem;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.l-footer__inner {
  max-width: 70.625rem;
  width: 100%;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 35.1875rem;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 768px) {
  .l-footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1.875rem;
    padding-inline: 3.125rem;
  }
}

@media screen and (max-width: 768px) {
  .l-footer__nav {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: 100%;
  }
}

.l-footer__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.875rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .l-footer__left {
    gap: 1.5rem;
    width: 100%;
    margin-top: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.l-footer__brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.875rem;
}
@media screen and (max-width: 768px) {
  .l-footer__brand {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1.5rem;
  }
}

.l-footer__logo {
  margin: 0;
  max-width: 16.125rem;
  width: 100%;
}
.l-footer__logo img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .l-footer__logo {
    aspect-ratio: 114/80;
    max-width: 7.125rem;
  }
}

.l-footer__social-link i {
  font-size: 1.25rem;
}

.l-footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

.l-footer__social-link {
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.l-footer__social-link:hover {
  opacity: 0.7;
}

.l-footer__copyright {
  font-family: "Roboto", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.04em;
}

.l-footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}

.l-footer__nav-item {
  line-height: 1;
}

.l-footer__nav-link {
  color: #fff;
  font-size: 1rem;
  font-weight: 300;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  font-family: "Roboto", sans-serif;
  gap: 1.25rem;
  line-height: 1;
  white-space: nowrap;
}
.l-footer__nav-link:hover {
  opacity: 0.7;
}

.p-contact__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 27.875rem;
  background-color: #2f3f35;
}
@media screen and (max-width: 768px) {
  .p-contact__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    max-height: none;
  }
}

.p-contact__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60%;
          flex: 0 0 60%;
  width: 60%;
  max-width: none;
  margin: 0;
  height: 100%;
  min-height: 0;
}
.p-contact__img picture {
  display: block;
  width: 100%;
  height: 100%;
}
.p-contact__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-contact__img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    height: auto;
    aspect-ratio: 355/240;
  }
}

.p-contact__content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  width: 40%;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-contact__content {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
}

.p-contact__content-wrapper {
  max-width: 18.4375rem;
  width: 100%;
  margin-top: 5.0625rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-inline: auto;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-contact__content-wrapper {
    margin-top: 3.9375rem;
    margin-bottom: 3.9375rem;
    max-width: 100%;
    margin-inline: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 0;
    padding-right: 0;
  }
}

.p-contact__content-title {
  font-size: 1.125rem;
  font-weight: 300;
  color: #fff;
  line-height: 2.375rem;
}
@media screen and (max-width: 768px) {
  .p-contact__content-title {
    font-size: 0.875rem;
    max-width: 13.4375rem;
    margin-inline: auto;
  }
}

.p-contact__box {
  max-width: 14.6875rem;
  width: 100%;
  margin-top: 1.5625rem;
  gap: 1rem;
}
.p-contact__box + .p-contact__box {
  margin-top: 1.25rem;
}
.p-contact__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  border: 0.0625rem solid #fff;
  border-radius: 0.3125rem;
  padding-left: 2rem;
  padding-top: 1.125rem;
  padding-bottom: 1.125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.p-contact__box:hover {
  background-color: #fff;
  color: #2f3f35;
}
.p-contact__box:hover .p-contact__box-icon-fa,
.p-contact__box:hover .p-contact__box-title {
  color: #2f3f35;
}
@media screen and (max-width: 768px) {
  .p-contact__box {
    max-width: 14.1875rem;
  }
}

.p-contact__box-icon {
  width: 1.375rem;
  height: 1.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-contact__box-icon2 {
  width: 1.375rem;
  height: 1.31875rem;
}

.p-contact__box-icon-fa {
  font-size: 1.25rem;
  color: #fff;
}

.p-contact__box-title {
  font-size: 1.375rem;
  font-weight: 300;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-contact__box-title {
    font-size: 1rem;
  }
}

.p-contact__content-text {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 300;
  margin-top: 1.375rem;
}

.l-inner {
  max-width: 68.75rem;
  width: 100%;
  margin-inline: auto;
}

.l-inner--wide {
  max-width: 75rem;
}

.l-inner--small {
  max-width: 52.5rem;
}

.l-inner--xsmall {
  max-width: 40rem;
}

.c-borderline, .c-readmore__borderline, .c-readmore__borderline--white {
  position: relative;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.c-borderline::after, .c-readmore__borderline::after, .c-readmore__borderline--white::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.125rem;
  width: 100%;
  height: 0.0625rem;
  background-color: #3d5245;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .c-borderline::after, .c-readmore__borderline::after, .c-readmore__borderline--white::after {
    display: none;
  }
}

a:hover > .c-borderline::after,
a:hover .c-borderline::after,
a:hover .c-readmore__borderline::after,
a:hover .c-readmore__borderline--white::after,
.p-top-works__card:hover .c-borderline::after,
.p-top-works__card:hover .c-readmore__borderline::after,
.p-top-works__card:hover .c-readmore__borderline--white::after,
.p-work-about__card:hover .c-borderline::after,
.p-work-about__card:hover .c-readmore__borderline::after,
.p-work-about__card:hover .c-readmore__borderline--white::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.c-borderline--black::after {
  background-color: #1a1917;
}

.c-borderline--white::after, .c-readmore__borderline--white::after {
  background-color: #fff;
}

a:hover > .c-borderline--black::after,
a:hover .c-borderline--black::after,
.p-top-works__card:hover .c-borderline--black::after,
.p-work-about__card:hover .c-borderline--black::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

a:hover > .c-borderline--white::after,
a:hover .c-borderline--white::after,
a:hover .c-readmore__borderline--white::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.c-readmore__link {
  font-size: 0.875rem;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  color: #3d5245;
  letter-spacing: 0.08em;
  gap: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-readmore__link--works-shosai {
  font-size: 1.125rem;
  gap: 0.75rem;
  max-width: 17.8125rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  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;
  font-weight: 500;
  border: 0.0625rem solid #3d5245;
  border-radius: 0.25rem;
  /* .c-readmore__text::after と .c-readmore__borderline（c-borderline::after）が両方効き二重線になるため */
}
.c-readmore__link--works-shosai .c-readmore__text::after {
  display: none;
}

.p-readmore__container2 {
  margin-top: 1.25rem;
  max-width: 8.8125rem;
  width: 100%;
  margin-right: 1.25rem;
  border-radius: 0.25rem;
}

.c-readmore__text {
  position: relative;
}
.c-readmore__text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.125rem;
  width: 0;
  height: 1px;
  background-color: #3d5245;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
@media screen and (max-width: 768px) {
  .c-readmore__text::after {
    display: none;
  }
}

.c-readmore__link:hover .c-readmore__text::after {
  width: 100%;
}

.c-readmore__link:hover .c-readmore__icon {
  -webkit-transform: translateX(0.3125rem);
          transform: translateX(0.3125rem);
}

.c-readmore__icon {
  width: 0.3125rem;
  height: 0.5625rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.c-sub-fv {
  padding-top: 9.75rem;
  padding-left: 10.625rem;
}
@media screen and (max-width: 768px) {
  .c-sub-fv {
    padding-top: 1.875rem;
    padding-left: 0.625rem;
  }
}

.c-sub-fv__inner {
  width: 100%;
  margin-inline: auto;
  position: relative;
}

.c-sub-fv__img {
  position: relative;
  display: block;
}
@media screen and (max-width: 768px) {
  .c-sub-fv__img {
    aspect-ratio: 365/280;
    width: 100%;
  }
}

.c-sub-fv__box {
  position: absolute;
  top: -0.0625rem;
  left: -0.0625rem;
  background-color: #fff;
  color: #1a1917;
  width: clamp(11.875rem, 38vw, 31.25rem);
  aspect-ratio: 500/224;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  .c-sub-fv__box {
    aspect-ratio: 19/13;
  }
}

.c-sub-fv__title {
  font-size: clamp(2.25rem, 7vw, 6.25rem);
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  padding-left: clamp(0.875rem, 3.5vw, 3.125rem);
  line-height: 1;
}

.c-sub-fv__text {
  font-size: clamp(0.625rem, 1.4vw, 1.25rem);
  font-weight: 700;
  color: #1a1917;
  padding-left: clamp(0.875rem, 3.5vw, 3.125rem);
}

.c-breadcrumb {
  padding-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: 3.75rem;
}
@media screen and (max-width: 768px) {
  .c-breadcrumb {
    padding-top: 0.625rem;
    margin-right: 0.625rem;
  }
}

.c-breadcrumb > span + span::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background-color: #999;
  margin: 0 10px;
  vertical-align: middle;
}

/* ←ここ追加 */
.c-breadcrumb > span:last-child {
  max-width: 11em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.c-breadcrumb > span:last-child a {
  display: inline-block;
  max-width: 11em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.c-breadcrumb--pt {
  padding-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  .c-breadcrumb--pt {
    padding-top: 0.625rem;
  }
}

.p-top-fv {
  width: 100%;
  height: 100vh;
}

.p-top-fv__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  .p-top-fv__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-inlne: auto;
  }
}

/* 左：画像（縦スライド） */
.p-top-fv__media {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  top: -5rem;
  left: 5rem;
  z-index: 0;
  overflow: hidden;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  .p-top-fv__media {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    left: 0;
    top: 0;
  }
}

.js-fv-swiper {
  width: 100%;
  height: 100%;
}

.p-top-fv__img {
  margin: 0;
  width: 100%;
  height: 100%;
}
.p-top-fv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-top-fv__img {
    width: 95%;
    margin-inline: auto;
  }
}

/* 右：縦書きキャッチ */
.p-top-fv__copy {
  margin-top: 7.125rem;
  font-size: 3.75rem;
  color: #1a1917;
  max-width: 25.375rem;
  width: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 5rem;
}
@media screen and (max-width: 768px) {
  .p-top-fv__copy {
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    max-width: 100%;
    margin-top: 1.25rem;
    font-size: 2.125rem;
    height: 7.375rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 0.625rem;
    padding-left: 10px;
  }
}

.p-top-fv__catchcopy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  line-height: 1.25;
  letter-spacing: 0.08em;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .p-top-fv__catchcopy {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
}

.p-top-about {
  background: #fff;
  margin-top: -4.375rem;
  overflow: hidden;
}

.js-about-swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
  pointer-events: none;
}

/* Swiper */
.js-about-swiper {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
@media screen and (max-width: 768px) {
  .js-about-swiper {
    margin-top: 7.5rem;
  }
}

/* スライドの中身を中央へ */
.js-about-swiper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: auto;
}

/* テキスト */
.p-top-about__title {
  margin: 0;
  font-size: 9.375rem;
  font-weight: 700;
  color: #2f3f35;
}
@media screen and (max-width: 768px) {
  .p-top-about__title {
    font-size: 5.25rem;
  }
}

.p-top-about__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 68.75rem;
  width: 100%;
  gap: 3.75rem;
  padding-inline: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-top-about__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-inline: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 2.5625rem;
    gap: 1.875rem;
  }
}

.p-top-about__wrapper-img {
  margin: 0;
  aspect-ratio: 550/480;
  max-width: 34.375rem;
  width: 100%;
}
.p-top-about__wrapper-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-about__wrapper-content {
  max-width: 30.625rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  .p-top-about__wrapper-content {
    gap: 0;
    max-width: 34.375rem;
  }
}

.p-top-about__wrapper-title {
  font-size: 0.875rem;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  color: #1a1917;
  margin-top: 4.375rem;
}
@media screen and (max-width: 768px) {
  .p-top-about__wrapper-title {
    margin-top: 0rem;
  }
}

.p-top-about__wrapper-text {
  font-size: 1rem;
  font-weight: 300;
  color: #1a1917;
  line-height: 2.375rem;
}
@media screen and (max-width: 768px) {
  .p-top-about__wrapper-text {
    font-size: 0.875rem;
    margin-top: 1.875rem;
    margin-bottom: 2.5rem;
  }
}

.p-top-about__readmore {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-left: auto;
  position: relative;
  gap: 0.625rem;
}

.p-top-service {
  padding-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-top-service {
    padding-top: 5rem;
  }
}

.p-top-service__wrapper {
  max-width: 68.75rem;
  width: 100%;
  margin-inline: auto;
}

.p-top-service__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  padding-inline: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-top-service__title {
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    max-width: 34.375rem;
    margin-inline: auto;
  }
}

.c-top-title {
  font-size: 4.375rem;
  font-weight: 700;
  color: #1a1917;
  font-family: "Oswald", sans-serif;
}
@media screen and (max-width: 768px) {
  .c-top-title {
    font-size: 2.375rem;
  }
}

.p-top-service__list {
  max-width: 68.75rem;
  width: 100%;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.125rem;
  padding-inline: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-top-service__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 34.375rem;
    margin-inline: auto;
    gap: 3.125rem;
  }
}

.p-top-service__item {
  position: relative;
}

.p-top-service__item-img {
  margin: 0;
  -webkit-box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
          box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
}
.p-top-service__item-img img {
  width: 22.1875rem;
  height: 10.625rem;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .p-top-service__item-img img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 375px) {
  .p-top-service__item-img img {
    aspect-ratio: 355/170;
    max-width: 22.1875rem;
  }
}

.p-top-service__item-img-title {
  position: absolute;
  top: 3.0625rem;
  left: 1.875rem;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
}
@media screen and (max-width: 768px) {
  .p-top-service__item-img-title {
    top: 20%;
  }
}

.p-top-service__item-img-text {
  position: absolute;
  top: 5.1875rem;
  left: 1.875rem;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
}

.p-top-service__item-text {
  font-size: 1rem;
  font-weight: 300;
  color: #1a1917;
  line-height: 2.375rem;
  max-width: 20.9375rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-top-service__item-text {
    max-width: 100%;
  }
}

.p-top-service__readmore {
  margin-top: 1.25rem;
  max-width: 8.8125rem;
  width: 100%;
  margin-left: auto;
  margin-right: 1.25rem;
  border: 0.0625rem solid #2f3f35;
  border-radius: 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  line-height: 1;
}

.p-top-works {
  padding-top: 7.5rem;
}

.p-top-works__inner {
  background-color: #f7f5f0;
}

.p-top-works__title {
  max-width: 68.75rem;
  width: 100%;
  margin-inline: auto;
  padding-top: 111px;
  padding-inline: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-top-works__title {
    padding-top: 3.75rem;
    max-width: 34.375rem;
    margin-inline: auto;
  }
}

.p-top-works__wrapper-2 {
  max-width: 68.75rem;
  width: 100%;
  margin-inline: auto;
  background-color: #fff;
  margin-top: 2.5rem;
  padding-bottom: 2.25rem;
}
@media screen and (max-width: 768px) {
  .p-top-works__wrapper-2 {
    max-width: 34.375rem;
    padding-inline: 2.5rem;
    margin-top: 1.25rem;
  }
}

.p-top-works__list {
  margin-bottom: 2.5rem;
}

.p-top-works__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-top-works__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.125rem;
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
  border-bottom: 0.0625rem solid #e5e0d6;
  margin-inline: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .p-top-works__card {
    gap: 1.125rem;
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
    max-width: 18.4375rem;
  }
}

.p-top-works__card-img {
  margin: 0;
  aspect-ratio: 290/229;
  max-width: 18.125rem;
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-top-works__card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 290/229;
  display: block;
}
@media screen and (max-width: 768px) {
  .p-top-works__card-img {
    aspect-ratio: 120/90;
    max-width: 7.5rem;
  }
}

.p-top-works-card__body {
  max-width: 42.5rem;
  width: 100%;
  position: relative;
  margin-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .p-top-works-card__body {
    max-width: 9.8125rem;
  }
}

.p-top-works-card__tag {
  background-color: #ebe6dc;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -ms-flex-item-align: start;
      align-self: flex-start;
  padding-left: 1.125rem;
  padding-right: 1.125rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #5c574f;
}
@media screen and (max-width: 768px) {
  .p-top-works-card__tag {
    font-size: 0.625rem;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
  }
}

.p-top-works-card__title {
  margin-top: 2.0625rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: #1a1917;
  max-width: 24em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline;
  background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor));
  background-image: linear-gradient(currentColor, currentColor);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 0 1px;
  -webkit-transition: background-size 0.3s ease;
  transition: background-size 0.3s ease;
}
@media screen and (max-width: 768px) {
  .p-top-works-card__title {
    margin-top: 0.875rem;
    font-size: 0.875rem;
    line-height: 2;
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
}

.p-top-works__card:hover .p-top-works-card__title {
  background-size: 100% 1px;
}
@media screen and (max-width: 768px) {
  .p-top-works__card:hover .p-top-works-card__title {
    background-size: 0;
  }
}

.p-top-works-card__text {
  margin-top: 1.875rem;
  font-size: 1rem;
  font-weight: 300;
  color: #5c574f;
  line-height: 2.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-top-works-card__text {
    margin-top: 0.625rem;
    display: none;
    -webkit-line-clamp: 3;
  }
}

.p-top-works-card__date {
  display: block;
  margin-top: auto;
  font-size: 0.75rem;
  font-weight: 300;
  color: #8a8478;
}
@media screen and (max-width: 768px) {
  .p-top-works-card__date {
    font-size: 0.625rem;
    margin-top: 0.75rem;
  }
}

.p-top-works__readmore-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 2.25rem;
}
@media screen and (max-width: 768px) {
  .p-top-works__readmore-link {
    margin-right: 0;
  }
}

.p-top-works__readmore {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.p-about-philosophy {
  padding-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-about-philosophy {
    padding-top: 5rem;
  }
}

.p-about-philosophy__wrapper {
  max-width: 68.75rem;
  width: 100%;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #f7f5f0;
}
@media screen and (max-width: 768px) {
  .p-about-philosophy__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-inline: 1.25rem;
  }
}

.p-about-philosophy__left-wrapper {
  max-width: 46.25rem;
  width: 100%;
}

.p-about-philosophy__title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 4.375rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1;
  max-width: 42.5rem;
  width: 100%;
  margin-inline: auto;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-about-philosophy__title-wrapper {
    margin-top: 3.75rem;
  }
}

.p-about-philosophy__subtitle {
  font-size: 1rem;
  font-weight: 700;
  color: #2a382f;
}
@media screen and (max-width: 768px) {
  .p-about-philosophy__subtitle {
    font-size: 0.75rem;
  }
}

.p-about-philosophy__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: #1a1917;
  font-family: "Oswald", sans-serif;
  margin-top: 0.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-about-philosophy__title {
    font-size: 1.625rem;
    margin-top: 0;
  }
}

.p-about-philosophy__title-line {
  display: inline-block;
  width: 3.75rem;
  height: 0.125rem;
  background-color: #1a1917;
}

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

.p-about-philosophy__text {
  font-size: 1rem;
  font-weight: 300;
  color: #1a1917;
  line-height: 2.375rem;
  max-width: 42.5rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-about-philosophy__text {
    font-size: 0.875rem;
    line-height: 2rem;
    margin-inline: 0;
  }
}

.p-about-philosophy__name {
  margin-top: 2.5rem;
  font-size: 1rem;
  font-weight: 300;
  color: #1a1917;
  max-width: 42.5rem;
  width: 100%;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .p-about-philosophy__name {
    margin-top: 1.875rem;
    font-size: 0.875rem;
  }
}

.p-about-philosophy__right-wrapper {
  max-width: 22.5rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-about-philosophy__right-wrapper {
    max-width: none;
  }
}

.p-about-philosophy__img {
  margin: 0;
  max-width: 22.5rem;
  width: 100%;
}
.p-about-philosophy__img picture {
  display: block;
  width: 100%;
  height: 100%;
}
.p-about-philosophy__img img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .p-about-philosophy__img {
    max-width: none;
    aspect-ratio: 335/300;
    width: 100%;
    margin-inline: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 1.875rem;
  }
}

.p-about-company {
  padding-top: 4.375rem;
  padding-bottom: 7.5rem;
  background-color: #f7f5f0;
}
@media screen and (max-width: 768px) {
  .p-about-company {
    padding-top: 3.75rem;
    padding-bottom: 5rem;
  }
}

.p-about-company__wrapper {
  max-width: 68.75rem;
  width: 100%;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-inline: 1.25rem;
}

.p-about-company__title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1;
}

.p-about-company__subtitle {
  font-size: 1rem;
  font-weight: 700;
  color: #2a382f;
}
@media screen and (max-width: 768px) {
  .p-about-company__subtitle {
    font-size: 0.75rem;
  }
}

.p-about-company__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1917;
  font-family: "Oswald", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-about-company__title {
    font-size: 1.625rem;
    margin-top: 0;
  }
}

.p-about-company__title-line {
  display: inline-block;
  width: 3.75rem;
  height: 0.125rem;
  background-color: #1a1917;
}

.p-about-company__list {
  margin-top: 3.125rem;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 375px) {
  .p-about-company__list {
    padding-bottom: 5rem;
  }
}

.p-about-company__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2.5rem 0;
  border-bottom: 0.0625rem solid #e5e0d6;
}
@media screen and (max-width: 375px) {
  .p-about-company__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.75rem;
    padding: 1.875rem 0;
  }
}

.p-about-company__term {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 10.625rem;
  font-size: 1rem;
  font-weight: 500;
  color: #1a1917;
}
@media screen and (max-width: 768px) {
  .p-about-company__term {
    width: 6.25rem;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 375px) {
  .p-about-company__term {
    width: 100%;
    font-size: 0.875rem;
  }
}

.p-about-company__desc {
  font-size: 1rem;
  font-weight: 300;
  color: #1a1917;
}
@media screen and (max-width: 375px) {
  .p-about-company__desc {
    font-size: 0.875rem;
  }
}
.p-about-company__desc p {
  margin: 0;
}
.p-about-company__desc p + p {
  margin-top: 1rem;
}

.js-company-swiper {
  overflow: hidden;
  pointer-events: none;
}
.js-company-swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.js-company-swiper .swiper-slide {
  width: 30rem;
  height: 25rem;
}
@media screen and (max-width: 768px) {
  .js-company-swiper .swiper-slide {
    width: 11.25rem;
    height: 9.375rem;
  }
}

.p-about-access {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-about-access {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.p-about-access__wrapper {
  max-width: 68.75rem;
  width: 100%;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-about-access-title__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1;
  max-width: 42.5rem;
  width: 100%;
  display: flex;
}

.p-about-access__subtitle {
  font-size: 1rem;
  font-weight: 700;
  color: #2a382f;
}
@media screen and (max-width: 768px) {
  .p-about-access__subtitle {
    font-size: 0.75rem;
  }
}

.p-about-access__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1917;
  font-family: "Oswald", sans-serif;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-about-access__title {
    font-size: 1.625rem;
    margin-top: 0;
  }
}

.p-about-access__title-line {
  display: inline-block;
  width: 3.75rem;
  height: 0.125rem;
  background-color: #1a1917;
}

.p-about-access__content-wrapper {
  margin-top: 0.5rem;
}

.p-about-access__address {
  font-size: 1rem;
  font-weight: 300;
  color: #1a1917;
}
@media screen and (max-width: 768px) {
  .p-about-access__address {
    font-size: 0.875rem;
  }
}

.p-about-access__map-img {
  margin-top: 4rem;
  max-width: 68.75rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-about-access__map-img {
    margin-top: 1.4375rem;
  }
}
.p-about-access__map-img picture {
  display: block;
  width: 100%;
  height: 100%;
}
.p-about-access__map-img img {
  width: 100%;
  height: auto;
  display: block;
}

.p-service-about {
  padding-top: 6.125rem;
}

.p-service-about__inner {
  max-width: 52.5rem;
  width: 100%;
  margin-inline: auto;
}

.p-service-about__top-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-inline: auto;
  max-width: 52.5rem;
  width: 100%;
}

.p-service-about__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7.5rem;
  margin-inline: auto;
}

.p-service-about__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-service-about__item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}

.p-service-about__item-text {
  font-size: 1rem;
  font-weight: 300;
  color: #2f3f35;
}

.p-service-about__item-icon {
  width: 0.5625rem;
  height: 0.3125rem;
}

.p-service-about__bottom-wrapper {
  margin-top: 6.5rem;
}

.p-service-about__bottom-title {
  font-size: 2.5rem;
  font-weight: 500;
  color: #1a1917;
  line-height: 3.75rem;
}

.p-service-about__bottom-text {
  font-size: 1rem;
  font-weight: 300;
  color: #1a1917;
  line-height: 2.375rem;
  margin-top: 2.5rem;
}

.p-service-detail {
  padding-top: 7.5rem;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-service-detail {
    padding-top: 3.125rem;
    padding-inline: 0rem;
  }
}

.p-service-detail__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 75rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-service-detail__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: #f7f5f0;
  }
}

.p-service-detail__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 35rem;
  width: 100%;
  background-color: #f7f5f0;
  -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 (max-width: 768px) {
  .p-service-detail__body {
    padding-inline: 1.25rem;
  }
}

.p-service-detail__info {
  max-width: 25rem;
  width: 100%;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-service-detail__info {
    padding-top: 3.75rem;
    margin-inline: 0;
    max-width: 35rem;
  }
}

.p-service-detail__number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2a382f;
  font-family: "Oswald", sans-serif;
  gap: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .p-service-detail__number {
    font-size: 2rem;
    gap: 0.625rem;
  }
}

.p-service-detail__title-line {
  width: 0.0625rem;
  height: 2.125rem;
  background-color: #1a1917;
}
@media screen and (max-width: 768px) {
  .p-service-detail__title-line {
    height: 1.875rem;
  }
}

.p-service-detail__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1917;
}
@media screen and (max-width: 768px) {
  .p-service-detail__title {
    font-size: 1.25rem;
  }
}

.p-service-detail__desc {
  font-size: 1.375rem;
  font-weight: 500;
  color: #1a1917;
}
@media screen and (max-width: 768px) {
  .p-service-detail__desc {
    font-size: 0.875rem;
    line-height: 2rem;
    margin-top: 0.3125rem;
  }
}

.p-service-detail__img {
  max-width: 40rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-service-detail__img {
    padding-inline: 1.25rem;
    padding-top: 1.25rem;
    background-color: #f7f5f0;
    max-width: 35rem;
  }
}

.p-service-detail__feature {
  max-width: 68.75rem;
  width: 100%;
  margin-inline: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.875rem;
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-service-detail__feature {
    padding-inline: 1.25rem;
    margin-top: 1.25rem;
    margin-bottom: 3.125rem;
  }
}

.p-service-detail__feature-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}

.p-service-detail__feature-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.p-service-detail__feature-title {
  font-size: 1.375rem;
  font-weight: 500;
  color: #1a1917;
  font-family: "Oswald", sans-serif;
}
@media screen and (max-width: 768px) {
  .p-service-detail__feature-title {
    font-size: 1.125rem;
  }
}

.p-service-detail__feature-sub {
  font-size: 0.75rem;
  font-weight: 500;
  color: #5c574f;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-service-detail__feature-sub {
    font-size: 0.625rem;
  }
}

.p-service-detail__feature-desc {
  font-size: 1rem;
  font-weight: 300;
  color: #1a1917;
  line-height: 2.375rem;
}
@media screen and (max-width: 768px) {
  .p-service-detail__feature-desc {
    font-size: 0.875rem;
    line-height: 2rem;
  }
}

.p-intro {
  padding-top: 6.125rem;
}
@media screen and (max-width: 768px) {
  .p-intro {
    padding-top: 1.875rem;
  }
}

.p-intro__inner {
  max-width: 52.5rem;
  width: 100%;
  margin-inline: auto;
}

.p-intro__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-inline: auto;
  max-width: 52.5rem;
  width: 100%;
}

.p-intro__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-intro__list {
    gap: 2.5rem;
  }
}

.p-intro__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-intro__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-intro__link {
    gap: 0.375rem;
  }
}

.p-intro__link-text {
  font-size: 1rem;
  font-weight: 300;
  color: #2f3f35;
}
@media screen and (max-width: 768px) {
  .p-intro__link-text {
    font-size: 0.75rem;
  }
}

.p-intro__link-icon {
  width: 0.5625rem;
  height: 0.3125rem;
}

.p-intro__body {
  margin-top: 6.5rem;
}
@media screen and (max-width: 768px) {
  .p-intro__body {
    margin-top: 3.75rem;
    padding-inline: 1.25rem;
  }
}

.p-intro__heading {
  font-size: 2.5rem;
  font-weight: 500;
  color: #1a1917;
  line-height: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-intro__heading {
    font-size: 1.125rem;
    line-height: 2.3125rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-intro__desc {
  font-size: 1rem;
  font-weight: 300;
  color: #1a1917;
  line-height: 2.375rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-intro__desc {
    font-size: 0.875rem;
    line-height: 2rem;
    margin-top: 1.875rem;
  }
}

.p-work-about {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f5f0;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-work-about {
    padding-inline: 0rem;
  }
}

.p-work-about--sub {
  background-color: #fff;
  padding-top: 1.875rem;
}

.p-work-about__inner {
  max-width: 68.75rem;
  width: 100%;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10.25rem;
}
@media screen and (max-width: 768px) {
  .p-work-about__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 34.375rem;
    margin-inline: auto;
    padding-inline: 2.5rem;
    gap: 2.375rem;
  }
}

.p-work-about__sidebar {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 15.5rem;
  position: sticky;
  top: 1.25rem;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media screen and (max-width: 768px) {
  .p-work-about__sidebar {
    position: static;
  }
}

.p-work-about__category-list {
  margin-top: 2.8125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .p-work-about__category-list {
    display: grid;
    grid-template-columns: repeat(2, -webkit-max-content);
    grid-template-columns: repeat(2, max-content);
    -webkit-column-gap: 3.375rem;
       -moz-column-gap: 3.375rem;
            column-gap: 3.375rem;
    row-gap: 0.9375rem;
    margin-inline: auto;
    max-width: 34.375rem;
  }
}

.p-work-about__category-item {
  font-size: 0.875rem;
  font-weight: 400;
  color: #5c574f;
}

.p-work-about__category-item.is-active {
  font-weight: 500;
  color: #1a1917;
}

.p-work-about__category-item.is-active::before {
  content: "■";
  margin-right: 0.375rem;
  color: #2f3f35;
}

.p-work-about__category-link {
  color: inherit;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .p-work-about__category-link {
    font-size: 0.75rem;
  }
}

.p-work-about__category-link:hover {
  opacity: 0.7;
}

.p-work-about__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-work-about__list {
  border-left: 0.0625rem solid #e5e0d6;
  padding-left: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-work-about__list {
    border-left: none;
    padding-left: 0rem;
  }
}

.p-work-about__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-work-about__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.875rem;
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
  border-bottom: 0.0625rem solid #E2E2E2;
  max-width: 64.125rem;
  width: 100%;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .p-work-about__card {
    gap: 0.9375rem;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}

.p-work-about__card-img {
  margin: 0;
  width: 10rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-work-about__card-img {
    width: 8.125rem;
  }
}
.p-work-about__card-img img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .p-work-about__card-img img {
    aspect-ratio: 130/100;
  }
}

.p-work-about__card-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 0;
  max-width: 33rem;
}

.p-work-about__card-tag {
  background-color: #ebe6dc;
  display: inline-block;
  -ms-flex-item-align: start;
      align-self: flex-start;
  padding: 0.25rem 1.125rem;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #5c574f;
}
@media screen and (max-width: 768px) {
  .p-work-about__card-tag {
    font-size: 0.625rem;
    padding: 0.3125rem 0.9375rem;
  }
}

.p-work-about__card-title {
  font-size: 1.125rem;
  font-weight: 500;
  color: #1a1917;
  display: inline;
  padding-bottom: 0.25rem;
  /* linear-gradient の background-size 下線は複数行で最終行にしか乗らないことがあるため、
     text-decoration で各行に下線（ホバーで色を出す） */
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 0.0625rem;
  text-underline-offset: 0.25rem;
  -webkit-transition: text-decoration-color 0.35s ease;
  transition: text-decoration-color 0.35s ease;
}
.p-work-about__card-title::before {
  content: "";
  display: block;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-work-about__card-title {
    font-size: 0.875rem;
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    line-height: 2;
  }
  .p-work-about__card-title::before {
    margin-top: 0.625rem;
  }
}

.p-work-about__card:hover .p-work-about__card-title {
  text-decoration-color: currentColor;
}

.p-work-about__card-date {
  display: block;
  margin-top: auto;
  font-size: 0.625rem;
  font-weight: 700;
  color: #8a8478;
}
@media screen and (max-width: 768px) {
  .p-work-about__card-date {
    font-size: 0.625rem;
  }
}

.p-news-shosai {
  padding-top: 3.75rem;
  padding-bottom: 7.5rem;
  padding-inline: 1.25rem;
}

.p-news-shosai__inner {
  max-width: 75rem;
  width: 100%;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.0625rem;
}
@media screen and (max-width: 768px) {
  .p-news-shosai__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* メインコンテンツ */
.p-news-shosai__main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  max-width: 50.1875rem;
}

.p-news-shosai__header {
  margin-bottom: 1.875rem;
  padding-inline: 2.625rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-news-shosai__header {
    padding-inline: 0rem;
  }
}

.p-news-shosai__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.3125rem;
}

.p-news-shosai__tag {
  font-size: 0.6875rem;
  font-weight: 400;
  color: #1a1917;
  border-radius: 0.125rem;
  padding: 0.25rem 0.75rem;
  white-space: nowrap;
  background-color: #ebe6dc;
}

.p-news-shosai__title {
  margin-top: 1.25rem;
  font-size: 1.625rem;
  font-weight: 500;
  color: #1a1917;
  line-height: 1.5;
}

.p-news-shosai__date {
  display: block;
  margin-top: 1.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #8a8478;
}

/* 記事本文 (p-entry) */
.p-news-shosai__entry {
  margin-top: 2.5rem;
  padding-inline: 2.625rem;
}
@media screen and (max-width: 768px) {
  .p-news-shosai__entry {
    padding-inline: 0rem;
  }
}

.p-entry__img {
  max-width: 45rem;
  margin-inline: auto;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-entry--news-shosai > *:last-child {
  margin-bottom: 0;
}
.p-entry--news-shosai h2 {
  font-size: 1.375rem;
  font-weight: 500;
  color: #1a1917;
  margin-bottom: 2.5rem;
  padding-left: 1rem;
  border-left: 0.25rem solid #2f3f35;
}
.p-entry--news-shosai h3 {
  font-size: 1.125rem;
  font-weight: 500;
  color: #1a1917;
  margin-bottom: 2.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 0.0625rem solid #e5e0d6;
  line-height: 1.5;
}
.p-entry--news-shosai p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 4.5rem;
  color: #1a1917;
}
.p-entry--news-shosai ul {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  padding-left: 1.25rem;
  border-bottom: 0.0625rem solid #e5e0d6;
}
.p-entry--news-shosai ul li {
  font-size: 1rem;
  color: #1a1917;
  list-style: disc;
}

/* ページャー */
.p-news-shosai__pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 3.75rem;
  padding-inline: 2.625rem;
}

.p-news-shosai__pager-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #3d5245;
  text-decoration: none;
  border: 0.0625rem solid #3d5245;
  border-radius: 0.25rem;
  padding: 0.75rem 1.5rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-news-shosai__pager-link:hover {
  opacity: 0.7;
}
.p-news-shosai__pager-link:hover .p-news-shosai__pager-arrow--prev {
  -webkit-transform: scaleX(-1) translateX(0.3125rem);
          transform: scaleX(-1) translateX(0.3125rem);
}
.p-news-shosai__pager-link:hover .p-news-shosai__pager-arrow--next {
  -webkit-transform: translateX(0.3125rem);
          transform: translateX(0.3125rem);
}

.p-news-shosai__pager-arrow {
  width: 0.4375rem;
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.p-news-shosai__pager-arrow--prev {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

/* サイドバー */
.p-news-shosai__sidebar {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 21.5625rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-news-shosai__sidebar {
    width: 100%;
  }
}

.p-news-shosai__sidebar-section + .p-news-shosai__sidebar-section {
  margin-top: 2.5rem;
}

.p-news-shosai__sidebar-heading {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background-color: #2f3f35;
  padding: 1.125rem;
}

/* 最新記事 */
.p-news-shosai__recent-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-news-shosai__recent-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.125rem;
  padding: 1.125rem;
  position: relative;
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-news-shosai__recent-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1.125rem;
  right: 1.125rem;
  height: 0.0625rem;
  background-color: #e5e0d6;
}
.p-news-shosai__recent-link:hover {
  opacity: 0.7;
}

.p-news-shosai__recent-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 6.25rem;
  height: 6.25rem;
  margin: 0;
}
.p-news-shosai__recent-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-news-shosai__recent-img {
    width: 6.25rem;
    height: 6.25rem;
  }
}

.p-news-shosai__recent-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  max-width: 9.125rem;
  font-size: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  .p-news-shosai__recent-body {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-news-shosai__recent-title {
  font-size: 0.75rem;
  font-weight: 500;
  color: #1a1917;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-news-shosai__recent-title {
    font-size: 0.75rem;
    line-height: 2.3;
  }
}

.p-news-shosai__recent-date {
  display: block;
  margin-top: auto;
  padding-top: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #8a8478;
}
@media screen and (max-width: 768px) {
  .p-news-shosai__recent-date {
    font-size: 0.625rem;
    padding-bottom: 0rem;
  }
}

.p-news-shosai__sidebar-list li + li {
  margin-top: 4px;
}

.p-news-shosai__sidebar-list a {
  display: block;
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: #1a1917;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  border-bottom: 0.0625rem solid #e5e0d6;
}
.p-news-shosai__sidebar-list a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .p-news-shosai__sidebar-list a {
    padding: 1.125rem;
  }
}

.p-works-shosai {
  padding-top: 3.75rem;
  padding-bottom: 7.5rem;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-works-shosai {
    padding-top: 1.875rem;
    padding-bottom: 5rem;
    padding-inline: 1.875rem;
  }
}

.p-works-shosai__wrapper {
  max-width: 52.5rem;
  width: 100%;
  margin-inline: auto;
}

.p-works-shosai__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-inline: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 52.5rem;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 2.6875rem;
}
@media screen and (max-width: 768px) {
  .p-works-shosai__info {
    margin-bottom: 2.25rem;
  }
}

.p-works-shosai__info-tag {
  background-color: #ebe6dc;
  display: inline-block;
  padding: 0.25rem 1.125rem;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #5c574f;
  background-color: #5c574f;
}
@media screen and (max-width: 768px) {
  .p-works-shosai__info-tag {
    font-size: 0.625rem;
    padding: 0.3125rem 0.9375rem;
  }
}

.p-works-shosai__info-title {
  margin-top: 1.25rem;
  font-size: 1.625rem;
  font-weight: 500;
  color: #1a1917;
}
@media screen and (max-width: 768px) {
  .p-works-shosai__info-title {
    font-size: 1.125rem;
    margin-top: 0.75rem;
    line-height: 1.875rem;
  }
}

.p-works-shosai__info-date {
  display: block;
  margin-top: 1.6875rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #8a8478;
}
@media screen and (max-width: 768px) {
  .p-works-shosai__info-date {
    font-size: 0.625rem;
    margin-top: 0.625rem;
  }
}

.p-works-shosai__card-text {
  margin-top: 1.875rem;
  font-size: 1rem;
  line-height: 2rem;
  font-weight: 300;
  color: #1a1917;
}

.p-works-shosai__btn {
  margin-top: 3.75rem;
  margin-inline: auto;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  max-width: 17.8125rem;
  font-size: 0.875rem;
  font-weight: medium;
}

.p-entry > *:last-child {
  margin-bottom: 0;
}
.p-entry img {
  display: block;
  aspect-ratio: 840/471;
  max-width: 53.75rem;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin-inline: auto;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-entry img {
    margin-bottom: 2.625rem;
  }
}
.p-entry p {
  max-width: 42.5rem;
  margin-inline: auto;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 3.125rem;
  color: #1a1917;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .p-entry p {
    font-size: 0.875rem;
    line-height: 2rem;
    margin-bottom: 2.5rem;
  }
}

.p-contact-form {
  padding-top: 3.75rem;
  padding-bottom: 7.5rem;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-contact-form {
    padding-top: 1.875rem;
  }
}

.p-contact-form__intro {
  margin-bottom: 3.125rem;
}

.p-contact-form__intro-text {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 300;
  color: #1a1917;
  line-height: 2.375rem;
}
@media screen and (max-width: 768px) {
  .p-contact-form__intro-text {
    font-size: 0.875rem;
    line-height: 2rem;
    margin-top: 0;
  }
}

.p-contact-form__form {
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-contact-form__form {
    margin-top: 2.5rem;
  }
}

.p-contact-form__group + .p-contact-form__group {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-contact-form__group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.625rem;
  }
}

.p-contact-form__label-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}
@media screen and (max-width: 768px) {
  .p-contact-form__label-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0;
  }
}

.p-contact-form__label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1a1917;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: 0.625rem;
}

.p-contact-form__required {
  color: #b85c4a;
  margin-left: 0.0625rem;
}

.p-contact-form__note {
  margin: 0;
  font-size: 0.9375rem;
  color: #1a1917;
  font-weight: 500;
}

.p-contact-form__input {
  display: block;
  width: 100%;
  padding: 0.9375rem 0.9375rem;
  font-size: 0.875rem;
  color: #1a1917;
  border: 0.0625rem solid #e5e0d6;
  border-radius: 0.25rem;
  background-color: #fff;
  outline: none;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.p-contact-form__input::-webkit-input-placeholder {
  color: #8a8478;
}
.p-contact-form__input::-moz-placeholder {
  color: #8a8478;
}
.p-contact-form__input:-ms-input-placeholder {
  color: #8a8478;
}
.p-contact-form__input::-ms-input-placeholder {
  color: #8a8478;
}
.p-contact-form__input::placeholder {
  color: #8a8478;
}
.p-contact-form__input:focus {
  border-color: #2f3f35;
}
@media screen and (max-width: 768px) {
  .p-contact-form__input {
    font-size: 0.875rem;
  }
}

.p-contact-form__select-wrapper {
  position: relative;
}
.p-contact-form__select-wrapper::after {
  content: "▼";
  position: absolute;
  right: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0.75rem;
  color: #1a1917;
  pointer-events: none;
}

.p-contact-form__select {
  display: block;
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  color: #1a1917;
  border: 0.0625rem solid #e5e0d6;
  border-radius: 0.25rem;
  background-color: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  cursor: pointer;
}
.p-contact-form__select:focus {
  border-color: #2f3f35;
}

.p-contact-form__textarea {
  display: block;
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  color: #1a1917;
  border: 0.0625rem solid #e5e0d6;
  border-radius: 0.25rem;
  background-color: #fff;
  outline: none;
  resize: vertical;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.p-contact-form__textarea:focus {
  border-color: #2f3f35;
}

.p-contact-form__agree {
  margin-top: 2.5rem;
  text-align: center;
}
.p-contact-form__agree .wpcf7-list-item label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  position: relative;
  text-align: left;
}
.p-contact-form__agree .wpcf7-list-item-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.5rem;
}

.p-contact-form__agree-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
}

.p-contact-form__checkbox {
  position: absolute;
  opacity: 0;
  width: 0.0625rem;
  height: 0.0625rem;
  margin: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  cursor: pointer;
}
.p-contact-form__checkbox:focus-visible + .p-contact-form__checkbox-icon, .p-contact-form__checkbox:focus-visible + .wpcf7-list-item-label .p-contact-form__checkbox-icon {
  outline: 0.125rem solid #2f3f35;
  outline-offset: 0.125rem;
}

.p-contact-form__checkbox-icon {
  display: inline-block;
  width: 1.0625rem;
  height: 1.0625rem;
  border: 0.0625rem solid #C8C8C8;
  border-radius: 0.125rem;
  padding-top: 0.3125rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  -webkit-transition: background-color 0.2s ease, border-color 0.2s ease;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.p-contact-form__checkbox:checked + .wpcf7-list-item-label .p-contact-form__checkbox-icon,
.p-contact-form__checkbox:checked + .p-contact-form__checkbox-icon {
  background-color: #2f3f35;
  border-color: #2f3f35;
}
.p-contact-form__checkbox:checked + .wpcf7-list-item-label .p-contact-form__checkbox-icon::after,
.p-contact-form__checkbox:checked + .p-contact-form__checkbox-icon::after {
  content: "";
  position: absolute;
  top: 0.125rem;
  left: 0.3125rem;
  width: 0.375rem;
  height: 0.625rem;
  border: solid #fff;
  border-width: 0 0.125rem 0.125rem 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.p-contact-form__agree-text {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #1a1917;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.p-contact-form__required {
  color: red;
}

.p-contact-form__submit {
  margin-top: 2.5rem;
  text-align: center;
}

.p-contact-form__submit-btn {
  display: inline-block;
  max-width: 21.25rem;
  width: 100%;
  padding: 1.125rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  background-color: #2f3f35;
  border: 0.125rem solid #2f3f35;
  border-radius: 0.5rem;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.p-contact-form__submit-btn:hover {
  background-color: #fff;
  color: #2f3f35;
}

.p-contact-confirm {
  padding-top: 3.75rem;
  padding-bottom: 7.5rem;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-contact-confirm {
    padding-top: 1.875rem;
  }
}

.p-contact-confirm__inner {
  max-width: 42.5rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-contact-confirm__inner {
    max-width: 20.9375rem;
    width: 100%;
    margin-inline: auto;
  }
}

.p-contact-confirm__intro {
  font-size: 1rem;
  font-weight: 300;
  color: #1a1917;
}

.p-contact-confirm__list {
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-contact-confirm__list {
    margin-top: 2.5rem;
  }
}

.p-contact-confirm__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.0625rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-contact-confirm__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    margin-top: 1.875rem;
  }
}

.p-contact-confirm__term {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 10rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1a1917;
}

.p-contact-confirm__required {
  color: #b85c4a;
  margin-left: 0.125rem;
}

.p-contact-confirm__desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: #1a1917;
}

.p-contact-confirm__desc--long {
  line-height: 2rem;
}

.p-contact-confirm__buttons {
  margin-top: 2.5rem;
  max-width: 42.5rem;
  width: 100%;
  gap: 5rem;
}
@media screen and (max-width: 768px) {
  .p-contact-confirm__buttons {
    gap: 1.4375rem;
    max-width: 20.9375rem;
  }
}

.p-contact-confirm__buttons p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5rem;
}
@media screen and (max-width: 768px) {
  .p-contact-confirm__buttons p {
    gap: 1.4375rem;
  }
}

.p-contact-confirm__buttons br {
  display: none;
}

.p-contact-confirm__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 17.5rem;
  width: 100%;
  padding: 1.125rem 2rem;
  font-size: 1.125rem;
  font-weight: 500;
  border-radius: 0.5rem;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .p-contact-confirm__btn {
    width: 9.4375rem;
    max-width: 9.4375rem;
    padding: 0.8125rem 0rem;
    font-size: 0.875rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 9.4375rem;
            flex: 0 0 9.4375rem;
  }
}

.p-contact-confirm__btn--back {
  color: #2f3f35;
  background-color: #fff;
  border: 0.125rem solid #2f3f35;
}
.p-contact-confirm__btn--back:hover {
  background-color: #2f3f35;
  color: #fff;
}

.p-contact-confirm__btn--submit {
  color: #fff;
  background-color: #2f3f35;
  border: 0.125rem solid #2f3f35;
}
.p-contact-confirm__btn--submit:hover {
  background-color: #fff;
  color: #2f3f35;
}

.p-news--sub {
  padding-top: 6.125rem;
  padding-bottom: 7.5rem;
  background-color: #fff;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-news--sub {
    padding-inline: 2.5rem;
  }
}

.p-top-news {
  padding-top: 7.5rem;
  padding-bottom: 8.0625rem;
  background-color: #f7f5f0;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-top-news {
    padding-top: 5rem;
    padding-bottom: 4.5rem;
  }
}

.p-news__inner {
  max-width: 68.75rem;
  width: 100%;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.75rem;
}

.p-news__wrapper {
  max-width: 68.75rem;
  width: 100%;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.75rem;
  padding-left: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-news__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 34.375rem;
    padding-left: 0rem;
  }
}

.p-news__sidebar {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 12.5rem;
}
@media screen and (max-width: 768px) {
  .p-news__sidebar {
    width: 100%;
  }
}

.p-news__sidebar2 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 12.5rem;
  position: sticky;
  top: 1.25rem;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.p-news__category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .p-news__category-list {
    display: grid;
    grid-template-columns: repeat(2, -webkit-max-content);
    grid-template-columns: repeat(2, max-content);
    -webkit-column-gap: 3.375rem;
       -moz-column-gap: 3.375rem;
            column-gap: 3.375rem;
    row-gap: 0.9375rem;
    max-width: 34.375rem;
    margin-inline: 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    justify-items: start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.p-news__category-list--mt {
  margin-top: 2.8125rem;
}
@media screen and (max-width: 768px) {
  .p-news__category-list--mt {
    margin-top: 1.25rem;
  }
}

.p-news__category-item {
  font-size: 0.875rem;
  font-weight: 400;
  color: #8a8478;
  position: relative;
  padding-left: 1.125rem;
}
@media screen and (max-width: 768px) {
  .p-news__category-item {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
  }
}

.p-news__category-item.is-active {
  font-weight: 500;
  color: #1a1917;
}

.p-news__category-item.is-active::before {
  content: "■";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-right: 0;
  color: #2f3f35;
}

.p-news__category-link {
  color: inherit;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .p-news__category-link {
    font-size: 0.75rem;
  }
}

.p-news__category-link:hover {
  opacity: 0.7;
}

.p-news__content {
  border-left: 0.0625rem solid #E2E2E2;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .p-news__content {
    border-left: none;
  }
}

.p-news__list {
  padding-left: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-news__list {
    border-top: 0.0625rem solid #E2E2E2;
    padding-left: 0rem;
    border-left: none;
  }
}

.p-news__item {
  border-bottom: 0.0625rem solid #E2E2E2;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.p-news__item-link {
  display: block;
  padding: 1.5rem 0.625rem;
  text-decoration: none;
  color: inherit;
}
@media screen and (max-width: 768px) {
  .p-news__item-link {
    padding: 1.25rem 0rem;
  }
}

.p-news__item-title {
  font-size: 1rem;
  font-weight: 500;
  color: #1a1917;
  margin-top: 1.875rem;
  display: block;
  width: 100%;
  max-width: 100%;
  white-space: normal;
}
@media screen and (max-width: 768px) {
  .p-news__item-title {
    font-size: 0.875rem;
    margin-top: 1.25rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 34.375rem;
  }
}

.p-news__item-title-line {
  --underline-dur: 0.45s;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor));
  background-image: linear-gradient(currentColor, currentColor);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 0 0.0625rem;
  padding-bottom: 0.25rem;
  -webkit-transition: background-size var(--underline-dur) cubic-bezier(0.33, 1, 0.68, 1);
  transition: background-size var(--underline-dur) cubic-bezier(0.33, 1, 0.68, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.p-news__item-link:hover .p-news__item-title-line {
  background-size: 100% 0.0625rem;
  -webkit-transition-delay: calc(var(--line-i, 0) * var(--underline-dur));
          transition-delay: calc(var(--line-i, 0) * var(--underline-dur));
}
@media screen and (max-width: 768px) {
  .p-news__item-link:hover .p-news__item-title-line {
    background-size: 0;
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
}

.p-news__date {
  font-size: 0.75rem;
  font-weight: 700;
  color: #8a8478;
  display: inline-block;
  margin-right: 1.8125rem;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .p-news__date {
    font-size: 0.625rem;
    margin-right: 0.75rem;
  }
}

.p-news__tags {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 1.25rem;
  font-size: 0.6875rem;
  font-weight: 500;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .p-news__tags {
    gap: 0.375rem;
  }
}

.p-news__tag {
  font-size: 0.75rem;
  font-weight: 400;
  color: #1a1917;
  border-radius: 0.125rem;
  padding: 0.25rem 0.75rem;
  white-space: nowrap;
  background-color: #f7f5f0;
}
@media screen and (max-width: 768px) {
  .p-news__tag {
    font-size: 0.625rem;
    padding: 0.3125rem 0.9375rem;
  }
}

.p-news__tag--sub {
  background-color: #fff;
}

.p-news__readmore {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-news__readmore {
    margin-top: 2.8125rem;
  }
}

.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  padding-top: 3.5rem;
  padding-left: 3.75rem;
}

.pagination__arrow {
  display: inline-block;
  width: 0.6875rem;
  height: 1.125rem;
}

.page-numbers {
  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: 1.875rem;
  height: 1.875rem;
  color: #000;
  border: 1px solid #000;
}

.page-numbers.current {
  color: #fff;
  background-color: #001E63;
}

.page-numbers.dots,
.page-numbers.prev,
.page-numbers.next {
  border: none;
}

.p-contact3 {
  padding-top: 3.75rem;
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-contact3 {
    padding-top: 4.375rem;
    margin-bottom: 5rem;
    padding-inline: 1.25rem;
  }
}

.p-contact3__content {
  max-width: 40rem;
  width: 100%;
  margin-inline: auto;
}

.p-contact3__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1917;
  font-family: "Oswald", sans-serif;
}
@media screen and (max-width: 768px) {
  .p-contact3__title {
    font-size: 1.5rem;
  }
}

.p-contact3__subtitle {
  font-size: 1.125rem;
  font-weight: 500;
  color: #1a1917;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-contact3__subtitle {
    font-size: 0.875rem;
    margin-top: 0.625rem;
  }
}

.p-contact3__text {
  margin-top: 2.75rem;
  font-size: 1rem;
  font-weight: 300;
  color: #1a1917;
  line-height: 2.375rem;
}
@media screen and (max-width: 768px) {
  .p-contact3__text {
    font-size: 0.875rem;
    line-height: 2rem;
    margin-top: 2.0625rem;
  }
}

.p-contact3__btn {
  margin-top: 2.5rem;
  max-width: 28.75rem;
  width: 100%;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #2f3f35;
  padding-top: 1.375rem;
  padding-bottom: 1.375rem;
}
@media screen and (max-width: 768px) {
  .p-contact3__btn {
    padding-top: 0.8125rem;
    padding-bottom: 0.8125rem;
  }
}

.p-contact3__btn-arrow {
  width: 0.3125rem;
  height: 0.5625rem;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.p-contact3-btn__text {
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-contact3-btn__text {
    font-size: 0.875rem;
  }
}

.p-404 {
  padding-top: 9.375rem;
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-404 {
    padding-top: 2.5rem;
    margin-bottom: 5rem;
  }
}

.p-404-fv__img {
  position: relative;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-404-fv__img {
    width: 100%;
    aspect-ratio: 365/243;
  }
}

.p-404__inner {
  max-width: 79.375rem;
  width: 100%;
  margin-inline: auto;
  position: relative;
  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 (max-width: 768px) {
  .p-404__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 0.625rem;
  }
}

.p-404__box {
  position: absolute;
  color: #1a1917;
  max-width: 31.8125rem;
  left: 40%;
}
@media screen and (max-width: 768px) {
  .p-404__box {
    position: static;
    max-width: 100%;
    left: auto;
  }
}

.p-404__title {
  font-size: 4.375rem;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-404__title {
    position: absolute;
    top: -27vw;
    left: 43vw;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    font-size: 2.1875rem;
    z-index: 1;
    white-space: nowrap;
  }
}

.p-404__text {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  line-height: 2.375rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-404__text {
    color: #1a1917;
    font-size: 0.875rem;
    line-height: 1.75rem;
    margin-top: 1.5625rem;
    padding-inline: 1.25rem;
  }
}

.p-404__btn {
  margin-top: 1.25rem;
  max-width: 9.0625rem;
}
@media screen and (max-width: 768px) {
  .p-404__btn {
    max-width: 11.25rem;
    margin-inline: auto;
  }
}

.p-404__btn-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  gap: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 0.0625rem solid #fff;
  border-radius: 0.25rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
@media screen and (max-width: 768px) {
  .p-404__btn-link {
    color: #2f3f35;
    border-color: #2f3f35;
  }
}

.p-404-btn__arrow {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
@media screen and (max-width: 768px) {
  .p-404-btn__arrow {
    -webkit-filter: none;
            filter: none;
  }
}

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

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

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

.u-br-md {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-br-md {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */