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

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

input, textarea, select {
  font: inherit;
}

:root {
  --bg: #ffffff;
  --tint: #f7f5f0;
  --ink: #1b1a17;
  --body: #54514a;
  --muted: #928e84;
  --line: #e9e6de;
  --line2: #d8d4ca;
  --red: #cf3a2e;
  --red-d: #b02f25;
  --font: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", sans-serif;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt" 1;
}

.grecaptcha-badge {
  visibility: hidden;
}

.l-page {
  width: 100%;
  background: var(--bg);
  overflow-x: clip;
}

.l-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 60px;
  width: 100%;
}
@media (max-width: 768px) {
  .l-container {
    padding: 0 26px;
  }
}

.l-main {
  display: block;
}

.l-section {
  padding: 116px 0;
}
@media (max-width: 768px) {
  .l-section {
    padding: 66px 0;
  }
}

.l-pagehead {
  background: var(--tint);
  border-bottom: 1px solid var(--line);
  padding: 52px 0 44px;
}
@media (max-width: 768px) {
  .l-pagehead {
    padding: 38px 0 32px;
  }
}
.l-pagehead .c-breadcrumb {
  margin-bottom: 18px;
}
.l-pagehead .c-eyebrow {
  display: block;
  margin-bottom: 14px;
}
.l-pagehead__title {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1.45;
}
@media (max-width: 768px) {
  .l-pagehead__title {
    font-size: 25px;
  }
}
.l-pagehead__lead {
  font-size: 15px;
  line-height: 1.9;
  color: var(--body);
  margin-top: 20px;
  max-width: 720px;
}

.l-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.l-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .l-header__inner {
    padding: 16px 26px;
  }
}
.l-header__logo img {
  height: 22px;
  width: auto;
}
@media (max-width: 768px) {
  .l-header__logo img {
    height: 19px;
  }
}
.l-header__nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
}
@media (max-width: 768px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__nav a:not(.c-btn) {
  color: var(--body);
}
.l-header__nav a:not(.c-btn):hover {
  color: var(--red);
}

.l-footer {
  background: var(--ink);
  color: #b8b3a8;
  padding: 46px 60px 22px;
}
@media (max-width: 768px) {
  .l-footer {
    padding: 38px 26px;
  }
}
.l-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
@media (max-width: 768px) {
  .l-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}
.l-footer__logo img {
  height: 20px;
  width: auto;
}
.l-footer__nav {
  display: flex;
  gap: 26px;
  font-size: 13px;
}
@media (max-width: 768px) {
  .l-footer__nav {
    flex-wrap: wrap;
    gap: 14px 22px;
  }
}
.l-footer__nav a {
  color: #b8b3a8;
}
.l-footer__nav a:hover {
  color: #fff;
}
.l-footer__copy {
  max-width: 1120px;
  margin: 0 auto;
  padding-top: 20px;
  font-size: 12px;
  color: #7d7970;
  letter-spacing: 0.05em;
}

.c-eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--red);
  font-weight: 600;
  text-transform: uppercase;
}
.c-eyebrow--muted {
  color: var(--muted);
}

.c-section-head {
  text-align: center;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .c-section-head {
    margin-bottom: 40px;
  }
}
.c-section-head .c-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
}
.c-section-head__title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .c-section-head__title {
    font-size: 24px;
  }
}
.c-section-head__lede {
  font-size: 16px;
  color: var(--body);
  margin-top: 18px;
  line-height: 1.85;
}

.c-breadcrumb {
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.c-breadcrumb a {
  color: var(--muted);
}
.c-breadcrumb a:hover {
  color: var(--red);
}
.c-breadcrumb__sep {
  margin: 0 9px;
  color: var(--line2);
}

.c-btn {
  display: inline-block;
  border-radius: 6px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: 0.2s;
}
.c-btn--red {
  background: var(--red);
  color: #fff;
}
.c-btn--red:hover {
  background: var(--red-d);
}
.c-btn--lg {
  padding: 15px 30px;
  font-size: 15px;
}
.c-btn--ghost {
  background: #fff;
  border: 1px solid var(--line2);
  color: var(--ink);
  padding: 13px 26px;
}
.c-btn--ghost:hover {
  border-color: var(--red);
  color: var(--red);
}

.c-hamburger {
  display: none;
  width: 36px;
  height: 26px;
  padding: 4px;
  position: relative;
  z-index: 1002;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .c-hamburger {
    display: flex;
  }
}
.c-hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.25s;
}
.c-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.c-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.c-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.c-drawer__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 19, 16, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}
@media (max-width: 768px) {
  .c-drawer__backdrop {
    display: block;
  }
}
.c-drawer__backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.c-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 80%;
  max-width: 330px;
  background: #fff;
  flex-direction: column;
  align-items: stretch;
  padding: 84px 30px 30px;
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.18);
  transform: translateX(105%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
}
@media (max-width: 768px) {
  .c-drawer {
    display: flex;
  }
}
.c-drawer.is-open {
  transform: none;
}
.c-drawer a {
  padding: 18px 2px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  color: var(--ink);
}
.c-drawer a.c-btn--red {
  margin-top: 24px;
  text-align: center;
  border-radius: 7px;
  padding: 16px;
  color: #fff;
  background: var(--red);
  border-bottom: none;
}
.c-drawer__close {
  position: absolute;
  top: 20px;
  right: 22px;
  font-size: 30px;
  line-height: 1;
  color: var(--ink);
  padding: 4px;
}

.c-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 19, 16, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 48px;
}
@media (max-width: 768px) {
  .c-lightbox {
    padding: 20px;
  }
}
.c-lightbox.is-open {
  display: flex;
}
.c-lightbox__box {
  background: var(--bg);
  border-radius: 8px;
  max-width: 860px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.c-lightbox__stage {
  background: #efece4;
  aspect-ratio: 16/10;
  display: flex;
}
.c-lightbox__stage--ba {
  padding: 22px;
  gap: 18px;
}
.c-lightbox__frame {
  flex: 1;
  background: #efece4;
  position: relative;
  overflow: hidden;
}
.c-lightbox__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.c-lightbox__lab {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #a9a499;
  font-size: 13px;
  text-align: center;
  line-height: 1.5;
}
.c-lightbox__cap-wrap {
  padding: 22px 28px 26px;
}
.c-lightbox__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 11px;
}
.c-lightbox__cap {
  font-size: 14px;
  line-height: 1.9;
  color: var(--body);
}
.c-lightbox__close {
  position: absolute;
  top: 24px;
  right: 28px;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.85;
}
.c-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  opacity: 0.7;
  user-select: none;
  padding: 12px;
}
@media (max-width: 768px) {
  .c-lightbox__nav {
    display: none;
  }
}
.c-lightbox__prev {
  left: 16px;
}
.c-lightbox__next {
  right: 16px;
}

