@charset "UTF-8";
:root {
  --text: #212121;
  --gold: #cbb46a;
  --pink: #dacdcd;
  --red: #86322f;
  --base: #f6f4f2;
  --white: #fff;
  --dark: #202020;
  --max: 1140px;
  --ease: cubic-bezier(.22, 1, .36, 1) ;
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: "Noto Serif JP", "Noto Serif CJK JP", serif;
  font-size: 18px;
  line-height: 1.75;
  letter-spacing: 0.1em;
  -webkit-font-smoothing: antialiased;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.l-container {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 20px;
}

.l-container--narrow {
  max-width: 980px;
}

.l-container--middle {
  max-width: 1020px;
}

.c-section {
  position: relative;
}

.c-section-label {
  margin: 0 0 10px;
  color: #8e817d;
  font-size: 14px;
  letter-spacing: 0.28em;
}

.c-section-head {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px auto;
  grid-template-columns: 1fr 1fr auto;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 40px;
  margin-bottom: 48px;
}

.c-section-head h2, .c-section-head--simple h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0.14em;
}

.c-section-head__intro {
  margin: 0;
  font-size: 14px;
  line-height: 2;
}

.c-section-head--simple {
  display: block;
}

.c-more {
  position: relative;
  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;
  min-width: 190px;
  height: 48px;
  margin-top: 30px;
  padding: 0 42px;
  border: 1px solid #c9c4c0;
  font-size: 14px;
  letter-spacing: 0.18em;
  -webkit-transition: 0.4s var(--ease);
  transition: 0.4s var(--ease);
}

.c-more::after {
  content: "";
  position: absolute;
  right: 16px;
  width: 28px;
  height: 1px;
  background: currentColor;
}

.c-more::before {
  content: "";
  position: absolute;
  right: 16px;
  width: 7px;
  height: 7px;
  border-top: 1px solid;
  border-right: 1px solid;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.c-more:hover {
  background: var(--text);
  color: #fff;
}

.c-more--light {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.c-more--light:hover {
  background: #fff;
  color: var(--text);
}

.c-more--dark {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

.l-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: 0.35s;
  transition: 0.35s;
  color: #fff;
}
.l-header--bg {
  background-color: rgba(255, 255, 255, 0.8);
  color: #000;
}

.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 92px;
  padding: 0 28px;
}

.l-header__brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.l-header__mark {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  font-size: 12px;
}

.l-header__name {
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.l-header__name small {
  display: block;
  font-size: 11px;
}

.l-header__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 26px;
}

.l-header__nav a {
  font-size: 13px;
  letter-spacing: 0.08em;
  position: relative;
}

.l-header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: #fff;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

.l-header__nav a:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.c-menu-button {
  display: none;
  background: none;
  border: 0;
}

.p-drawer {
  display: none;
}

.p-mv {
  position: relative;
  height: 100svh;
  color: #fff;
  overflow: hidden;
}

.p-mv__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.p-mv__image .splide {
  height: 100%;
}
.p-mv__image .splide .splide__track {
  height: 100%;
}
.p-mv__image .splide .splide__track .splide__slide.is-active img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.p-mv__image .splide .splide__track {
  /* スライドのサイズ調整 */
}
.p-mv__image .splide .splide__track .splide__slide img {
  -webkit-transition: 14s ease-out;
  transition: 14s ease-out;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-mv__shade {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.15)), color-stop(42%, rgba(0, 0, 0, 0.06)), to(rgba(0, 0, 0, 0.5)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.06) 42%, rgba(0, 0, 0, 0.5));
}

.p-mv__copy {
  position: absolute;
  left: max(5vw, 54px);
  bottom: max(2vw, 20px);
}