.c-form-panel {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 48px 52px;
  max-width: 720px;
  margin: 46px auto 0;
  box-shadow: 0 1px 24px rgba(0, 0, 0, 0.03);
}
@media (max-width: 768px) {
  .c-form-panel {
    padding: 30px 24px;
  }
}
.c-form-panel--flush {
  max-width: none;
  margin: 0;
  padding: 40px 40px 44px;
}
@media (max-width: 768px) {
  .c-form-panel--flush {
    padding: 28px 22px 32px;
  }
}

.c-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 20px;
  text-align: left;
}
@media (max-width: 768px) {
  .c-form {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}
.c-form__field--full {
  grid-column: 1/-1;
}
.c-form__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.c-form__label .req {
  color: var(--red);
  font-size: 11px;
  margin-left: 8px;
  font-weight: 700;
}
.c-form__label .opt {
  color: var(--muted);
  font-size: 11px;
  margin-left: 8px;
  font-weight: 400;
}
.c-form__input, .c-form__select, .c-form__textarea {
  width: 100%;
  border: 1px solid var(--line2);
  border-radius: 8px;
  background: #faf9f5;
  padding: 13px 14px;
  font-size: 14px;
  color: var(--ink);
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.c-form__input::placeholder, .c-form__select::placeholder, .c-form__textarea::placeholder {
  color: #b6b1a6;
}
.c-form__input:focus, .c-form__select:focus, .c-form__textarea:focus {
  border-color: var(--red);
  outline: none;
  box-shadow: 0 0 0 3px rgba(207, 58, 46, 0.08);
}
.c-form__textarea {
  min-height: 108px;
  resize: vertical;
  line-height: 1.7;
}
.c-form__select {
  appearance: none;
  -webkit-appearance: none;
  color: #8c887e;
  padding-right: 38px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'><path d='M1 1l4 4 4-4' stroke='%23928e84' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.c-form__submit-row {
  grid-column: 1/-1;
  text-align: center;
  margin-top: 14px;
}
.c-form__submit {
  display: block;
  width: 100%;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 18px;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}
.c-form__submit:hover {
  background: var(--red-d);
}
.c-form__privacy {
  font-size: 12px;
  color: #8f8b81;
  margin-top: 6px;
  text-align: left;
  line-height: 1.8;
  text-wrap: pretty;
}
.c-form__privacy a {
  color: var(--red);
  text-decoration: underline;
}
.c-form__consent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin: 14px 0 30px;
}
.c-form__consent input {
  width: auto;
  accent-color: var(--red);
  cursor: pointer;
}
.c-form__micro {
  font-size: 13px;
  color: var(--muted);
  margin-top: 14px;
}
.c-form__heading {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.c-form__heading-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 26px;
  line-height: 1.7;
}
.c-form__checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 18px;
  margin-top: 4px;
}
@media (max-width: 768px) {
  .c-form__checks {
    grid-template-columns: 1fr;
  }
}
.c-form__check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink);
  cursor: pointer;
}
.c-form__check input {
  width: auto;
  margin-top: 2px;
  accent-color: var(--red);
  flex: none;
}

.c-form-panel.c-form-smf {
  text-align: left;
}
.c-form-panel.c-form-smf .smf-form {
  --_form-control-border-color: var(--line2);
  --_form-control-border-color-hover: var(--muted);
  --_form-control-border-color-focus: var(--red);
}
.c-form-panel.c-form-smf .smf-item {
  display: block;
  margin: 0 0 20px;
  padding: 0;
  border: 0;
}
.c-form-panel.c-form-smf .smf-item:last-of-type {
  margin-bottom: 0;
}
.c-form-panel.c-form-smf .smf-item__col {
  display: block;
  width: 100%;
  padding: 0;
}
.c-form-panel.c-form-smf .smf-item__col--label {
  margin-bottom: 8px;
}
.c-form-panel.c-form-smf .smf-item__label__text {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.c-form-panel.c-form-smf .smf-item:has([data-validations~=required]) .smf-item__label__text::after {
  content: "必須";
  margin-left: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  vertical-align: 1px;
}
.c-form-panel.c-form-smf .smf-item:not(:has([data-validations~=required])) .smf-item__label__text::after {
  content: "任意";
  margin-left: 8px;
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  vertical-align: 1px;
}
.c-form-panel.c-form-smf .smf-item__description {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}
.c-form-panel.c-form-smf .smf-text-control,
.c-form-panel.c-form-smf .smf-select-control,
.c-form-panel.c-form-smf .smf-textarea-control {
  display: block;
  width: 100%;
}
.c-form-panel.c-form-smf .smf-text-control__control,
.c-form-panel.c-form-smf .smf-select-control__control,
.c-form-panel.c-form-smf .smf-textarea-control__control {
  width: 100%;
  max-width: 100%;
  background-color: #faf9f5;
  border-radius: 8px;
  padding: 13px 14px;
  font-size: 14px;
  color: var(--ink);
  box-shadow: none;
}
.c-form-panel.c-form-smf .smf-select-control__control {
  padding-right: 38px;
}
.c-form-panel.c-form-smf .smf-textarea-control__control {
  min-height: 108px;
  line-height: 1.7;
}
.c-form-panel.c-form-smf .smf-select-control__control:focus + .smf-select-control__toggle::before {
  border-color: var(--red);
}
.c-form-panel.c-form-smf .smf-checkbox-control__control:checked {
  background-color: var(--red);
  border-color: var(--red);
}
.c-form-panel.c-form-smf .smf-checkbox-control__label {
  font-size: 13px;
  color: var(--body);
}
.c-form-panel.c-form-smf .smf-action {
  margin-top: 26px;
  text-align: center;
  display: block !important;
}
.c-form-panel.c-form-smf .smf-action .smf-button-control {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
}
.c-form-panel.c-form-smf .smf-action .smf-button-control + .smf-button-control {
  margin-top: 12px !important;
}
.c-form-panel.c-form-smf .smf-action .smf-button-control__control {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--red) !important;
  background-image: none !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 8px;
  padding: 17px 20px;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  opacity: 1;
  box-shadow: none;
  transition: background-color 0.2s;
}
.c-form-panel.c-form-smf .smf-action .smf-button-control__control:hover {
  background: var(--red-d) !important;
}
.c-form-panel.c-form-smf .smf-action .smf-button-control__control:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.c-form-panel.c-form-smf .smf-action .smf-button-control:has(+ .smf-button-control) .smf-button-control__control {
  background: #fff !important;
  color: var(--muted) !important;
  border: 1px solid var(--line2) !important;
  font-weight: 500;
}
.c-form-panel.c-form-smf .smf-action .smf-button-control:has(+ .smf-button-control) .smf-button-control__control:hover {
  background: #fff !important;
  color: var(--red) !important;
  border-color: var(--red) !important;
}
.c-form-panel.c-form-smf [data-screen=confirm] .smf-item {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.c-form-panel.c-form-smf [data-screen=confirm] .smf-item__col--label {
  margin-bottom: 4px;
}
.c-form-panel.c-form-smf [data-screen=confirm] .smf-item__label__text {
  color: var(--muted);
  font-weight: 600;
  font-size: 12px;
}
.c-form-panel.c-form-smf [data-screen=confirm] .smf-item__col--controls {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.75;
}

.c-cf7 {
  text-align: left;
}
.c-cf7 .js-cf7-input[hidden],
.c-cf7 .js-cf7-confirmview[hidden] {
  display: none;
}
.c-cf7 .wpcf7-form-control-wrap {
  display: block;
}
.c-cf7 .c-form__consent {
  display: flex;
  align-items: center;
  gap: 8px;
}
.c-cf7 .c-form__consent .wpcf7-form-control-wrap {
  display: inline-flex;
  margin: 0;
}
.c-cf7 .c-form__consent .wpcf7-acceptance,
.c-cf7 .c-form__consent .wpcf7-list-item {
  margin: 0;
}
.c-cf7 .c-form__consent .wpcf7-list-item-label {
  display: none;
}
.c-cf7 .c-form__consent input[type=checkbox] {
  width: auto;
  accent-color: var(--red);
  cursor: pointer;
}
.c-cf7 .c-form__checks.wpcf7-checkbox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 18px;
  margin-top: 4px;
}
@media (max-width: 768px) {
  .c-cf7 .c-form__checks.wpcf7-checkbox {
    grid-template-columns: 1fr;
  }
}
.c-cf7 .c-form__checks.wpcf7-checkbox .wpcf7-list-item {
  display: block;
  margin: 0;
}
.c-cf7 .c-form__checks.wpcf7-checkbox .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink);
  cursor: pointer;
}
.c-cf7 .c-form__checks.wpcf7-checkbox input[type=checkbox] {
  width: auto;
  margin-top: 2px;
  accent-color: var(--red);
  flex: none;
}
.c-cf7 .c-form__checks.wpcf7-checkbox .wpcf7-list-item-label {
  flex: 1;
}
.c-cf7 .wpcf7-not-valid-tip {
  color: var(--red);
  font-size: 12px;
  margin-top: 6px;
}
.c-cf7 .wpcf7-form-control.wpcf7-not-valid {
  border-color: var(--red);
}
.c-cf7 .c-form__error {
  color: var(--red);
  font-size: 13px;
  margin: 4px 0 12px;
}
.c-cf7 .wpcf7-response-output {
  margin: 18px 0 0;
  padding: 12px 16px;
  border: 1px solid var(--line2);
  border-radius: 8px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--body);
}
.c-cf7 .wpcf7-spinner {
  margin: 0 0 0 10px;
}