.p-mv__copy h1 {
  margin: 0;
  font-size: clamp(28px, 3.1vw, 44px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.p-mv__scroll {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  right: 25px;
  bottom: 38px;
  font-size: 9px;
  letter-spacing: 0.25em;
  mix-blend-mode: exclusion;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

.p-mv__scroll::before {
  content: "";
  display: block;
  width: 1px;
  height: 52px;
  margin: 12px auto 0;
  background: #fff;
  -webkit-animation: scrollLine 2s infinite;
          animation: scrollLine 2s infinite;
}

@-webkit-keyframes mvZoom {
  from {
    -webkit-transform: scale(1.06);
            transform: scale(1.06);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes mvZoom {
  from {
    -webkit-transform: scale(1.06);
            transform: scale(1.06);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes scrollLine {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  45% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  55% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}
@keyframes scrollLine {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  45% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  55% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}
.p-lead {
  background-color: #F6F4F2;
  padding: 58px 0 86px;
}

.p-lead p {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 2.1;
}

.p-message {
  padding: 0 0 100px;
  background: #F6F4F2;
}

.p-message__inner {
  position: relative;
  height: auto;
  padding-top: clamp(100px, 13.8888888889vw, 200px);
}

.p-message__visual {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(480px, 71.5277777778vw, 1030px);
  height: 610px;
  overflow: hidden;
  background: #d8d5d2;
}

.p-message__visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 18% center;
     object-position: 18% center;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.p-message__content {
  position: relative;
  margin-left: auto;
  margin-right: 0;
  padding: clamp(24px, 6vw, 58px) clamp(32px, 7vw, 64px);
  background: #F6F4F2;
}

.p-message__content h2 {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.75;
}

.p-message__sub {
  margin: 0;
  font-size: 14px;
  color: #766b68;
}

.p-message__text {
  margin-top: 28px;
  font-size: 14px;
  line-height: 2;
}

.p-message__text p {
  margin: 0 0 12px;
}

.p-message__sign {
  margin: 26px 0 0;
  text-align: right;
  font-size: 13px;
}

.p-message__sign strong {
  font-size: 17px;
  font-weight: 500;
}

.p-message__more {
  text-align: right;
}

.p-works {
  padding: 100px 0 110px;
  overflow: hidden;
}
.p-works-head {
  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;
}

.p-works__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10px;
  margin-bottom: 20px;
}

.p-works__controls button {
  position: relative;
  width: 38px;
  height: 38px;
  border: 1px solid #bdb7b2;
  background: #fff;
  cursor: pointer;
  -webkit-transition: opacity 0.25s, background-color 0.25s, color 0.25s, border-color 0.25s;
  transition: opacity 0.25s, background-color 0.25s, color 0.25s, border-color 0.25s;
}

.p-works__controls button:hover:not(:disabled) {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
}

.p-works__controls button:disabled {
  opacity: 0.28;
  cursor: not-allowed;
  background: #eeeae7;
  color: #8b8581;
  border-color: #d8d2ce;
}

.p-works__controls button:disabled::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(139, 133, 129, 0.2);
}

.p-works__rail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 34px;
  width: 100%;
  padding-inline: max(20px, (100vw - 1140px) / 2 + 20px);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  scroll-padding-inline: max(20px, (100vw - 1140px) / 2 + 20px);
  scrollbar-width: none;
  cursor: -webkit-grab;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}

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

.p-works__rail.is-dragging {
  cursor: -webkit-grabbing;
  cursor: grabbing;
  scroll-behavior: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.p-work-card {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 min(36vw, 480px);
          flex: 0 0 min(36vw, 480px);
  width: min(36vw, 480px);
  scroll-snap-align: start;
  position: relative;
}

.p-work-card > a {
  position: relative;
}

.p-work-card img {
  width: 100%;
  aspect-ratio: 1.35/1;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.7s var(--ease);
  transition: 0.7s var(--ease);
}

.p-work-card a:hover img {
  -webkit-transform: scale(1.025);
          transform: scale(1.025);
}

.p-work-card div {
  padding: 18px 3px;
}

.p-work-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 500;
}

.p-work-card p {
  margin: 0;
  font-size: 12px;
  color: #8a817e;
}

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

.p-guide {
  min-height: 590px;
  color: #fff;
  display: -ms-grid;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.p-guide__bg, .p-guide__overlay {
  position: absolute;
  inset: 0;
}

.p-guide__bg {
  background: url("../images/home/flow-bg.jpg") center/cover no-repeat;
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}

.p-guide__overlay {
  background: rgba(43, 36, 31, 0.58);
}

.p-guide__inner {
  position: relative;
  text-align: center;
  padding-block: 72px;
}

.p-guide__head h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 400;
}

.p-guide__head > p:last-child {
  font-size: 13px;
  line-height: 2;
}

.p-guide__steps {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2px 1fr 2px 1fr 2px 1fr 2px 1fr 2px 1fr;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  max-width: 940px;
  margin: 40px auto 0;
  backdrop-filter: blur(4px);
}

.p-guide__steps .p-guide__steps-item {
  padding: 22px 12px;
  background: rgba(255, 255, 255, 0.3);
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

@media (min-width: 640px) {
  .p-guide__steps .p-guide__steps-item {
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .p-guide__steps strong {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-orientation: upright;
  }
}
.p-guide__steps a:last-child {
  border: 0;
}

.p-guide__steps a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.p-guide__steps span {
  font-size: 12px;
  color: #eadfbf;
}

.p-guide__steps strong {
  margin: 18px 0 7px;
  font-size: 18px;
  font-weight: 400;
}

.p-guide__steps small {
  font-size: 9px;
  letter-spacing: 0.18em;
}

.p-faq {
  padding: 105px 0 120px;
}

.p-faq__list {
  border-top: 1px solid #ddd7d3;
}

.p-faq__item {
  border-bottom: 1px solid #ddd7d3;
}

.p-faq__item button {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 34px 1fr 24px;
  grid-template-columns: 34px 1fr 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 22px 4px;
  border: 0;
  background: none;
  text-align: left;
  font-size: 14px;
  cursor: pointer;
}

.p-faq__q {
  color: var(--gold);
}

.p-faq__item i {
  position: relative;
  width: 14px;
  height: 14px;
}

.p-faq__item i::before, .p-faq__item i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 1px;
  background: #777;
}

.p-faq__item i::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.p-faq__item button[aria-expanded=true] i::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.p-faq__answer {
  padding: 0 58px 24px;
  font-size: 13px;
  color: #645f5c;
}

.p-faq__answer p {
  margin: 0;
}

.p-news {
  position: relative;
  min-height: 530px;
  padding: 120px 0;
  background-color: #F6F4F2;
}

.p-news__panel {
  position: relative;
  width: 100%;
  max-width: calc((100vw - 1140px) / 2 + 1140px);
  background: rgba(255, 255, 255, 0.96);
  padding: 58px 76px;
  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__list {
  border-top: 1px solid #ddd;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-news__list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 18px 4px;
  border-bottom: 1px solid #ddd;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-news__list .p-news__list-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #918986;
}

.p-news__list time, .p-news__list span {
  font-size: 12px;
}

.p-news__list strong {
  font-size: 14px;
  font-weight: 400;
  width: 100%;
}

.p-news__panel .c-more {
  margin-left: auto;
}

@media (min-width: 640px) {
  .p-news__panel .l-container--middle {
    margin-left: auto;
    margin-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 100px;
  }
}
.p-contact-cta {
  padding: 76px 0;
  background: #fff;
}

.p-contact-cta__box {
  max-width: 930px;
  margin: 0 auto;
  padding: 60px 40px 70px;
  background: #fff;
  -webkit-box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
          box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  text-align: center;
  position: relative;
  z-index: 2;
}

.p-contact-cta h2 {
  margin: 0 0 20px;
  font-size: 30px;
  font-weight: 400;
}

.p-contact-cta p {
  font-size: 13px;
}

.l-footer {
  background: var(--dark);
  color: #fff;
  padding: 96px 0 28px;
}

.l-footer__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px 1.35fr;
  grid-template-columns: 1fr 1.35fr;
  gap: 60px;
}

.l-footer__name {
  font-size: 17px;
}

.l-footer__name small {
  display: block;
  font-size: 11px;
}

.l-footer__office > p:last-child {
  font-size: 11px;
  line-height: 2;
}

.l-footer__nav {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 30px;
  -ms-flex-line-pack: start;
      align-content: start;
}

.l-footer__nav a {
  font-size: 11px;
}

.l-footer__copy {
  grid-column: 1/-1;
  text-align: center;
  margin-top: 40px;
  font-size: 9px;
  color: #888;
}

.js-reveal {
  opacity: 0;
  -webkit-transform: translateY(35px);
          transform: translateY(35px);
  -webkit-transition: opacity 1s var(--ease), -webkit-transform 1s var(--ease);
  transition: opacity 1s var(--ease), -webkit-transform 1s var(--ease);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  transition: opacity 1s var(--ease), transform 1s var(--ease), -webkit-transform 1s var(--ease);
}

.js-reveal.is-visible {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

@media (max-width: 1023px) {
  body {
    font-size: 16px;
  }
  .l-header__nav {
    display: none;
  }
  .c-menu-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 5px;
    width: 52px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border: 0;
    color: #fff;
  }
  .c-menu-button span {
    width: 22px;
    height: 1px;
    background: currentColor;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .c-menu-button small {
    font-size: 7px;
    letter-spacing: 0.15em;
    margin-top: 2px;
  }
  .c-menu-button[aria-expanded=true] span:nth-child(1) {
    -webkit-transform: translateY(6px) rotate(45deg);
            transform: translateY(6px) rotate(45deg);
  }
  .c-menu-button[aria-expanded=true] span:nth-child(2) {
    opacity: 0;
  }
  .c-menu-button[aria-expanded=true] span:nth-child(3) {
    -webkit-transform: translateY(-6px) rotate(-45deg);
            transform: translateY(-6px) rotate(-45deg);
  }
  .p-drawer {
    display: block;
    position: fixed;
    inset: 0;
    z-index: -1;
    background: rgba(32, 32, 32, 0.98);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.35s;
    transition: 0.35s;
  }
  .p-drawer.is-open {
    opacity: 1;
    visibility: visible;
  }
  .p-drawer nav {
    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;
    height: 100%;
    padding: 100px 12vw;
  }
  .p-drawer a {
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 17px;
  }
  .p-message {
    padding: 0 0 95px;
  }
  .p-message__inner {
    min-height: 650px;
  }
  .p-message__content {
    right: 20px;
    width: 64%;
    padding: 48px 42px 42px;
  }
  .p-work-card {
    -ms-flex-preferred-size: 43vw;
        flex-basis: 43vw;
    width: 43vw;
  }
  .p-works__rail {
    padding-inline: 20px;
    scroll-padding-inline: 20px;
  }
  .p-guide__steps {
    -ms-grid-columns: (minmax(135px, 1fr))[5];
    grid-template-columns: repeat(5, minmax(135px, 1fr));
    overflow: auto;
  }
  .p-guide__inner {
    overflow: hidden;
  }
}
@media (max-width: 639px) {
  body {
    font-size: 16px;
    letter-spacing: 0.08em;
  }
  .l-container {
    padding-inline: 12px;
  }
  .u-pc {
    display: none;
  }
  .l-header__inner {
    height: 72px;
    padding: 0 12px;
  }
  .l-header__mark {
    width: 40px;
    height: 40px;
    font-size: 9px;
  }
  .l-header__name {
    font-size: 12px;
  }
  .l-header__name small {
    font-size: 8px;
  }
  .c-menu-button {
    width: 46px;
    height: 52px;
  }
  .p-mv {
    height: 82svh;
    min-height: 560px;
  }
  .p-mv__image {
    background-position: 57% center;
  }
  .p-mv__copy {
    left: 18px;
    right: 18px;
    bottom: 48px;
  }
  .p-mv__copy h1 {
    font-size: 23px;
    line-height: 1.75;
    letter-spacing: 0.08em;
  }
  .p-mv__scroll {
    display: none;
  }
  .p-lead {
    padding: 40px 0 58px;
  }
  .p-lead p {
    font-size: 13px;
    line-height: 2;
  }
  .p-message {
    padding: 0 0 72px;
  }
  .p-message__inner {
    min-height: 0;
    padding-inline: 12px;
    padding-top: 0;
  }
  .p-message__visual {
    width: 100%;
    height: auto;
    position: relative;
  }
  .p-message__content {
    position: relative;
    right: auto;
    bottom: auto;
    width: 92%;
    min-height: 0;
    padding: 38px 20px 46px;
  }
  .p-message__content h2 {
    font-size: 22px;
  }
  .p-message__sign {
    text-align: left;
  }
  .p-message__more {
    text-align: left;
  }
  .p-message__text {
    font-size: 13px;
  }
  .p-works {
    padding: 72px 0 78px;
  }
  .c-section-head {
    display: block;
    margin-bottom: 30px;
  }
  .c-section-head h2, .c-section-head--simple h2 {
    font-size: 28px;
  }
  .c-section-head__intro {
    margin-top: 18px;
  }
  .p-works__controls {
    display: none;
  }
  .p-works__rail {
    gap: 16px;
    padding-inline: 12px;
    scroll-padding-inline: 12px;
  }
  .p-work-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 82vw;
            flex: 0 0 82vw;
    width: 82vw;
  }
  .p-guide {
    min-height: 650px;
  }
  .p-guide__inner {
    padding-block: 58px;
  }
  .p-guide__head h2 {
    font-size: 28px;
    margin-bottom: 0;
  }
  .p-guide__steps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
    margin-inline: -12px;
    padding-inline: 12px;
    border-inline: 0;
  }
  .p-guide__steps .p-guide__steps-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 135px;
            flex: 0 0 135px;
  }
  .p-faq {
    padding: 72px 0 80px;
  }
  .p-faq__item button {
    -ms-grid-columns: 28px 1fr 20px;
    grid-template-columns: 28px 1fr 20px;
    padding: 18px 0;
    font-size: 13px;
    line-height: 1.7;
  }
  .p-faq__answer {
    padding: 0 clamp(12px, 1.6666666667vw, 24px);
    font-size: 12px;
  }
  .p-news {
    min-height: auto;
    padding: 50px 12px;
  }
  .p-news__panel {
    padding: 42px 20px;
  }
  .p-news__list a {
    -ms-grid-columns: 1fr 12px 80px;
    grid-template-columns: 1fr 80px;
    gap: 6px 12px;
    padding: 16px 0;
  }
  .p-news__list strong {
    grid-column: 1/-1;
  }
  .p-news__panel > .c-more {
    float: none;
  }
  .p-contact-cta {
    padding: 50px 12px 0;
  }
  .p-contact-cta__box {
    padding: 45px 18px 55px;
  }
  .p-contact-cta h2 {
    font-size: 26px;
  }
  .l-footer {
    padding: 78px 0 24px;
  }
  .l-footer__inner {
    display: block;
  }
  .l-footer__nav {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    margin-top: 45px;
  }
  .l-footer__copy {
    margin-top: 50px;
  }
  .c-more {
    min-width: 175px;
  }
  .js-reveal {
    -webkit-transform: translateY(22px);
            transform: translateY(22px);
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
  }
  .js-reveal {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
/* v5: home message / mobile guide / about page fidelity */
.p-message__inner {
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: 610px;
}

.p-message__content {
  right: 0;
  bottom: 0;
  width: 61%;
  min-height: 0;
  padding: 50px clamp(32px, 5vw, 76px) 46px;
}

@media (max-width: 1023px) {
  .p-message__content {
    right: 0;
    width: 64%;
    padding: 42px 34px 40px;
  }
}
@media (max-width: 639px) {
  .p-message {
    padding-bottom: 0;
  }
  .p-message__inner {
    min-height: 0;
    padding-bottom: 50px;
  }
  .p-message__content {
    position: relative;
    width: 100%;
    top: auto;
    padding: 34px 18px 40px;
  }
  .p-guide {
    min-height: auto;
  }
  .p-guide__inner {
    padding-block: 54px;
  }
  .p-guide__steps {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin: 28px 0 0;
    padding: 0;
    overflow: visible;
  }
  .p-guide__steps .p-guide__steps-item {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 44px 14px 1fr;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 0;
    padding: 18px 16px;
    text-align: left;
    border-right: 0;
  }
  .p-guide__steps .p-guide__steps-item:last-child {
    border-bottom: 0;
  }
  .p-guide__steps span {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    font-size: 13px;
  }
  .p-guide__steps strong {
    margin: 0;
    font-size: 16px;
  }
  .p-guide__steps small {
    font-size: 8px;
    text-align: right;
  }
  .p-guide .c-more {
    margin-top: 30px;
  }
}
.l-header--sub {
  color: var(--text);
  text-shadow: none;
}

.l-header--sub .l-header__inner {
  background: transparent;
}

.l-header--sub .l-header__nav a::after {
  background: var(--text);
}

.p-about-page {
  background: #f8f7f5;
}

.p-about-hero {
  position: relative;
}

.p-about-hero__inner {
  position: relative;
  width: 100%;
}

.p-about-hero__title {
  position: absolute;
  z-index: 2;
  left: max(7vw, 40px);
  top: 190px;
  background-color: #f8f7f5;
  padding: 15px 30px;
}
.p-about-hero__title .c-breadcrumb {
  font-size: 12px;
  margin-top: clamp(10px, 2.1428571429vw, 30px);
  position: relative;
}

.p-about-hero__title h1 {
  margin: 0;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.p-about-hero__title p {
  margin: 0 0;
  color: #9d9690;
  font-size: 12px;
  letter-spacing: 0.28em;
}

.p-about-hero__main {
  width: 67%;
  height: 430px;
  margin: 0 0 0 auto;
}

.p-about-hero__main img, .p-about-hero__small img, .p-about-points__photo img, .p-about-profile__portrait img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-about-hero__small {
  position: absolute;
  left: 50.5%;
  bottom: -54px;
  width: 190px;
  height: auto;
  z-index: 3;
}

.p-about-points {
  padding: 0;
}

.p-about-points__stage {
  position: relative;
  min-height: 930px;
}

.p-about-points__copy {
  width: 800px;
  margin: 0 auto;
  padding-top: 90px;
}

.p-about-point {
  position: relative;
  margin-bottom: 54px;
  padding-left: 92px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}

.p-about-point__body {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-about-point__img {
  position: relative;
  width: clamp(200px, 27.7777777778vw, 400px);
}
.p-about-point__img img {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
}

.p-about-point span {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: var(--gold);
  font-size: 12px;
}

.p-about-point span strong {
  font-size: 1.5em;
}

.p-about-point h2 {
  margin: 0 0 9px;
  font-size: clamp(18px, 1.6666666667vw, 24px);
  font-weight: 400;
}

.p-about-point p {
  margin: 0;
  font-size: clamp(12px, 0.9722222222vw, 14px);
  line-height: 2;
}

.p-about-points__photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
  z-index: 9;
}

.p-about-points__photo--top {
  left: 50%;
  top: 0;
  width: clamp(140px, 16.8055555556vw, 242px);
  -webkit-transform: translate3d(-5%, -20%, 0);
          transform: translate3d(-5%, -20%, 0);
  height: auto;
}

.p-about-points__photo--left {
  left: 0;
  top: 50%;
  width: calc((100vw - 560px) * 0.4);
  -webkit-transform: translateY(-60%);
          transform: translateY(-60%);
  height: auto;
}

.p-about-points__photo--right1 {
  right: 1%;
  top: 50%;
  width: calc((100vw - 560px) * 0.35);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: auto;
}

.p-about-points__photo--right2 {
  right: 15%;
  top: 50%;
  -webkit-transform: translateY(60%);
          transform: translateY(60%);
  width: calc((100vw - 560px) * 0.15);
  height: auto;
}

.p-about-points__photo--bottom {
  left: 15%;
  bottom: -5%;
  width: clamp(160px, 23.0555555556vw, 332px);
  height: auto;
}

.p-about-philosophy {
  position: relative;
  min-height: 630px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  padding: 100px 0;
}

.p-about-philosophy__bg {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(75, 48, 32, 0.42)), to(rgba(75, 48, 32, 0.42))), url("../images/flow/philosophy-bg.jpg") center/cover no-repeat;
  background: linear-gradient(rgba(75, 48, 32, 0.42), rgba(75, 48, 32, 0.42)), url("../images/flow/philosophy-bg.jpg") center/cover no-repeat;
}

.p-about-philosophy__content {
  position: relative;
  width: min(720px, 64vw);
  margin-left: 14%;
  padding: 58px 48px;
  backdrop-filter: blur(1px);
}

.p-about-philosophy__content p {
  margin: 0 0 18px;
  font-size: clamp(13px, 1.25vw, 16px);
  line-height: 2;
}

.p-about-profile {
  padding: 120px 0 150px;
  background: #fff;
}

.p-about-profile__inner {
  width: min(760px, 100% - 40px);
  margin: auto;
}

.p-about-profile__name {
  margin: 0 auto 52px;
  font-weight: 400;
  letter-spacing: 0.35em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.p-about-profile__name h2 {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 36px;
  letter-spacing: 0.5em;
  margin: 0;
}

.p-about-profile__name p {
  color: #A3A3A3;
  font-size: 13px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  margin: 0;
}

.p-about-profile__portrait {
  width: 310px;
  height: auto;
  margin: 0 auto 25px;
}

.p-about-profile__meta {
  width: 310px;
  margin: 0 auto 45px;
  line-height: 2;
  font-size: 14px;
}

.p-about-profile__history {
  width: 520px;
  max-width: 100%;
  margin: auto;
}

.p-about-profile__history h3 {
  margin: 0 0 25px;
  font-size: 18px;
  font-weight: 400;
}

.p-about-profile__history h3 small {
  margin-left: 12px;
  color: #9a928d;
  font-size: 9px;
  letter-spacing: 0.18em;
}

.p-about-profile__history dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 90px 20px 1fr;
  grid-template-columns: 90px 1fr;
  gap: 12px 20px;
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

.p-about-profile__history dt, .p-about-profile__history dd {
  margin: 0;
}

.p-about-office {
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  .p-about-office {
    padding: 80px 0;
  }
}
.p-about-office__inner {
  position: relative;
  height: auto;
  padding-bottom: clamp(30px, 4.1666666667vw, 60px);
}
.p-about-office__header {
  margin-bottom: 64px;
  padding: 0 clamp(24px, 4.4444444444vw, 64px);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-about-office__header {
    margin-bottom: 40px;
  }
}
.p-about-office__title {
  margin: 0;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-about-office__title {
    font-size: 26px;
  }
}
.p-about-office__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
}
@media screen and (max-width: 767px) {
  .p-about-office__body {
    gap: 56px;
  }
}
.p-about-office__profile {
  background: #ffffff;
}
@media screen and (min-width: 768px) {
  .p-about-office__profile {
    position: relative;
    width: 80%;
    padding: 50px 40px;
    margin-top: calc(clamp(40px, 5.5555555556vw, 80px) * -1);
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-about-office__profile {
    position: relative;
    margin-top: calc(clamp(40px, 5.5555555556vw, 80px) * -1);
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - clamp(24px, 3.3333333333vw, 48px));
    padding: clamp(20px, 2.7777777778vw, 40px);
  }
}
.p-about-office__map {
  position: relative;
  aspect-ratio: 2/1;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
.p-about-office__map iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
@media screen and (min-width: 768px) {
  .p-about-office__map {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-about-office__map {
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - clamp(24px, 3.3333333333vw, 48px));
    padding: clamp(20px, 2.7777777778vw, 40px);
  }
}
.p-about-office__visual {
  overflow: hidden;
  background: #d8d5d2;
  position: relative;
}
.p-about-office__visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
}
.p-about-office__visual {
  width: 100%;
  aspect-ratio: 16/9;
}
.p-about-office__bottom {
  position: relative;
}
.p-about-office__section {
  min-width: 0;
  padding-top: 50px;
  padding-bottom: 50px;
  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-office__section:not(:first-of-type) {
  border-top: 1px solid #e8e5e0;
}
.p-about-office__heading {
  margin: 0 0 28px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-about-office__heading {
    margin-bottom: 24px;
    font-size: 18px;
  }
}
.p-about-office__info {
  margin: 0;
}
.p-about-office__info-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100px 24px minmax(0, 1fr);
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 24px;
  padding: 13px 0;
  border-bottom: 1px solid #e8e5e0;
}
.p-about-office__info-item:first-child {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .p-about-office__info-item {
    -ms-grid-columns: 80px 16px minmax(0, 1fr);
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 16px;
    padding: 12px 0;
  }
}
.p-about-office__info-term {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.p-about-office__info-description {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
.p-about-office__link {
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .p-about-office__link:hover {
    opacity: 0.6;
  }
}
.p-about-office__list {
  padding: 0;
  list-style: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto 20px;
}
.p-about-office__list-item {
  position: relative;
  padding-left: 1.2em;
  font-size: clamp(14px, 1.1111111111vw, 16px);
  line-height: 2;
  letter-spacing: 0.1em;
}
.p-about-office__list-item::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}
.p-about-office__list-item + .p-about-office__list-item {
  margin-top: 8px;
}
.p-about-office__text {
  font-size: clamp(14px, 1.1111111111vw, 16px);
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0;
}
.p-about-office__note {
  display: inline-block;
  margin-top: 4px;
  margin-left: 10px;
  font-size: 0.75em;
  line-height: 1.8;
  text-align: center;
}

@media (max-width: 1023px) {
  .l-header--sub {
    color: #fff;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
  }
  .p-about-hero__title {
    left: 32px;
    top: 165px;
  }
  .p-about-hero__main {
    width: 72%;
    height: 400px;
  }
  .p-about-points__copy {
    width: 100%;
  }
  .p-about-point {
    padding-left: 62px;
  }
  .p-about-points__photo--left {
    left: 0;
    top: 40%;
    width: calc((100vw - 52%) * 0.45);
    -webkit-transform: none;
            transform: none;
    height: auto;
  }
  .p-about-points__photo--right1 {
    right: 3%;
    top: 30%;
    width: calc((100vw - 52%) * 0.4);
    -webkit-transform: none;
            transform: none;
    height: auto;
  }
  .p-about-points__photo--right2 {
    right: 5%;
    top: auto;
    bottom: 15%;
    -webkit-transform: none;
            transform: none;
    width: calc((100vw - 52%) * 0.3);
    height: auto;
  }
  .p-about-philosophy__content {
    width: 55%;
    margin-left: 8%;
  }
}
@media (max-width: 1023px) {
  .p-about-philosophy__content {
    width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 639px) {
  .p-about-hero {
    padding-top: 72px;
  }
  .p-about-hero__main {
    width: 86%;
    height: 300px;
  }
  .p-about-hero__title {
    left: 5%;
    top: 50%;
    -webkit-transform: translate3d(0, -50%, 0);
            transform: translate3d(0, -50%, 0);
  }
  .p-about-hero__title h1 {
    font-size: 28px;
  }
  .p-about-hero__small {
    left: auto;
    right: 12px;
    bottom: 0;
    width: 120px;
    height: auto;
  }
  .p-about-points__stage {
    min-height: 0;
    padding: 0 12px;
  }
  .p-about-points__copy {
    width: 100% !important;
    margin: 0;
  }
  .p-about-point {
    margin-bottom: 44px;
  }
  .p-about-point p {
    font-size: 11px;
  }
  .p-about-points__photo--top {
    left: auto;
    right: 10%;
    width: 180px;
    -webkit-transform: none;
            transform: none;
    top: 20px;
  }
  .p-about-points__photo--left {
    position: relative;
    left: 5%;
    top: 0;
    width: 25%;
    -webkit-transform: none;
            transform: none;
    margin-top: -15vw;
  }
  .p-about-points__photo--right1 {
    position: relative;
    right: auto;
    top: auto;
    width: 35%;
    height: auto;
  }
  .p-about-points__photo--right2 {
    position: absolute;
    right: 0;
    top: auto;
    bottom: 2%;
    width: 34%;
    height: auto;
  }
  .p-about-points__photo--bottom {
    position: absolute;
    left: 50%;
    bottom: 4%;
    width: 38%;
    height: auto;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .p-about-philosophy {
    min-height: 620px;
    padding: 60px 0;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .p-about-philosophy__content {
    width: 100%;
    margin: 0;
    padding: 0 15px !important;
  }
  .p-about-philosophy__content p {
    font-size: 11px;
  }
  .p-about-profile {
    padding: 85px 0 100px;
  }
  .p-about-profile__name {
    margin-bottom: 38px;
    font-size: 23px;
  }
  .p-about-profile__name h2 {
    font-size: 24px;
  }
  .p-about-profile__name p {
    font-size: 11px;
    letter-spacing: 0.3em;
  }
  .p-about-profile__portrait {
    width: 230px !important;
    height: auto;
  }
  .p-about-profile__meta {
    width: 230px !important;
  }
  .p-about-profile__history {
    width: 100%;
  }
  .p-about-profile__history dl {
    -ms-grid-columns: 70px 14px 1fr;
    grid-template-columns: 70px 1fr;
    font-size: 10px;
    gap: 10px 14px;
  }
}
/* v6: fidelity adjustments */
/* Home / News: the white information panel is anchored to the left edge. */
.p-news__panel {
  margin-left: 0;
  margin-right: auto;
  padding-left: max(44px, (100vw - 1140px) / 2 + 20px);
  padding-right: 56px;
}

/* About: body copy is never smaller than the requested 16px baseline. */
.p-about-point {
  margin-bottom: 64px;
  padding-left: 100px;
}

.p-about-point span {
  font-size: 14px;
}

.p-about-point h2 {
  font-size: clamp(24px, 2.5vw, 36px);
  margin-bottom: 14px;
}

.p-about-point p {
  font-size: clamp(14px, 1.25vw, 16px);
  line-height: 2;
}

.p-about-points__copy {
  padding-top: 72px;
}

.p-about-points__stage {
  min-height: 1080px;
  padding-top: clamp(60px, 10.4166666667vw, 150px);
  padding-bottom: clamp(60px, 10.4166666667vw, 150px);
}

.p-about-points__photo--left {
  height: auto;
}

.p-about-points__photo--right1 {
  height: auto;
}

.p-about-points__photo--right2 {
  height: auto;
}

.p-about-points__photo--bottom {
  height: auto;
}

.p-about-philosophy__content {
  padding: 64px 56px;
}

.p-about-profile__meta {
  width: 310px;
  line-height: 2;
}

.p-about-profile__history {
  width: 660px;
}

.p-about-profile__history h3 {
  font-size: 22px;
  margin-bottom: 30px;
}

.p-about-profile__history h3 small {
  font-size: 12px;
}

.p-about-profile__history dl {
  -ms-grid-columns: 100px 30px 1fr;
  grid-template-columns: 100px 1fr;
  gap: 17px 30px;
  line-height: 1.9;
}

.p-about-profile__history dd {
  padding-bottom: 2px;
}

.p-about-profile__history .p-about-profile__subhead {
  margin-top: 72px !important;
  font-size: 18px !important;
  letter-spacing: 0.12em;
  color: #9a928d;
}
.p-about-profile__history .p-about-profile__subhead small {
  margin-left: 0;
}
.p-about-profile__history .p-about-profile__subhead::before {
  content: "{";
  display: inline-block;
  font-size: 18px !important;
}
.p-about-profile__history .p-about-profile__subhead::after {
  content: "}";
  display: inline-block;
  font-size: 18px !important;
}

@media (max-width: 1023px) {
  .p-news__panel {
    width: calc(100% - 40px);
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 639px) {
  .p-news {
    padding-inline: 0;
  }
  .p-news__panel {
    width: calc(100% - 24px);
    margin-left: 0;
    padding: 40px 18px 46px 24px;
  }
  .p-about-page {
    font-size: 16px;
  }
  .p-about-point {
    padding-left: 0;
    -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: 10px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
  }
  .p-about-point__img {
    width: 100%;
    height: auto;
  }
  .p-about-point span {
    font-size: 12px;
    position: relative;
    -webkit-transform: none;
            transform: none;
    top: auto;
    left: auto;
    line-height: 1.5em;
  }
  .p-about-point h2 {
    font-size: 25px;
  }
  .p-about-page .p-about-point p,
  .p-about-page .p-about-philosophy__content p,
  .p-about-page .p-about-profile__meta,
  .p-about-page .p-about-profile__history dl {
    font-size: 14px;
    line-height: 1.9;
  }
  .p-about-profile__meta {
    width: 260px;
  }
  .p-about-profile__history {
    width: 100%;
  }
  .p-about-profile__history h3 {
    font-size: 20px;
  }
  .p-about-profile__history dl {
    -ms-grid-columns: 72px 12px 1fr;
    grid-template-columns: 72px 1fr;
    gap: 15px 12px;
  }
  .p-about-profile__subhead {
    margin-top: 54px !important;
    font-size: 17px !important;
    line-height: 1.7;
  }
}
/* v7: flow & fee page */
.p-flow-page {
  background: #fff;
}

.p-flow-page .l-header--overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  color: #fff;
  background: transparent;
}

.p-flow-page .l-header--overlay .l-header__inner {
  background: transparent;
}

.p-flow-hero {
  position: relative;
  height: 530px;
  overflow: hidden;
  color: #fff;
}

.p-flow-hero__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-flow-hero__shade {
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 24, 0.3);
}

.p-flow-hero__content {
  position: absolute;
  inset: 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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 55px;
  text-align: center;
}
.p-flow-hero__content .c-breadcrumb {
  font-size: 12px;
  margin-bottom: clamp(10px, 2.1428571429vw, 30px);
  position: relative;
}

.p-flow-hero__content h1 {
  margin: 0;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 0.14em;
}

.p-flow-hero__content > p {
  margin: 0 0 24px;
  font-size: 14px;
  letter-spacing: 0.36em;
}

.p-flow-hero__anchors {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: calc(100% - 32px);
  max-width: 480px;
}

.p-flow-hero__anchors a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 28px;
  padding: 16px;
  font-size: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
}

.p-flow-hero__anchors a:last-child {
  border-right: 0;
}

.c-breadcrumb--flow {
  position: absolute;
  z-index: 3;
  top: 205px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
}

.c-breadcrumb--flow span {
  margin-left: 8px;
}

.p-flow-process {
  padding: 88px 20px 150px;
}

.p-flow-process__head {
  text-align: center;
}

.p-flow-process__head h2 {
  margin: 0;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 0.16em;
}

.p-flow-process__head p {
  margin: 14px 0 0;
  color: #a89f99;
  font-size: 12px;
  letter-spacing: 0.32em;
}

.p-flow-process__lead {
  max-width: 760px;
  margin: 42px auto 0;
  text-align: center;
  font-size: 14px;
  line-height: 2;
}

.p-flow-timeline {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(145px, 0.66fr) 24px 92px 24px minmax(430px, 1.6fr);
  grid-template-columns: minmax(145px, 0.66fr) 92px minmax(430px, 1.6fr);
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  row-gap: 18px;
  width: min(960px, 100%);
  margin: 82px auto 0;
}

.p-flow-timeline__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(15.1% + 69px);
  width: 1px;
  background: #f4ece4;
}

.p-flow-timeline__time {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row-align: start;
      align-self: start;
  position: relative;
  z-index: 1;
  margin-top: 11px;
  padding: 7px 5px;
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
  white-space: nowrap;
}

.p-flow-timeline__time::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 9px;
  height: 9px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fff;
}

.p-flow-step {
  -ms-grid-column: 3;
  grid-column: 3;
  position: relative;
  padding: 17px 20px;
  background: #fff7ef;
  color: #333;
}

.p-flow-step::before {
  content: "";
  position: absolute;
  left: -11px;
  top: 20px;
  border-width: 8px 11px 8px 0;
  border-style: solid;
  border-color: transparent #fff7ef transparent transparent;
}

.p-flow-step::after {
  content: "";
  position: absolute;
  left: -37px;
  top: 27px;
  width: 26px;
  height: 1px;
  background: #f4ece4;
}

.p-flow-step h3 {
  margin: 0 0 9px;
  font-size: 16px;
  font-weight: 400;
}

.p-flow-step p {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: 0.07em;
}

.p-flow-step p + p {
  margin-top: 10px;
}

.p-flow-step__note {
  font-size: 11px !important;
  color: #666;
}

.p-flow-note {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row-align: center;
      align-self: center;
  position: relative;
  padding: 14px 12px;
  background: #e6d9d9;
  color: #e0e3ef;
  text-align: center;
  font-size: 12px;
  line-height: 1.7;
}

.p-flow-note small {
  font-size: 10px;
}

.p-flow-note::after {
  content: "";
  position: absolute;
  right: -11px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-width: 8px 0 8px 11px;
  border-style: solid;
  border-color: transparent transparent transparent #e6d9d9;
}

.p-flow-note--empty {
  visibility: hidden;
}

.p-flow-fee {
  background: #f5f3f1;
  padding: 110px 20px 150px;
}

.p-flow-fee__inner {
  width: min(920px, 100%);
  margin: auto;
}

.p-flow-fee__block {
  margin-top: 62px;
}

.p-flow-fee__block h3 {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 400;
}

.p-flow-fee__block p, .p-flow-fee__list {
  font-size: 14px;
  line-height: 2;
}

.p-flow-fee__label {
  margin-bottom: 10px;
}

.p-flow-fee__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 6px;
}

.p-flow-fee__table th, .p-flow-fee__table td {
  padding: 15px 20px;
  background: #fff;
  font-weight: 400;
  text-align: left;
}

.p-flow-fee__table th {
  width: 48%;
}

.p-flow-fee__notes {
  margin-top: 22px;
}

.p-flow-fee__notes p {
  margin: 8px 0;
  font-size: 12px;
}

.p-flow-fee__list {
  margin: 0;
  padding-left: 1.5em;
}

.p-flow-fee__list li + li {
  margin-top: 8px;
}

.p-flow-payment {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 34px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  margin-top: 24px;
}

.p-flow-payment > div {
  padding: 24px;
  background: #fff;
}

.p-flow-payment h4 {
  margin: 0 0 16px;
  font-weight: 400;
}

.p-flow-payment p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  margin: 8px 0;
  font-size: 13px;
}

.p-flow-fee__closing {
  margin-top: 54px;
  text-align: center;
}

.p-flow-fee__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 220px;
  margin: 28px auto 0;
}

.p-flow-page .l-footer {
  margin-top: 0;
}

@media (max-width: 1023px) {
  .p-flow-hero {
    height: 500px;
  }
  .p-flow-process {
    padding-inline: 30px;
  }
  .p-flow-timeline {
    -ms-grid-columns: 130px 18px 84px 18px minmax(0, 1fr);
    grid-template-columns: 130px 84px minmax(0, 1fr);
    -webkit-column-gap: 18px;
       -moz-column-gap: 18px;
            column-gap: 18px;
  }
  .p-flow-timeline__line {
    left: 191px;
  }
}
@media (max-width: 639px) {
  .p-flow-hero {
    height: 470px;
  }
  .p-flow-hero__content h1 {
    font-size: 27px;
  }
  .p-flow-hero__content > p {
    margin-bottom: 42px;
  }
  .p-flow-hero__anchors {
    width: 100%;
  }
  .p-flow-hero__anchors a {
    gap: 12px;
    padding: 13px 8px;
    font-size: 12px;
  }
  .c-breadcrumb--flow {
    top: 184px;
    width: 100%;
    padding-inline: 12px;
    text-align: center;
  }
  .p-flow-process {
    padding: 68px 12px 95px;
  }
  .p-flow-process__head h2 {
    font-size: 27px;
  }
  .p-flow-process__lead {
    text-align: left;
    font-size: 13px;
  }
  .p-flow-timeline {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 24px 10px minmax(0, 1fr);
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 12px 10px;
    margin-top: 52px;
  }
  .p-flow-timeline__line {
    top: 0;
    bottom: 0;
    left: 11px;
  }
  .p-flow-timeline__time {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-column-align: start;
        justify-self: start;
    margin: 10px 0 0 0;
    padding: 4px 9px 4px 29px;
    background: transparent;
    text-align: left;
  }
  .p-flow-timeline__time::before {
    left: 11px;
  }
  .p-flow-note {
    -ms-grid-column: 2;
    grid-column: 2;
    margin: 0;
    padding: 12px 14px;
    text-align: left;
  }
  .p-flow-note::after {
    right: auto;
    left: -10px;
    border-width: 8px 10px 8px 0;
    border-color: transparent #e6d9d9 transparent transparent;
  }
  .p-flow-note--empty {
    display: none;
  }
  .p-flow-step {
    -ms-grid-column: 2;
    grid-column: 2;
    margin-bottom: 14px;
    padding: 18px 16px;
  }
  .p-flow-step::before {
    left: -10px;
  }
  .p-flow-step::after {
    display: none;
  }
  .p-flow-step h3 {
    font-size: 16px;
  }
  .p-flow-step p {
    font-size: 12px;
  }
  .p-flow-fee {
    padding: 72px 12px 100px;
  }
  .p-flow-fee__block {
    margin-top: 48px;
  }
  .p-flow-fee__block h3 {
    font-size: 18px;
  }
  .p-flow-fee__block p, .p-flow-fee__list {
    font-size: 13px;
  }
  .p-flow-fee__table th, .p-flow-fee__table td {
    display: block;
    width: 100%;
    padding: 12px 14px;
  }
  .p-flow-fee__table th {
    padding-bottom: 5px;
  }
  .p-flow-fee__table td {
    padding-top: 5px;
  }
  .p-flow-payment {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .p-flow-payment p {
    display: block;
  }
  .p-flow-payment p span {
    display: block;
    margin-bottom: 4px;
    color: #e0e3ef;
  }
}
/* v9: flow timeline single-column content */
.p-flow-timeline {
  -ms-grid-columns: 124px 34px minmax(0, 1fr);
  grid-template-columns: 124px minmax(0, 1fr);
  -webkit-column-gap: 34px;
     -moz-column-gap: 34px;
          column-gap: 34px;
  width: min(900px, 100%);
}

.p-flow-timeline__line {
  left: 61px;
}

.p-flow-step {
  -ms-grid-column: 2;
  grid-column: 2;
  padding: 20px 24px;
}

.p-flow-step::after {
  left: -34px;
  width: 24px;
}

.p-flow-step__supplement {
  margin-top: 12px !important;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 12px !important;
  color: #f6e8e5;
}

.p-flow-note {
  display: none;
}

@media (max-width: 1023px) {
  .p-flow-timeline {
    -ms-grid-columns: 112px 26px minmax(0, 1fr);
    grid-template-columns: 112px minmax(0, 1fr);
    -webkit-column-gap: 26px;
       -moz-column-gap: 26px;
            column-gap: 26px;
  }
  .p-flow-timeline__line {
    left: 55px;
  }
}
@media (max-width: 639px) {
  .p-flow-timeline {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 48px;
  }
  .p-flow-timeline__line {
    display: none;
  }
  .p-flow-timeline__time {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-column-align: start;
        justify-self: start;
    margin: 18px 0 0;
    padding: 8px 13px;
    border-radius: 7px;
  }
  .p-flow-step {
    -ms-grid-column: 1;
    grid-column: 1;
    margin: 0 0 8px;
    padding: 18px 16px;
  }
  .p-flow-step::before, .p-flow-step::after {
    display: none;
  }
}
/* v9: works archive */
.p-works-page {
  background: #f8f7f5;
}

.p-works-page .l-header {
  background: #fff;
  color: #212121;
}

.p-works-page .c-menu-button {
  color: #212121;
}

.p-works-hero {
  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;
  height: 360px;
  gap: 22px;
  background: #fff;
}

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

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

.p-works-hero__image--left {
  height: 100%;
  max-width: 530px;
  width: 36.8055555556%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.p-works-hero__image--left img {
  position: relative;
  height: 83.3333333333%;
  width: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-works-hero__image--right {
  height: 100%;
  max-width: 530px;
  width: 36.8055555556%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.p-works-hero__image--right img {
  position: relative;
  height: 83.3333333333%;
  width: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-works-hero__title {
  min-width: 150px;
  text-align: center;
}

.p-works-hero__title h1 {
  margin: 0;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0.18em;
}

.p-works-hero__title > p {
  margin: 14px 0 26px;
  color: #9a918c;
  font-size: 12px;
  letter-spacing: 0.3em;
}

.p-works-hero .c-breadcrumb {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 11px;
  color: #938b86;
}

.p-works-hero .c-breadcrumb span {
  margin-left: 8px;
}

.p-works-archive {
  padding: 40px 0 130px;
}

.p-works-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  margin-bottom: 42px;
}

.p-works-filter a {
  padding: 7px 13px;
  font-size: 11px;
  line-height: 1;
}

.p-works-filter a.is-active {
  border-color: #e0e3ef;
  background: #e0e3ef;
  color: #fff;
}

.p-works-entry {
  border-bottom: 1px solid #ded9d5;
  background: #f8f7f5;
}

.p-works-entry > a {
  display: block;
  padding: 0 0 34px;
}

.p-works-entry__gallery {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  height: 300px;
  overflow: hidden;
}

.p-works-entry__gallery img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.7s var(--ease);
  transition: -webkit-transform 0.7s var(--ease);
  transition: transform 0.7s var(--ease);
  transition: transform 0.7s var(--ease), -webkit-transform 0.7s var(--ease);
}

.p-works-entry__gallery img + img {
  border-left: 2px solid #f8f7f5;
}

.p-works-entry:hover .p-works-entry__gallery img {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.p-works-entry__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 280px 38px 1fr 38px 40px;
  grid-template-columns: 280px 1fr 40px;
  gap: 38px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding-top: 24px;
}

.p-works-entry__body h2 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 400;
}

.p-works-entry__meta {
  margin: 0;
  color: #9a918c;
  font-size: 11px;
}

.p-works-entry__body > p {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
}

.p-works-entry__body > span {
  -ms-grid-column-align: end;
      justify-self: end;
  font-size: 18px;
}

.c-pagination {
  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;
  gap: 10px;
  margin-top: 58px;
}

.c-pagination a, .c-pagination span {
  display: -ms-grid;
  display: grid;
  place-items: center;
  min-width: 36px;
  height: 36px;
  border: 1px solid #cfc8c3;
  background: #fff;
  font-size: 12px;
}

.c-pagination span {
  border: 0;
  background: transparent;
}

.c-pagination .is-current {
  background: #dacdcd;
}

.c-pagination .is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

@media (max-width: 1023px) {
  .p-works-hero {
    gap: 22px;
  }
  .p-works-entry__gallery {
    height: 250px;
  }
  .p-works-entry__body {
    -ms-grid-columns: 220px 24px 1fr 24px 30px;
    grid-template-columns: 220px 1fr 30px;
    gap: 24px;
  }
}
@media (max-width: 639px) {
  .p-works-hero {
    min-height: 0;
    padding: 72px 0 0;
    position: relative;
    height: 372px;
  }
  .p-works-hero__title {
    width: 80%;
    max-width: 320px;
    padding: 15px;
    position: relative;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.95);
    margin: 0 auto;
  }
  .p-works-hero__title h1 {
    font-size: 28px;
  }
  .p-works-hero__image {
    position: absolute;
    width: 60%;
    height: calc(100% - 72px);
    max-height: 200px;
  }
  .p-works-hero__image--left {
    left: 0;
    top: 72px;
  }
  .p-works-hero__image--right {
    bottom: 0;
    right: 0;
  }
  .p-works-archive {
    padding-top: 28px;
  }
  .p-works-filter {
    padding-bottom: 6px;
  }
  .p-works-filter a {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    padding: 4px 7px;
  }
  .p-works-entry > a {
    padding-bottom: 28px;
  }
  .p-works-entry__gallery {
    height: 190px;
  }
  .p-works-entry__body {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 12px 28px;
    grid-template-columns: 1fr 28px;
    gap: 12px;
    padding-top: 18px;
  }
  .p-works-entry__body > div {
    -ms-grid-column: 1;
    grid-column: 1;
  }
  .p-works-entry__body > p {
    grid-column: 1/-1;
    font-size: 12px;
  }
  .p-works-entry__body > span {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  .p-works-entry__body h2 {
    font-size: 18px;
  }
  .c-pagination {
    margin-top: 42px;
  }
}
/* v10: supplemental timeline items remain standalone on the right */
.p-flow-note-right {
  -ms-grid-column: 2;
  grid-column: 2;
  position: relative;
  margin: -6px 0 10px;
  padding: 15px 18px;
  background: #e6d9d9;
  color: #7e3734;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.07em;
}

.p-flow-note-right::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 22px;
  width: 24px;
  height: 1px;
  background: #cbb46a;
}

.p-flow-note-right::after {
  content: "";
  position: absolute;
  left: -10px;
  top: 15px;
  border-width: 8px 10px 8px 0;
  border-style: solid;
  border-color: transparent #e6d9d9 transparent transparent;
}

.p-flow-step__supplement {
  display: none;
}

@media (max-width: 1023px) {
  .p-flow-note-right::before {
    left: -26px;
    width: 16px;
  }
}
@media (max-width: 639px) {
  .p-flow-note-right {
    -ms-grid-column: 1;
    grid-column: 1;
    margin: 0 0 12px;
    padding: 14px 16px;
    font-size: 12px;
  }
  .p-flow-note-right::before, .p-flow-note-right::after {
    display: none;
  }
}
/* v11 flow timeline: exact client text, no connector from cards */
.p-flow-timeline {
  -ms-grid-columns: 150px 34px minmax(0, 1fr);
  grid-template-columns: 150px minmax(0, 1fr);
  -webkit-column-gap: 34px;
     -moz-column-gap: 34px;
          column-gap: 34px;
  width: min(1040px, 100%);
}

.p-flow-timeline__line {
  left: 74px;
}

.p-flow-timeline__time {
  -ms-grid-column: 1;
  grid-column: 1;
  min-width: 132px;
  padding: 10px 14px;
  border: 1px solid #f4ece4;
  border-radius: 6px;
  background: #fff;
  color: #cbb46a;
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
  font-weight: bold;
  white-space: normal;
}

.p-flow-timeline__time::before {
  display: none;
}

.p-flow-step {
  -ms-grid-column: 2;
  grid-column: 2;
  padding: 22px 28px;
}

.p-flow-step::after {
  display: none !important;
  content: none !important;
}

.p-flow-step h3 {
  font-size: 18px;
}

.p-flow-step p {
  font-size: 14px;
  line-height: 1.9;
}

.p-flow-step p + p {
  margin-top: 8px;
}

.p-flow-note, .p-flow-note-right {
  display: none !important;
}

@media (max-width: 1023px) {
  .p-flow-timeline {
    -ms-grid-columns: 132px 26px minmax(0, 1fr);
    grid-template-columns: 132px minmax(0, 1fr);
    -webkit-column-gap: 26px;
       -moz-column-gap: 26px;
            column-gap: 26px;
  }
  .p-flow-timeline__line {
    left: 65px;
  }
  .p-flow-timeline__time {
    min-width: 118px;
  }
  .p-flow-step {
    padding: 20px 22px;
  }
}
@media (max-width: 639px) {
  .p-flow-timeline {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .p-flow-timeline__line {
    display: none;
  }
  .p-flow-timeline__time {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-column-align: start;
        justify-self: start;
    min-width: 0;
    margin: 18px 0 0;
    padding: 8px 12px;
    border-radius: 8px;
  }
  .p-flow-step {
    -ms-grid-column: 1;
    grid-column: 1;
    padding: 18px 16px;
  }
  .p-flow-step::before, .p-flow-step::after {
    display: none !important;
  }
  .p-flow-step h3 {
    font-size: 16px;
  }
  .p-flow-step p {
    font-size: 13px;
  }
}
/* v12: flow notes and works archive spacing/tag refinements */
.p-flow-step__note {
  margin-top: 18px !important;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.52);
  font-size: 12px !important;
  line-height: 1.9 !important;
}

.p-works-filter {
  gap: 6px;
}

.c-work-tag {
  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;
  min-height: 24px;
  padding: 4px 10px;
  color: #6e6661;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.p-works-filter .c-work-tag.is-active {
  border-color: #86322f;
  background: #86322f;
  color: #fff;
}

.p-works-entry {
  margin-top: 96px;
  padding-top: 0;
  border-top: 0;
  border-bottom: 0;
}

.p-works-entry:first-child {
  margin-top: 0;
}

.p-works-entry + .p-works-entry {
  padding-top: 96px;
  border-top: 1px solid #ded9d5;
}

.p-works-entry > a {
  padding-bottom: 0;
}

.p-works-entry__gallery {
  gap: 8px;
  background: #f8f7f5;
}

.p-works-entry__gallery img + img {
  border-left: 0;
}

.p-works-entry__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-works-entry__tags .c-work-tag {
  min-height: 22px;
  padding: 3px 8px;
  font-size: 9px;
}

@media (max-width: 639px) {
  .p-flow-step__note {
    margin-top: 14px !important;
    padding-top: 11px;
    font-size: 11px !important;
  }
  .p-works-entry {
    margin-top: 64px;
  }
  .p-works-entry + .p-works-entry {
    padding-top: 64px;
  }
  .p-works-entry__gallery {
    gap: 5px;
  }
  .p-works-filter {
    gap: 5px;
  }
}
/* v13: work detail */
.p-work-detail-page {
  background: #f8f7f5;
}

.p-work-detail-page .p-header {
  background: #fff;
  color: #212121;
}

.p-work-detail {
  padding-top: 78px;
}

.p-work-detail__hero {
  position: relative;
  height: min(46vw, 650px);
  min-height: 430px;
  overflow: hidden;
}

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

.p-work-detail__hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.42)));
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.42));
}

.p-work-detail__hero-copy {
  position: absolute;
  z-index: 1;
  left: max(20px, (100% - 1140px) / 2 + 20px);
  bottom: 54px;
  color: #fff;
}

.p-work-detail__hero-copy h1 {
  margin: 0;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 0.16em;
}

.p-work-detail__intro {
  padding-top: 58px;
}

.p-work-detail__intro .c-breadcrumb {
  margin-bottom: 54px;
}

.p-work-detail__intro-inner {
  width: min(960px, 100%);
  margin: auto;
}

.p-work-detail__lead {
  font-size: 16px;
  line-height: 2;
}

.p-work-detail__lead p {
  margin: 26px 0 0;
}

.p-work-detail__lead .p-works-entry__tags {
  margin-bottom: 28px;
}

.p-work-detail__gallery {
  padding: 90px 20px 30px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.p-work-detail__figure {
  margin: 0 auto 74px;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-work-detail__figure img {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1000px;
  max-height: 800px;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-work-detail__figure--wide {
  width: min(900px, 100%);
  aspect-ratio: 1.48;
}

.p-work-detail__figure--portrait {
  width: min(440px, 75%);
  aspect-ratio: 0.72;
}

.p-work-detail__data {
  width: min(760px, 100% - 40px);
  padding: 40px 0 80px;
}

.p-work-detail__data h2 {
  margin: 0 0 34px;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.16em;
}

.p-work-detail__spec {
  margin: 0;
}

.p-work-detail__spec > div {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 220px 1fr;
  grid-template-columns: 220px 1fr;
  border-bottom: 1px solid #ddd7d2;
}

.p-work-detail__spec dt, .p-work-detail__spec dd {
  margin: 0;
  padding: 12px 0;
  font-size: 13px;
}

.p-work-detail__spec dt {
  color: #857c77;
}

.p-work-detail__pager {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px auto 24px 1fr;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 110px;
}

.p-work-detail__pager 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;
  gap: 28px;
  min-height: 48px;
  border: 1px solid #ccc5c0;
  font-size: 13px;
}

.p-work-detail__pager a:first-child {
  -ms-grid-column-align: start;
      justify-self: start;
  width: 190px;
}

.p-work-detail__pager a:nth-child(2) {
  border: 0;
}

.p-work-detail__pager a:last-child {
  -ms-grid-column-align: end;
      justify-self: end;
  width: 190px;
}

@media (max-width: 639px) {
  .p-work-detail {
    padding-top: 64px;
  }
  .p-work-detail__hero {
    height: 66vw;
    min-height: 290px;
  }
  .p-work-detail__hero-copy {
    left: 20px;
    bottom: 28px;
  }
  .p-work-detail__hero-copy h1 {
    font-size: 23px;
  }
  .p-work-detail__intro {
    padding-top: 34px;
  }
  .p-work-detail__intro .c-breadcrumb {
    margin-bottom: 38px;
  }
  .p-work-detail__lead {
    font-size: 15px;
    line-height: 1.9;
  }
  .p-work-detail__gallery {
    padding: 58px 12px 10px;
  }
  .p-work-detail__figure {
    margin-bottom: 34px;
  }
  .p-work-detail__figure--portrait {
    width: 72%;
  }
  .p-work-detail__data {
    width: calc(100% - 24px);
    padding-bottom: 56px;
  }
  .p-work-detail__spec > div {
    -ms-grid-columns: 105px 1fr;
    grid-template-columns: 105px 1fr;
  }
  .p-work-detail__pager {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    padding: 0 12px 76px;
  }
  .p-work-detail__pager a:first-child, .p-work-detail__pager a:last-child {
    width: 100%;
    font-size: 12px;
  }
  .p-work-detail__pager a:nth-child(2) {
    grid-column: 1/-1;
    -ms-grid-row: 2;
    grid-row: 2;
  }
}
/* v13: contact page based on home contact form */
.p-contact-page {
  background: #f7f5f3;
}

.p-contact-page .p-header {
  background: #fff;
  color: #212121;
}

.p-contact-hero {
  padding: 150px 0 82px;
  background: #fff;
}

.p-contact-hero__heading {
  text-align: center;
}

.p-contact-hero__heading h1 {
  margin: 0;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0.18em;
}

.p-contact-hero__heading > p {
  margin: 12px 0 32px;
  color: #a19892;
  font-size: 12px;
  letter-spacing: 0.34em;
}

.p-contact-hero .c-breadcrumb {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-contact-section {
  position: relative;
  padding: 78px 20px 120px;
  overflow: hidden;
}

.p-contact-section__backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.28;
}

.p-contact-section__backdrop img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

.p-contact-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(247, 245, 243, 0.55);
}

.p-contact-card {
  position: relative;
  z-index: 1;
  width: min(940px, 100%);
  margin: auto;
  padding: 66px 92px 82px;
  background: #fff;
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
          box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}

.p-contact-card__head {
  text-align: center;
}

.p-contact-card__head h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.16em;
}