[data-cf7-thanks] .wpcf7-form[data-status=sent] .wpcf7-response-output {
  display: none;
}

.c-cf7__ctitle {
  font-size: 14px;
  color: var(--body);
  margin-bottom: 22px;
  line-height: 1.8;
}

.c-cf7__crow {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 8px 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.c-cf7__crow:first-child {
  border-top: 1px solid var(--line);
}
@media (max-width: 768px) {
  .c-cf7__crow {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}

.c-cf7__clabel {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  padding-top: 3px;
}

.c-cf7__cvalue {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.7;
  word-break: break-word;
}

.c-cf7__cactions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}
.c-cf7__cactions .c-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 20px;
  font-size: 15.5px;
  border: 0;
  cursor: pointer;
}
.c-cf7__cactions .c-btn--ghost {
  border: 1px solid var(--line2);
  padding: 15px 20px;
}

.c-confirm {
  max-width: 640px;
  margin: 0 auto;
  padding: 96px 60px 104px;
  width: 100%;
}
@media (max-width: 768px) {
  .c-confirm {
    padding: 66px 26px 76px;
  }
}
.c-confirm__mark {
  width: 58px;
  height: 58px;
  margin: 0 auto 30px;
  border-radius: 50%;
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 27px;
  line-height: 1;
}
.c-confirm__404 {
  text-align: center;
  font-size: 70px;
  font-weight: 800;
  color: var(--line2);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 22px;
  font-feature-settings: "tnum" 1;
}
@media (max-width: 768px) {
  .c-confirm__404 {
    font-size: 56px;
  }
}
.c-confirm .c-eyebrow {
  display: block;
  text-align: center;
  margin-bottom: 16px;
}
.c-confirm__title {
  font-size: 29px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1.55;
  text-align: center;
}
@media (max-width: 768px) {
  .c-confirm__title {
    font-size: 24px;
  }
}
.c-confirm__lead {
  font-size: 16px;
  line-height: 2;
  color: var(--body);
  margin-top: 26px;
  text-align: left;
}
.c-confirm__lead--sub {
  font-size: 14.5px;
  color: var(--muted);
  margin-top: 14px;
}
.c-confirm__note {
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
  margin-top: 22px;
  text-align: left;
  background: var(--tint);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 20px;
}
.c-confirm__note a {
  color: var(--red);
}
.c-confirm__actions {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.c-linklist {
  max-width: 520px;
  margin: 34px auto 0;
  border-top: 1px solid var(--line);
}
.c-linklist a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  transition: 0.2s;
}
.c-linklist a:hover {
  color: var(--red);
  padding-left: 8px;
}
.c-linklist__arw {
  color: var(--red);
}

.c-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--red);
  background: rgba(207, 58, 46, 0.08);
  border-radius: 20px;
  padding: 5px 12px;
}