.p-contact-card__head > p:first-of-type {
  margin: 10px 0 34px;
  color: #a79e98;
  font-size: 11px;
  letter-spacing: 0.32em;
}

.p-contact-card__lead {
  font-size: 14px;
  line-height: 2;
}

.p-contact-card__flow-link {
  display: inline-block;
  margin-top: 10px;
  border-bottom: 1px solid #9f4c48;
  color: #86322f;
}

.p-contact-form {
  width: min(620px, 100%);
  margin: 60px auto 0;
}

.p-contact-form__notice {
  margin-bottom: 34px;
  font-size: 11px;
  line-height: 1.9;
}

.p-contact-form__notice span, .p-contact-form__row label span {
  color: #a33a34;
}

.p-contact-form__row {
  position: relative;
  margin-bottom: 26px;
}

.p-contact-form__row label {
  display: block;
  margin-bottom: 9px;
  font-size: 12px;
}

.p-contact-form__row input, .p-contact-form__row textarea {
  display: block;
  width: 100%;
  border: 0;
  background: #f1f1f1;
  padding: 13px 15px;
  font: inherit;
  color: #212121;
  outline: 0;
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
}

.p-contact-form__row input {
  height: 42px;
}

.p-contact-form__row textarea {
  min-height: 190px;
  resize: vertical;
}