.p-hero {
  position: relative;
  overflow: hidden;
  background: #f3f1ec;
  min-height: 84vh;
  display: flex;
  align-items: center;
  padding: 32px 0;
}
@media (max-width: 768px) {
  .p-hero {
    min-height: 78vh;
    padding: 24px 0;
  }
}
.p-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: 180% 180%;
  background-image: linear-gradient(120deg, #f4f2ed 0%, #ece9e2 52%, #e3dfd6 100%);
  animation: hero-hue 40s linear infinite, hero-drift 26s ease-in-out infinite;
}
.p-hero__glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(620px circle at var(--mx, 78%) var(--my, 20%), rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 62%), radial-gradient(90% 80% at 100% 100%, rgba(207, 58, 46, 0.05), rgba(207, 58, 46, 0) 60%);
}
.p-hero__ghost {
  position: absolute;
  left: calc(50% - 130px);
  bottom: 0;
  z-index: 1;
  width: 1080px;
  max-width: none;
  opacity: 0;
  filter: blur(24px);
  pointer-events: none;
  user-select: none;
}
@media (max-width: 768px) {
  .p-hero__ghost {
    width: 600px;
    left: auto;
    right: -120px;
  }
}
.p-hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.45;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 170px;
}
.p-hero__stage {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 92px;
}
@media (max-width: 768px) {
  .p-hero__stage {
    padding-bottom: 68px;
  }
}
.p-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 60px;
}
@media (max-width: 768px) {
  .p-hero__inner {
    padding: 0 26px;
  }
}
.p-hero__eyebrow {
  opacity: 0;
  transform: translateY(12px);
  margin-bottom: 18px;
}
.p-hero__title {
  font-size: clamp(54px, 5.6vw, 84px);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: 0.1em;
  color: var(--ink);
  max-width: 1040px;
}
@media (max-width: 768px) {
  .p-hero__title {
    font-size: clamp(25px, 7.8vw, 40px);
    line-height: 1.5;
    letter-spacing: 0.08em;
    max-width: none;
  }
}
.p-hero__title .line {
  display: block;
}
.p-hero__title .line > span {
  display: inline-block;
  filter: blur(16px);
  opacity: 0;
  letter-spacing: 0.3em;
}
@media (max-width: 768px) {
  .p-hero__title .line > span {
    letter-spacing: 0.14em;
  }
}
.p-hero__sub {
  font-size: 18px;
  color: var(--body);
  margin-top: 42px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(16px);
}
@media (max-width: 768px) {
  .p-hero__sub {
    font-size: 15.5px;
    line-height: 1.85;
    margin-top: 22px;
  }
  .p-hero__sub br {
    display: none;
  }
}
.p-hero__actions {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  opacity: 0;
  transform: translateY(16px);
}
@media (max-width: 768px) {
  .p-hero__actions {
    margin-top: 30px;
  }
}
.p-hero__micro {
  font-size: 13px;
  color: var(--muted);
}
.p-hero.is-inview .p-hero__eyebrow {
  animation: hero-fade 1s ease 0.2s forwards;
}
.p-hero.is-inview .p-hero__title .r1 > span {
  animation: hero-resolve 2.1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s forwards;
}
.p-hero.is-inview .p-hero__title .r2 > span {
  animation: hero-resolve 2.1s cubic-bezier(0.2, 0.8, 0.2, 1) 1.3s forwards;
}
.p-hero.is-inview .p-hero__sub {
  animation: hero-fade 1.1s ease 2.3s forwards;
}
.p-hero.is-inview .p-hero__actions {
  animation: hero-fade 1.1s ease 2.75s forwards;
}
.p-hero.is-inview .p-hero__ghost {
  animation: hero-ghost 2.8s cubic-bezier(0.2, 0.8, 0.2, 1) 3.3s forwards;
}

@keyframes hero-hue {
  to {
    filter: hue-rotate(-360deg);
  }
}
@keyframes hero-drift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes hero-resolve {
  to {
    filter: blur(0);
    opacity: 1;
    letter-spacing: 0.1em;
  }
}
@keyframes hero-fade {
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes hero-ghost {
  to {
    filter: blur(0);
    opacity: 0.11;
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-hero__bg {
    animation: none;
  }
  .p-hero__eyebrow,
  .p-hero__title .line > span,
  .p-hero__sub,
  .p-hero__actions {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    letter-spacing: normal;
  }
  .p-hero__ghost {
    animation: none !important;
    opacity: 0.11 !important;
    filter: none !important;
  }
}
.p-lead {
  background: var(--tint);
  padding: 110px 60px;
  border-top: 1px solid var(--line);
  text-align: center;
}
@media (max-width: 768px) {
  .p-lead {
    padding: 64px 26px;
    text-align: left;
  }
  .p-lead br {
    display: none;
  }
}
.p-lead__q {
  font-size: 16px;
  line-height: 2.1;
  color: var(--muted);
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .p-lead__q {
    font-size: 14.5px;
    line-height: 2;
  }
}
.p-lead__line {
  width: 1.5px;
  height: 56px;
  background: var(--line2);
  margin: 30px auto;
  position: relative;
}
.p-lead__line::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}
@media (max-width: 768px) {
  .p-lead__line {
    margin: 26px auto;
  }
}
.p-lead__big {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.55;
  color: var(--ink);
  letter-spacing: 0.045em;
}
@media (max-width: 768px) {
  .p-lead__big {
    font-size: 25px;
    line-height: 1.65;
  }
}
.p-lead__follow {
  font-size: 16px;
  line-height: 1.9;
  color: var(--body);
  margin-top: 30px;
}
@media (max-width: 768px) {
  .p-lead__follow {
    font-size: 14px;
    margin-top: 24px;
  }
}

.p-styles .c-section-head {
  margin-bottom: 18px;
}
.p-styles__lead {
  text-align: center;
  font-size: 16px;
  line-height: 1.9;
  color: var(--body);
  margin: 0 auto 70px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .p-styles__lead {
    white-space: normal;
    text-align: left;
    font-size: 14.5px;
    margin-bottom: 38px;
  }
}
.p-styles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
@media (max-width: 768px) {
  .p-styles__grid {
    grid-template-columns: 1fr;
  }
}
.p-styles__item {
  padding: 0 40px;
  border-left: 1px solid var(--line);
}
.p-styles__item:first-child {
  border-left: none;
}
@media (max-width: 768px) {
  .p-styles__item {
    padding: 30px 0;
    border-left: none;
    border-top: 1px solid var(--line);
  }
  .p-styles__item:first-child {
    border-top: none;
    padding-top: 0;
  }
}
.p-styles__num {
  font-size: 50px;
  font-weight: 300;
  line-height: 1;
  color: #cfcbbf;
  letter-spacing: 0.02em;
  font-feature-settings: "tnum" 1;
}
@media (max-width: 768px) {
  .p-styles__num {
    font-size: 40px;
  }
}
.p-styles__rule {
  width: 26px;
  height: 2px;
  background: var(--red);
  margin: 18px 0 22px;
}
.p-styles__title {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.65;
  margin-bottom: 18px;
  color: var(--ink);
}
@media (max-width: 768px) {
  .p-styles__title {
    font-size: 18px;
  }
}
.p-styles__text {
  font-size: 16px;
  line-height: 2.05;
  color: var(--body);
}

.p-forwhom {
  background: var(--tint);
}
.p-forwhom__head {
  text-align: center;
}
.p-forwhom__head .c-eyebrow {
  display: block;
  margin-bottom: 16px;
}
.p-forwhom__title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
@media (max-width: 768px) {
  .p-forwhom__title {
    font-size: 24px;
  }
}
.p-forwhom__rule {
  width: 28px;
  height: 2px;
  background: var(--red);
  margin: 22px auto 24px;
}
.p-forwhom__lead {
  text-align: center;
  font-size: 16px;
  line-height: 1.9;
  color: var(--body);
  max-width: 620px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-forwhom__lead {
    text-align: left;
  }
}
.p-forwhom__list {
  max-width: 500px;
  margin: 48px auto 0;
  text-align: left;
}
@media (max-width: 768px) {
  .p-forwhom__list {
    max-width: none;
  }
}
.p-forwhom__list li {
  position: relative;
  padding: 15px 0 15px 32px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 768px) {
  .p-forwhom__list li {
    font-size: 15px;
  }
}
.p-forwhom__list li:last-child {
  border-bottom: none;
}
.p-forwhom__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 15px;
  font-size: 15px;
  color: var(--red);
  font-weight: 700;
}
.p-forwhom__not {
  max-width: 500px;
  margin: 60px auto 0;
  text-align: left;
}
@media (max-width: 768px) {
  .p-forwhom__not {
    max-width: none;
  }
}
.p-forwhom__not p {
  font-size: 13.5px;
  line-height: 1.95;
  color: var(--muted);
}