.p-contact-form__row input:focus, .p-contact-form__row textarea:focus {
  -webkit-box-shadow: 0 0 0 1px #86322f;
          box-shadow: 0 0 0 1px #86322f;
}

.p-contact-form__privacy {
  margin: 36px 0 30px;
  text-align: center;
}

.p-contact-form__privacy 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: 10px;
  font-size: 11px;
  line-height: 1.8;
}

.p-contact-form__privacy input {
  margin-top: 5px;
}

.p-contact-form__submit {
  text-align: center;
}

.p-contact-form__submit button {
  min-width: 180px;
  padding: 14px 28px;
  border: 1px solid #212121;
  background: #212121;
  color: #fff;
  font-family: inherit;
  letter-spacing: 0.16em;
  cursor: pointer;
}

.p-contact-form .p-form__error {
  display: none;
  margin: 7px 0 0;
  color: #a33a34;
  font-size: 11px;
}

.p-contact-form .is-error + .p-form__error, .p-contact-form__privacy.is-error .p-form__error {
  display: block;
}

.p-contact-page .p-footer {
  margin-top: 0;
}

@media (max-width: 1023px) {
  .p-contact-card {
    padding: 58px 54px 70px;
  }
}
@media (max-width: 639px) {
  .p-contact-hero {
    padding: 112px 0 56px;
  }
  .p-contact-hero__heading h1 {
    font-size: 28px;
  }
  .p-contact-section {
    padding: 40px 12px 72px;
  }
  .p-contact-card {
    padding: 42px 18px 54px;
  }
  .p-contact-card__head h2 {
    font-size: 25px;
  }
  .p-contact-card__lead {
    font-size: 13px;
    text-align: left;
  }
  .p-contact-form {
    margin-top: 42px;
  }
  .p-contact-form__row {
    margin-bottom: 21px;
  }
  .p-contact-form__row input {
    height: 44px;
  }
  .p-contact-form__privacy {
    text-align: left;
  }
  .p-contact-form__submit button {
    width: 100%;
  }
}
/* Works detail: design-camp faithful layout */
.p-work-detail-page {
  background: #f7f5f2;
}