.p-works__lead {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px;
  font-size: 16px;
  line-height: 1.95;
  color: var(--body);
}
@media (max-width: 768px) {
  .p-works__lead br {
    display: none;
  }
}
.p-works__case {
  border-bottom: 1px solid var(--line);
  padding-bottom: 26px;
  margin-bottom: 30px;
}
.p-works__flag {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 16px;
}
.p-works__casetitle {
  font-size: 34px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.01em;
  line-height: 1.4;
  margin: 0 0 16px;
}
@media (max-width: 768px) {
  .p-works__casetitle {
    font-size: 24px;
  }
}
.p-works__namerow {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.p-works__client {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.01em;
  line-height: 1.4;
}
.p-works__org {
  font-size: 12.5px;
  font-weight: 400;
  color: var(--muted);
}
.p-works__years {
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  background: rgba(207, 58, 46, 0.08);
  border-radius: 22px;
  padding: 6px 13px;
  white-space: nowrap;
}
.p-works__intro {
  font-size: 16px;
  line-height: 1.95;
  color: var(--body);
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .p-works__intro {
    font-size: 15px;
  }
}
.p-works__insight {
  position: relative;
  background: var(--tint);
  border-radius: 8px;
  padding: 38px 44px 40px 50px;
  margin-bottom: 44px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .p-works__insight {
    padding: 26px 24px 28px 30px;
  }
}
.p-works__insight::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--red);
}
.p-works__insight p {
  font-size: 16px;
  line-height: 1.95;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.01em;
}
@media (max-width: 768px) {
  .p-works__insight p {
    font-size: 15.5px;
    line-height: 1.9;
  }
}
.p-works__ilbl {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 16px;
}
.p-works__blockhead {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 18px;
}
.p-works__gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 62px;
}
@media (max-width: 768px) {
  .p-works__gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
.p-works__gitem {
  cursor: pointer;
}
.p-works__gframe {
  aspect-ratio: 3/2;
  background: #efece4;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: 0.2s;
}
.p-works__gframe--ba {
  display: flex;
  gap: 5px;
  padding: 9px;
}
.p-works__gitem:hover .p-works__gframe {
  border-color: var(--line2);
  transform: translateY(-2px);
}
.p-works__gimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-works__ph {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #b9b4a8;
  font-size: 11px;
  text-align: center;
  line-height: 1.4;
  padding: 0 6px;
}
.p-works__mini {
  flex: 1;
  background: #e4e0d7;
  border-radius: 2px;
  position: relative;
}
.p-works__mini::after {
  position: absolute;
  left: 50%;
  bottom: 5px;
  transform: translateX(-50%);
  font-size: 9px;
  color: #a9a499;
  white-space: nowrap;
}
.p-works__mini:nth-child(1)::after {
  content: "初年度";
}
.p-works__mini:nth-child(2)::after {
  content: "2〜4年";
}
.p-works__mini:nth-child(3)::after {
  content: "5〜7年";
}
.p-works__mini:nth-child(4)::after {
  content: "現在";
}
.p-works__gzoom {
  position: absolute;
  right: 7px;
  bottom: 7px;
  font-size: 10px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.82);
  border-radius: 3px;
  padding: 2px 7px;
}
.p-works__tlhead {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink);
  font-weight: 600;
  margin: 50px 0 16px;
}
@media (max-width: 768px) {
  .p-works__tlhead {
    margin: 42px 0 24px;
  }
}
.p-works__tllead {
  font-size: 16px;
  line-height: 1.95;
  color: var(--body);
  margin: 0 0 30px;
}
.p-works__timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0 10px 8px;
}
.p-works__timeline::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 7px;
  height: 1.5px;
  background: var(--line2);
}
@media (max-width: 768px) {
  .p-works__timeline {
    display: block;
    margin: 0;
  }
  .p-works__timeline::before {
    display: none;
  }
}
.p-works__tlnode {
  position: relative;
  padding: 0 14px;
  text-align: center;
}
@media (max-width: 768px) {
  .p-works__tlnode {
    padding: 0 0 26px 32px;
    text-align: left;
  }
  .p-works__tlnode:last-child {
    padding-bottom: 0;
  }
  .p-works__tlnode::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 16px;
    bottom: -2px;
    width: 2px;
    background: var(--line2);
  }
  .p-works__tlnode:last-child::before {
    display: none;
  }
}
.p-works__tldot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #c9c5bb;
  border: 3px solid var(--bg);
  position: relative;
  z-index: 1;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-works__tldot {
    position: absolute;
    left: 0;
    top: 2px;
    width: 14px;
    height: 14px;
    margin: 0;
  }
}
.p-works__tlnode--now .p-works__tldot {
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(207, 58, 46, 0.14);
}
@media (max-width: 768px) {
  .p-works__tlnode--now .p-works__tldot {
    box-shadow: 0 0 0 4px rgba(207, 58, 46, 0.14);
  }
}
.p-works__tlyear {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  margin-top: 16px;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .p-works__tlyear {
    text-align: left;
    margin-top: 0;
    font-size: 14px;
  }
}
.p-works__tlnode--now .p-works__tlyear {
  color: var(--red);
}
.p-works__tltext {
  display: inline-block;
  text-align: left;
  list-style: none;
  font-size: 13px;
  line-height: 1.65;
  color: var(--body);
  margin: 10px 0 0;
  padding: 0;
}
@media (max-width: 768px) {
  .p-works__tltext {
    margin-top: 5px;
    font-size: 13.5px;
  }
}
.p-works__tltext li {
  position: relative;
  padding-left: 13px;
}
.p-works__tltext li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.62em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--muted);
}
.p-works__tltext li + li {
  margin-top: 4px;
}
.p-works__tlnode--now .p-works__tltext li::before {
  background: var(--red);
}