.p-work-detail-page .l-header--detail {
  position: relative;
  background: #fff;
  color: #212121;
}

.p-work-detail-page .l-header--detail .l-header__inner {
  height: 82px;
}

.p-work-detail-page .l-header--detail .l-header__nav a::after {
  background: #212121;
}

.p-work-detail-page .l-header--detail .c-menu-button {
  color: #212121;
}

.p-work-detail {
  padding-top: 0;
}

.p-work-detail__hero {
  position: relative;
  height: clamp(470px, 42vw, 690px);
  min-height: 0;
  overflow: hidden;
}

.p-work-detail__hero > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 56%;
     object-position: center 56%;
}

.p-work-detail__hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.48)));
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.48));
}

.p-work-detail__hero-copy {
  position: absolute;
  z-index: 1;
  left: max(28px, (100% - 1140px) / 2 + 20px);
  bottom: 42px;
  color: #fff;
}

.p-work-detail__hero-copy h1 {
  margin: 0;
  font-size: clamp(25px, 2.25vw, 36px);
  font-weight: 400;
  letter-spacing: 0.15em;
}

.p-work-detail__intro {
  padding: 58px 20px 90px;
}

.p-work-detail__intro p {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.1em;
}

.p-work-detail__intro p + p {
  margin-top: 14px;
}