.p-others {
  background: var(--tint);
}
.p-others__head {
  margin-bottom: 42px;
}
.p-others__head h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
@media (max-width: 768px) {
  .p-others__head h3 {
    font-size: 20px;
  }
}
.p-others__head p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--body);
  max-width: 760px;
}
@media (max-width: 768px) {
  .p-others__head p {
    font-size: 14px;
  }
}
.p-others__marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.p-others__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: others-scroll 40s linear infinite;
  pointer-events: none;
  user-select: none;
}
.p-others__card {
  flex: 0 0 auto;
  height: 300px;
}
.p-others__img {
  height: 300px;
  width: auto;
  display: block;
  filter: saturate(0.9);
}

@keyframes others-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.3333%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-others__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
  }
  .p-others__marquee {
    -webkit-mask-image: none;
    mask-image: none;
  }
}
.p-about {
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.p-about__profile {
  display: grid;
  grid-template-columns: 250px 1fr;
  column-gap: 56px;
  grid-template-areas: "img id" "img bio";
  align-items: start;
  max-width: 1040px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-about__profile {
    grid-template-columns: 128px 1fr;
    column-gap: 20px;
    grid-template-areas: "img id" "bio bio";
    align-items: center;
  }
}
.p-about__img {
  grid-area: img;
  aspect-ratio: 4/5;
  border-radius: 10px;
  overflow: hidden;
  background: #ecebe6;
}
@media (max-width: 768px) {
  .p-about__img {
    width: 128px;
    aspect-ratio: 1/1;
  }
}
.p-about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  filter: saturate(0.66) brightness(1.05) contrast(0.93) sepia(0.06);
}
@media (max-width: 768px) {
  .p-about__img img {
    object-position: 50% 18%;
  }
}
.p-about__id {
  grid-area: id;
}
@media (max-width: 768px) {
  .p-about__id {
    align-self: center;
  }
}
.p-about__id .c-eyebrow {
  display: inline-block;
}
@media (max-width: 768px) {
  .p-about__id .c-eyebrow {
    margin-bottom: 12px;
  }
}
.p-about__name {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: 12px;
}
@media (max-width: 768px) {
  .p-about__name {
    font-size: 21px;
  }
}
.p-about__name em {
  font-size: 14px;
  font-style: normal;
  color: var(--muted);
  margin-left: 12px;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .p-about__name em {
    display: block;
    margin: 5px 0 0;
  }
}
.p-about__role {
  font-size: 13px;
  color: var(--red);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 10px 0 28px;
}
@media (max-width: 768px) {
  .p-about__role {
    margin: 9px 0 0;
  }
}
.p-about__bio {
  grid-area: bio;
}
@media (max-width: 768px) {
  .p-about__bio {
    margin-top: 26px;
  }
}
.p-about__bio p {
  font-size: 16px;
  line-height: 2.05;
  color: var(--body);
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .p-about__bio p {
    font-size: 14px;
  }
}

.p-service {
  background: var(--tint);
}
.p-service__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 60px;
}
@media (max-width: 768px) {
  .p-service__inner {
    padding: 0 26px;
  }
}
.p-service .c-section-head {
  margin-bottom: 22px;
}
.p-service__intro {
  text-align: center;
  font-size: 16px;
  line-height: 1.95;
  color: var(--body);
  max-width: 680px;
  margin: 0 auto 58px;
}
@media (max-width: 768px) {
  .p-service__intro {
    text-align: left;
    font-size: 14px;
    margin-bottom: 34px;
  }
  .p-service__intro br {
    display: none;
  }
}
.p-service__track-h {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 700;
  margin: 0 0 4px;
}
@media (max-width: 768px) {
  .p-service__track-h {
    letter-spacing: 0.14em;
  }
}
.p-service__list {
  border-top: 1px solid var(--line);
  margin-bottom: 42px;
}
@media (max-width: 768px) {
  .p-service__list {
    margin-bottom: 32px;
  }
}
.p-service__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding: 26px 4px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 768px) {
  .p-service__row {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 22px 2px;
  }
}
.p-service__l {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}
@media (max-width: 768px) {
  .p-service__l {
    display: contents;
  }
}
.p-service__name {
  order: 1;
  font-size: 17.5px;
  color: var(--ink);
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .p-service__name {
    font-size: 16.5px;
    white-space: normal;
    margin-bottom: 6px;
  }
}
.p-service__when {
  order: 2;
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .p-service__when {
    line-height: 1.7;
  }
}
.p-service__hint {
  order: 3;
  flex-basis: 100%;
  width: 100%;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.6;
  padding-left: 1.5em;
  text-indent: -1.5em;
}
@media (max-width: 768px) {
  .p-service__hint {
    order: 4;
    margin-top: 9px;
  }
}
.p-service__price {
  font-size: 14px;
  font-weight: 500;
  color: var(--body);
  white-space: nowrap;
  text-align: right;
  flex: none;
  padding-top: 3px;
}
@media (max-width: 768px) {
  .p-service__price {
    order: 3;
    font-size: 13.5px;
    text-align: left;
    white-space: normal;
    margin-top: 11px;
    padding-top: 0;
  }
}
.p-service__price em {
  font-size: 12px;
  font-style: normal;
  color: var(--muted);
  font-weight: 400;
}
.p-service__price small {
  display: block;
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 400;
  margin-top: 4px;
}
@media (max-width: 768px) {
  .p-service__price small {
    display: inline;
    font-size: 13.5px;
    margin: 0;
  }
  .p-service__price small::before {
    content: "／";
    color: var(--line2);
    margin: 0 7px;
  }
}
.p-service__common {
  font-size: 12.5px;
  color: var(--muted);
  text-align: left;
  margin-top: 4px;
  padding-left: 1.5em;
  text-indent: -1.5em;
}
@media (max-width: 768px) {
  .p-service__common {
    font-size: 12px;
    margin-top: 10px;
    line-height: 1.7;
  }
}
.p-service__doc {
  margin-top: 64px;
  text-align: center;
}
@media (max-width: 768px) {
  .p-service__doc {
    margin-top: 50px;
  }
}
.p-service__doc h3 {
  font-size: 19px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .p-service__doc h3 {
    font-size: 18px;
  }
}
.p-service__doc p {
  font-size: 16px;
  color: var(--body);
  margin: 10px auto 0;
  max-width: 500px;
  line-height: 1.85;
}
@media (max-width: 768px) {
  .p-service__doc p br {
    display: none;
  }
}
.p-service__doc .c-btn {
  margin-top: 20px;
}