.p-work-detail__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 7px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.p-work-detail__gallery {
  padding: 0 20px 34px;
}

.p-work-detail__figure--wide {
  width: min(1100px, 100%);
  aspect-ratio: 1.55;
}

.p-work-detail__figure--portrait {
  width: min(620px, 62vw);
  aspect-ratio: 0.72;
}

.p-work-detail__data {
  width: min(620px, 100% - 40px);
  margin: 15px auto 0;
  padding: 28px 0 66px;
}

.p-work-detail__data h2 {
  margin: 0 0 24px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.13em;
}

.p-work-detail__spec {
  margin: 0;
}

.p-work-detail__spec > div {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 220px 1fr;
  grid-template-columns: 220px 1fr;
  border-bottom: 1px solid #ddd8d3;
}

.p-work-detail__spec dt, .p-work-detail__spec dd {
  margin: 0;
  padding: 8px 0;
  font-size: 11px;
  line-height: 1.6;
}

.p-work-detail__spec dt {
  color: #827a74;
}

.p-work-detail__pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 90px;
  width: min(620px, 100% - 40px);
  margin: 0 auto;
  padding: 0 0 88px;
}

.p-work-detail__pager a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 210px;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid #c9c3be;
  background: #fff;
  font-size: 12px;
}

@media (max-width: 1023px) {
  .p-work-detail-page .l-header--detail .l-header__inner {
    height: 74px;
  }
  .p-work-detail__hero {
    height: 55vw;
    min-height: 390px;
  }
  .p-work-detail__figure--portrait {
    width: min(540px, 70vw);
  }
}
@media (max-width: 639px) {
  .p-work-detail-page .l-header--detail .l-header__inner {
    height: 64px;
  }
  .p-work-detail__hero {
    height: 67vw;
    min-height: 280px;
  }
  .p-work-detail__hero-copy {
    left: 14px;
    bottom: 22px;
  }
  .p-work-detail__hero-copy h1 {
    font-size: 21px;
  }
  .p-work-detail__intro {
    padding: 36px 12px 54px;
  }
  .p-work-detail__intro p {
    font-size: 13px;
    line-height: 1.9;
  }
  .p-work-detail__gallery {
    padding: 0 12px 22px;
  }
  .p-work-detail__figure {
    margin-bottom: 28px;
  }
  .p-work-detail__figure--portrait {
    width: 72%;
  }
  .p-work-detail__data {
    width: calc(100% - 24px);
    padding-bottom: 46px;
  }
  .p-work-detail__spec > div {
    -ms-grid-columns: 160px 1fr;
    grid-template-columns: 160px 1fr;
  }
  .p-work-detail__pager {
    gap: 12px;
    width: calc(100% - 24px);
    padding-bottom: 68px;
  }
  .p-work-detail__pager a {
    width: 50%;
    min-height: 44px;
    padding: 0 14px;
    font-size: 11px;
  }
}
/* v15: works detail, contact states, news */
.p-work-detail-page {
  font-size: 14px;
}

.p-work-detail-page .l-header--sub, .p-contact-page .l-header--sub, .p-news-page .l-header--sub, .p-news-detail-page .l-header--sub {
  background: #fff;
  color: #212121;
}

.p-work-detail-page .l-header__nav a::after, .p-contact-page .l-header__nav a::after, .p-news-page .l-header__nav a::after, .p-news-detail-page .l-header__nav a::after {
  background: #212121;
}

.p-work-detail-page .c-menu-button, .p-contact-page .c-menu-button, .p-news-page .c-menu-button, .p-news-detail-page .c-menu-button {
  color: #212121;
}

.p-work-detail__breadcrumb {
  padding-top: 28px;
  font-size: 12px;
}

.p-work-detail__tags {
  gap: 8px;
}

.c-work-category {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 26px;
  padding: 2px 10px;
  border: 1px solid #bcb5af;
  background: transparent;
  color: #5b5551;
  font-size: 11px;
  line-height: 1;
}

.p-work-detail__intro, .p-work-detail__intro p, .p-work-detail__data h2, .p-work-detail__spec dt, .p-work-detail__spec dd, .p-work-detail__pager a {
  font-size: 14px;
  text-align: justify;
}

.p-contact-hero {
  padding: 28px 0 12px;
}

.p-contact-section__backdrop {
  position: absolute;
  inset: 0;
}

.p-contact-section__backdrop img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  opacity: 0.23;
}