.p-process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 84px;
}
@media (max-width: 768px) {
  .p-process__steps {
    grid-template-columns: 1fr;
    margin-bottom: 52px;
  }
}
.p-process__step {
  padding: 0 40px;
  border-left: 1px solid var(--line);
}
.p-process__step:first-child {
  padding-left: 0;
  border-left: none;
}
.p-process__step:last-child {
  padding-right: 0;
}
@media (max-width: 768px) {
  .p-process__step {
    padding: 26px 0;
    border-left: none;
    border-top: 1px solid var(--line);
  }
  .p-process__step:first-child {
    padding-top: 0;
    border-top: none;
  }
}
.p-process__step h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 14px;
}
.p-process__step p {
  font-size: 16px;
  line-height: 2;
  color: var(--body);
}
.p-process__num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--red);
}
.p-process__rule {
  width: 26px;
  height: 2px;
  background: var(--red);
  margin: 14px 0 20px;
}
.p-process__faq-head {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 8px;
  text-align: center;
}
.p-process__faq {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.p-process__qa {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.p-process__q {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding-left: 28px;
}
@media (max-width: 768px) {
  .p-process__q {
    font-size: 14.5px;
  }
}
.p-process__q::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--red);
  font-weight: 700;
}
.p-process__a {
  font-size: 16px;
  line-height: 1.95;
  color: var(--body);
  margin-top: 10px;
  padding-left: 28px;
}
@media (max-width: 768px) {
  .p-process__a {
    font-size: 14.5px;
  }
}

.p-contact {
  padding: 120px 60px;
  text-align: center;
  background: var(--tint);
  border-top: 1px solid var(--line);
}
@media (max-width: 768px) {
  .p-contact {
    padding: 66px 26px;
  }
}
.p-contact__eyebrow {
  display: block;
  margin-bottom: 16px;
}
.p-contact__title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
@media (max-width: 768px) {
  .p-contact__title {
    font-size: 24px;
  }
}
.p-contact__rule {
  width: 28px;
  height: 2px;
  background: var(--red);
  margin: 22px auto 24px;
}
.p-contact__lead {
  font-size: 15.5px;
  line-height: 1.95;
  color: var(--body);
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}
@media (max-width: 768px) {
  .p-contact__lead {
    font-size: 14.5px;
  }
}

.p-doc {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 60px 92px;
  width: 100%;
}
@media (max-width: 768px) {
  .p-doc {
    padding: 44px 26px 56px;
  }
}
.p-doc__intro {
  font-size: 16px;
  line-height: 2;
  color: var(--body);
  margin-bottom: 8px;
}
.p-doc h2 {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin: 46px 0 16px;
  padding-left: 14px;
  border-left: 3px solid var(--red);
}
@media (max-width: 768px) {
  .p-doc h2 {
    font-size: 18px;
  }
}
.p-doc h2:first-child {
  margin-top: 0;
}
.p-doc h3 {
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink);
  margin: 30px 0 10px;
}
.p-doc p {
  font-size: 16px;
  line-height: 2;
  color: var(--body);
  margin-bottom: 16px;
}
.p-doc ul {
  list-style: none;
  margin: 0 0 16px;
}
.p-doc li {
  position: relative;
  font-size: 16px;
  line-height: 1.9;
  color: var(--body);
  margin-bottom: 9px;
  padding-left: 20px;
}
.p-doc li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 14px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}
.p-doc a {
  color: var(--red);
  text-decoration: underline;
}
.p-doc__revised {
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
}

.p-doc-back {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 60px 96px;
  width: 100%;
}
@media (max-width: 768px) {
  .p-doc-back {
    padding: 0 26px 64px;
  }
}
.p-doc-back a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--body);
  font-weight: 600;
}
.p-doc-back a:hover {
  color: var(--red);
}
.p-doc-back .arw {
  color: var(--red);
}

.p-download__wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 64px 60px 96px;
  width: 100%;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 768px) {
  .p-download__wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 44px 26px 64px;
  }
}
.p-download__cover {
  aspect-ratio: 3/4;
  background: var(--tint);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  margin-bottom: 26px;
  box-shadow: 4px 6px 10px rgba(60, 50, 40, 0.13), 0 3px 16px rgba(60, 50, 40, 0.07);
}
@media (max-width: 768px) {
  .p-download__cover {
    max-width: 230px;
  }
}
.p-download__cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-download__info h2 {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}
.p-download__list {
  list-style: none;
}
.p-download__list li {
  position: relative;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--body);
  padding: 11px 0 11px 24px;
  border-bottom: 1px solid var(--line);
}
.p-download__list li:last-child {
  border-bottom: none;
}
.p-download__list li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 18px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.p-bloglist {
  padding: 44px 0 90px;
}
@media (max-width: 768px) {
  .p-bloglist {
    padding: 30px 0 64px;
  }
}
.p-bloglist__head {
  border-bottom: 1px solid var(--line);
  padding: 56px 0 40px;
}
@media (max-width: 768px) {
  .p-bloglist__head {
    padding: 38px 0 30px;
  }
}
.p-bloglist__head .c-breadcrumb {
  margin-bottom: 18px;
}
.p-bloglist__head .c-eyebrow {
  display: block;
  margin-bottom: 14px;
}
.p-bloglist__title {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1.4;
}
@media (max-width: 768px) {
  .p-bloglist__title {
    font-size: 26px;
  }
}
.p-bloglist__lead {
  font-size: 15px;
  line-height: 1.9;
  color: var(--body);
  margin-top: 18px;
  max-width: 640px;
}
.p-bloglist__filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.p-bloglist__filter a {
  font-size: 13px;
  font-weight: 600;
  color: var(--body);
  border: 1px solid var(--line2);
  border-radius: 20px;
  padding: 8px 18px;
  transition: 0.2s;
}
.p-bloglist__filter a:hover {
  border-color: var(--red);
  color: var(--red);
}
.p-bloglist__filter a.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.p-bloglist__filter a.is-active:hover {
  color: #fff;
}
.p-bloglist__feature {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: center;
  color: inherit;
  padding-bottom: 46px;
  margin-bottom: 46px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 768px) {
  .p-bloglist__feature {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-bottom: 36px;
    margin-bottom: 36px;
  }
}
.p-bloglist__feature-thumb {
  aspect-ratio: 16/10;
  background: var(--tint);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: 0.2s;
}
.p-bloglist__feature-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-bloglist__feature:hover .p-bloglist__feature-thumb {
  border-color: var(--line2);
}
.p-bloglist__feature-title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.55;
  color: var(--ink);
  margin: 16px 0 14px;
  letter-spacing: 0.01em;
}
@media (max-width: 768px) {
  .p-bloglist__feature-title {
    font-size: 21px;
    margin: 10px 0 12px;
  }
}
.p-bloglist__feature:hover .p-bloglist__feature-title {
  color: var(--red);
}
.p-bloglist__feature-excerpt {
  font-size: 15px;
  line-height: 1.9;
  color: var(--body);
  margin-bottom: 18px;
}
.p-bloglist__date {
  font-size: 12.5px;
  color: var(--muted);
}
.p-bloglist__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 30px;
}
@media (max-width: 768px) {
  .p-bloglist__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.p-bloglist__card {
  color: inherit;
  display: block;
}
.p-bloglist__card-thumb {
  aspect-ratio: 16/10;
  background: var(--tint);
  border: 1px solid var(--line);
  border-radius: 6px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: 0.2s;
}
.p-bloglist__card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-bloglist__card:hover .p-bloglist__card-thumb {
  transform: translateY(-3px);
  border-color: var(--line2);
}
.p-bloglist__card-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--ink);
  margin: 10px 0 9px;
}
.p-bloglist__card:hover .p-bloglist__card-title {
  color: var(--red);
}
.p-bloglist__card-excerpt {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--body);
  margin-bottom: 10px;
}
.p-bloglist__empty {
  font-size: 15px;
  color: var(--muted);
  padding: 40px 0;
}

.p-article {
  max-width: 900px;
  margin: 0 auto;
  padding: 52px 60px 20px;
  width: 100%;
}
@media (max-width: 768px) {
  .p-article {
    padding: 36px 26px 16px;
  }
}
.p-article__title {
  font-size: 33px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-top: 20px;
}
@media (max-width: 768px) {
  .p-article__title {
    font-size: 26px;
    line-height: 1.55;
  }
}
.p-article__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  font-size: 13px;
  color: var(--muted);
}
.p-article__meta .avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 20%;
  filter: saturate(0.7) contrast(0.95);
}
.p-article__meta b {
  color: var(--ink);
  font-weight: 600;
}
.p-article__meta-dot {
  color: var(--line2);
}
.p-article__eyecatch {
  margin: 32px 0 42px;
}
.p-article__eyecatch-img {
  aspect-ratio: 16/9;
  background: var(--tint);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.p-article__eyecatch-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-article__toc {
  counter-reset: toc;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 2px;
  margin: 0 0 44px;
}
.p-article__toc[hidden] {
  display: none;
}
.p-article__toc a {
  counter-increment: toc;
  display: flex;
  gap: 9px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--body);
  margin-bottom: 8px;
}
.p-article__toc a:last-child {
  margin-bottom: 0;
}
.p-article__toc a:hover {
  color: var(--red);
  text-decoration: underline;
}
.p-article__toc a::before {
  content: counter(toc) ".";
  flex: none;
  font-weight: 600;
  color: var(--muted);
}
.p-article__toc-ttl {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.p-article__body {
  font-size: 17px;
  line-height: 2;
  color: var(--body);
}
@media (max-width: 768px) {
  .p-article__body {
    font-size: 16px;
  }
}
.p-article__body > p {
  margin-bottom: 26px;
}
.p-article__body h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin: 76px 0 26px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 96px;
}
@media (max-width: 768px) {
  .p-article__body h2 {
    font-size: 21px;
  }
}
.p-article__body h2::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 3px;
  background: var(--red);
  vertical-align: middle;
  margin-right: 13px;
  transform: translateY(-5px);
}
.p-article__body h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--ink);
  margin: 50px 0 15px;
  scroll-margin-top: 96px;
}
.p-article__body strong {
  font-weight: 700;
  color: var(--ink);
}
.p-article__body mark {
  background: linear-gradient(transparent 46%, rgba(255, 223, 89, 0.75) 46%);
  color: var(--ink);
  font-weight: 600;
  padding: 0 2px;
}
.p-article__body a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.p-article__body ul, .p-article__body ol {
  margin: 0 0 26px;
  padding-left: 0;
  list-style: none;
}
.p-article__body ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
}
.p-article__body ul li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}
.p-article__body ol {
  counter-reset: oi;
}
.p-article__body ol li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 12px;
  counter-increment: oi;
}
.p-article__body ol li::before {
  content: counter(oi);
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-article__body blockquote {
  margin: 22px 0 36px;
  padding: 24px 28px;
  background: #f3f2ef;
  border-radius: 8px;
  font-size: 17px;
  line-height: 1.9;
  color: var(--ink);
  font-weight: 500;
}
.p-article__body img {
  border-radius: 6px;
  margin: 0 0 30px;
}
.p-article__body figure {
  margin: 0 0 30px;
}
.p-article__body figcaption {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 9px;
  text-align: center;
}
.p-article__share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 68px 0 0;
}
.p-article__share .lbl {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-right: 2px;
}
.p-article__share a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: 0.2s;
}
.p-article__share a:hover {
  border-color: var(--red);
  color: var(--red);
  background: #fff;
}
.p-article__share svg {
  width: 17px;
  height: 17px;
  display: block;
}
.p-article__author {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 48px;
}
@media (max-width: 768px) {
  .p-article__author {
    flex-direction: column;
    gap: 14px;
  }
}
.p-article__author .av {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 20%;
  flex: none;
  filter: saturate(0.7) contrast(0.95);
}
.p-article__author .nm {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}
.p-article__author .rl {
  font-size: 12px;
  color: var(--red);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin: 3px 0 10px;
}
.p-article__author p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--body);
}
.p-article__author p a {
  color: var(--red);
  text-decoration: underline;
}
.p-article__cta {
  margin-top: 44px;
  background: var(--tint);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 46px 46px 48px;
  text-align: center;
}
@media (max-width: 768px) {
  .p-article__cta {
    padding: 34px 24px 36px;
  }
}
.p-article__cta h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.p-article__cta p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--body);
  max-width: 520px;
  margin: 16px auto 28px;
  text-wrap: pretty;
}
.p-article__cta .btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.p-article__cta .micro {
  display: block;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 16px;
}

.p-related {
  max-width: 1080px;
  margin: 0 auto;
  padding: 56px 60px 90px;
  width: 100%;
}
@media (max-width: 768px) {
  .p-related {
    padding: 44px 26px 64px;
  }
}
.p-related__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin-bottom: 26px;
}
.p-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 768px) {
  .p-related__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}
.p-related__card {
  color: inherit;
  display: block;
}
.p-related__thumb {
  aspect-ratio: 16/10;
  background: var(--tint);
  border: 1px solid var(--line);
  border-radius: 6px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: 0.2s;
}
.p-related__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-related__card:hover .p-related__thumb {
  transform: translateY(-3px);
  border-color: var(--line2);
}
.p-related__card h3 {
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--ink);
  margin: 8px 0 8px;
}
.p-related__card:hover h3 {
  color: var(--red);
}
.p-related__date {
  font-size: 12px;
  color: var(--muted);
}