.p-contact-card {
  position: relative;
  width: min(920px, 100%);
  margin: auto;
  padding: 64px 78px 72px;
  background: #fff;
}

.p-contact-card__head {
  text-align: center;
}

.p-contact-card__head h1 {
  margin: 0;
  font-size: 30px;
  font-weight: 400;
}

.p-contact-card__head > p:nth-child(2) {
  margin: 8px 0 28px;
  color: #9b8e89;
  font-size: 12px;
}

.p-contact-card__lead {
  font-size: 14px;
  line-height: 2;
}

.p-contact-form {
  margin-top: 52px;
}

.p-contact-form__row {
  margin: 0 0 24px;
}

.p-contact-form__row label {
  display: block;
  margin-bottom: 9px;
  font-size: 13px;
}

.p-contact-form__row input, .p-contact-form__row textarea {
  width: 100%;
  border: 0;
  background: #f3f2f1;
  padding: 12px;
}

.p-contact-form__row input {
  height: 48px;
}

.p-contact-form__privacy {
  margin: 35px 0;
  text-align: center;
  font-size: 12px;
}

.p-contact-form__submit {
  text-align: center;
}

.p-contact-form__submit button, .p-contact-confirm__buttons a {
  min-width: 190px;
  padding: 14px 28px;
  border: 0;
  background: #212121;
  color: #fff;
}

.p-contact-confirm {
  margin: 48px 0;
}

.p-contact-confirm > div {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 180px 1fr;
  grid-template-columns: 180px 1fr;
  border-top: 1px solid #ddd;
}

.p-contact-confirm > div:last-child {
  border-bottom: 1px solid #ddd;
}

.p-contact-confirm dt, .p-contact-confirm dd {
  margin: 0;
  padding: 18px;
  font-size: 13px;
}

.p-contact-confirm dt {
  background: #f6f4f2;
}

.p-contact-confirm__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 18px;
}

.p-contact-confirm__buttons a:first-child {
  background: #fff;
  color: #212121;
  border: 1px solid #aaa;
}

.p-contact-complete {
  text-align: center;
  padding-block: 100px;
}

.p-contact-complete > p {
  margin: 35px 0;
  font-size: 14px;
  line-height: 2;
}

.p-news-hero {
  position: relative;
  min-height: 430px;
  background: url("../images/news/news-heading.jpg") center/cover no-repeat;
  display: -ms-grid;
  display: grid;
  place-items: center;
  color: #fff;
}

.p-news-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.58);
}

.p-news-hero__inner {
  position: relative;
  text-align: center;
}

.p-news-hero h1 {
  margin: 0;
  font-size: 40px;
  font-weight: 400;
}

.p-news-hero p {
  letter-spacing: 0.25em;
}

.c-breadcrumb--light {
  color: #fff;
}

.c-breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
  font-size: 12px;
}

.c-breadcrumb a {
  color: #A3A3A3;
}

.p-news-archive {
  padding: 70px 0 140px;
}

.p-news-archive__inner {
  max-width: 960px;
}

.p-news-archive__item {
  display: block;
  padding: 24px 14px;
  border-top: 1px solid #d7d3cf;
}

.p-news-archive__item:last-of-type {
  border-bottom: 1px solid #d7d3cf;
}

.p-news-archive__item p {
  margin: 0 0 8px;
  color: #9e9690;
  font-size: 12px;
}

.p-news-archive__item h2 {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
}

.c-pagination {
  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;
  gap: 12px;
  margin-top: 46px;
}

.c-pagination > * {
  display: -ms-grid;
  display: grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  border: 1px solid #c9c3be;
  font-size: 12px;
}

.c-pagination span[aria-current] {
  background: #dacdcd;
}

.p-news-detail {
  width: min(1140px, 100% - 40px);
  margin: auto;
  padding: 0px 0 110px;
}

.p-news-detail__head {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 72px 48%;
  grid-template-columns: 1fr 48%;
  gap: 72px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.p-news-detail__head-contents {
  padding: 72px 0;
}

.p-news-detail__head h1 {
  margin: 60px 0 14px;
  font-size: 28px;
  font-weight: 400;
}

.p-news-detail__head time {
  font-size: 13px;
}

.p-news-detail__head img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1.55;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-news-detail__head .c-breadcrumb {
  margin-top: 42px;
}

.p-news-detail__body {
  width: min(760px, 100%);
  margin: 90px auto 0;
  font-size: 16px;
  line-height: 2;
}

.p-news-detail__body p {
  margin: 0 0 30px;
}

.p-news-detail__body h2 {
  margin: 52px 0 12px;
  font-size: 17px;
  font-weight: 400;
}

.p-news-detail__body a {
  color: #86322f;
  text-decoration: underline;
}

.p-news-detail__pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: min(650px, 100%);
  margin: 80px auto 0;
}

.p-news-detail__pager a {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 230px;
  height: 52px;
  border: 1px solid #bbb;
}

@media (max-width: 639px) {
  .p-contact-section {
    padding-inline: 12px;
  }
  .p-contact-card {
    padding: 42px 18px 50px;
  }
  .p-contact-confirm > div {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .p-contact-confirm dt, .p-contact-confirm dd {
    padding: 12px;
  }
  .p-contact-confirm__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-news-hero {
    min-height: 300px;
  }
  .p-news-hero h1 {
    font-size: 30px;
  }
  .p-news-detail {
    width: calc(100% - 24px);
  }
  .p-news-detail__head {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .p-news-detail__head h1 {
    margin-top: 20px;
    font-size: 22px;
  }
  .p-news-detail__head img {
    -ms-grid-row: 1;
    grid-row: 1;
    width: calc(100% + 24px);
    margin-left: -12px;
    max-width: none;
  }
  .p-news-detail__body {
    margin-top: 55px;
    font-size: 14px;
  }
  .p-news-detail__pager {
    gap: 12px;
  }
  .p-news-detail__pager a {
    width: 50%;
    font-size: 12px;
  }
  .p-work-detail-page {
    font-size: 14px;
  }
}
/* v16: tag and subpage hero refinements */
.c-work-tag,
.c-work-category {
  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;
  min-height: 34px;
  padding: 6px 16px;
  border: 0;
  border-radius: 4px;
  background: #dedede;
  color: #212121;
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.p-works-filter {
  gap: 8px;
}

.p-works-filter .c-work-tag.is-active {
  background: #963733;
  color: #fff;
}

.p-works-entry__tags, .p-work-detail__tags {
  gap: 8px;
}

.p-works-entry__tags .c-work-tag, .p-work-detail__tags .c-work-category {
  min-height: 26px;
  padding: 3px 10px;
  font-size: 11px;
}

.p-news-hero .c-breadcrumb {
  font-size: 12px;
}

.p-contact-hero {
  position: relative;
  min-height: 430px;
  padding: 0;
  background: url("../images/home/news-bg.jpg") center/cover no-repeat;
  display: -ms-grid;
  display: grid;
  place-items: center;
  color: #fff;
}

.p-contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.58);
}

.p-contact-hero__inner {
  position: relative;
  text-align: center;
}

.p-contact-hero h1 {
  margin: 0;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 0.16em;
}

.p-contact-hero p {
  margin: 12px 0 28px;
  font-size: 14px;
  letter-spacing: 0.25em;
}

.p-contact-hero .c-breadcrumb {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 12px;
}

@media (max-width: 639px) {
  .c-work-tag, .c-work-category {
    min-height: 32px;
    padding: 5px 12px;
    font-size: 12px;
  }
  .p-works-entry__tags .c-work-tag, .p-work-detail__tags .c-work-category {
    min-height: 25px;
    padding: 3px 9px;
    font-size: 10px;
  }
  .p-contact-hero {
    min-height: 330px;
  }
  .p-contact-hero h1 {
    font-size: 30px;
  }
  .p-contact-hero p {
    font-size: 12px;
  }
}
.c-work-tag {
  background-color: #D9D9D9;
}

a.c-work-tag:hover {
  background-color: #963733;
  color: #ffffff;
}

.p-sub-page {
  padding-top: 92px;
  position: relative;
}
@media (max-width: 639px) {
  .p-sub-page {
    padding-top: 72px;
  }
}

.l-header--hero {
  background-color: transparent;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.l-header--hero.is-scrolled {
  background-color: rgba(32, 32, 32, 0.8);
}

.js-works-rail {
  cursor: -webkit-grab;
  cursor: grab;
}
.js-works-rail.is-dragging {
  cursor: -webkit-grabbing;
  cursor: grabbing;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.js-works-rail.is-dragging .p-work-card > a {
  pointer-events: none;
}

.u-inline-block {
  display: inline-block;
}

.c-ol-list {
  counter-reset: number; /*数字をリセット*/
  list-style-type: none !important; /*数字を一旦消す*/
  padding-left: 0;
}
.c-ol-list li {
  position: relative;
  line-height: 1.75em;
  padding: 0.25em 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.c-ol-list li::before {
  /* 以下数字をつける */
  position: relative;
  counter-increment: number;
  content: counter(number) ")";
  /*以下数字のデザイン変える*/
  display: inline-block;
  font-size: 1em;
}

.c-dl dt {
  font-weight: 600;
  margin-bottom: 6px;
}
.c-dl dt::before {
  content: "<";
  display: inline-block;
}
.c-dl dt::after {
  content: ">";
  display: inline-block;
}
.c-dl dd {
  margin-left: 0;
}

.c-table {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.35em;
}
.c-table thead th {
  background: #dddddd;
}
.c-table thead th:nth-child(1) {
  background-color: transparent;
  border: 1px solid transparent;
  color: #fff;
}
.c-table thead th:nth-child(2) {
  background-color: #cbb46a;
  border: 1px solid #cbb46a;
  color: #fff;
}
.c-table th, .c-table td {
  border-bottom: 1px solid #f7f5f3;
  padding: 0.5em 0.25em;
}
.c-table tbody th {
  min-width: 90px;
}
.c-table tbody td:first-of-type {
  border-left: 2px solid #cbb46a;
  border-right: 2px solid #cbb46a;
  font-weight: bold;
}
.c-table tbody tr:last-of-type td:first-of-type {
  border-bottom: 2px solid #cbb46a;
}
.c-table th {
  background: #eaeaea;
}
.c-table td {
  background: #efefef;
}