@charset "UTF-8";

/*
 * REPRESENT 2026 renewal
 * 現行の赤・白・明朝体を引き継いだ、全ページ共通の上書きスタイル。
 */

:root {
  --rp-wine: #8d1420;
  --rp-wine-dark: #681018;
  --rp-ink: #191817;
  --rp-text: #34302d;
  --rp-muted: #746d67;
  --rp-line: #d8d1ca;
  --rp-paper: #f4f1ed;
  --rp-blush: #f5e9ea;
  --rp-sand: #eee7df;
  --rp-white: #fff;
  --rp-serif: "Noto Serif JP", "Yu Mincho", YuMincho, serif;
  --rp-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --rp-container: min(1180px, calc(100% - 80px));
  --rp-reading: 820px;
  /* 見出しスケール（1440pxで 44 / 40 / 36 / 34 / 21px） */
  --rp-display: clamp(28px, 3vw, 40px);
  --rp-h1: clamp(28px, 2.9vw, 40px);
  --rp-h2: clamp(22px, 2.4vw, 34px);
  --rp-h2-wide: clamp(24px, 2.3vw, 32px);
  --rp-h3: clamp(18px, 1.45vw, 21px);
  --rp-gap: clamp(44px, 5.6vw, 96px);
  /* 線画アイコン（CSSマスク用） */
  --rp-mask-arrow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.2 12h15'/%3E%3Cpath d='M13.4 6.4 19.8 12l-6.4 5.6'/%3E%3C/svg%3E");
  --rp-mask-check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.6 12.4 9.4 17.2 19.6 6.8'/%3E%3C/svg%3E");
  --rp-mask-plus: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  --rp-mask-minus: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round'%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E");
  --rp-mask-dot: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round'%3E%3Cpath d='M6 12h12'/%3E%3C/svg%3E");
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--rp-text);
  background: var(--rp-white);
  font-family: var(--rp-sans);
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: .04em;
  -webkit-font-smoothing: antialiased;
}

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

/* 旧テーマのスクロール演出が無い環境でも本文を確実に表示する。 */
.effect-fade,
.js-fade-up {
  opacity: 1 !important;
  transform: none !important;
}

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

/*
 * 和文見出しは文節単位で折り返し、単語の途中や句読点始まりを避ける。
 * word-break: auto-phrase 非対応ブラウザでも line-break: strict は有効。
 */
h1,
h2,
.renewal-lead,
.industryHero__title,
.lowerPageHead h1,
.sub_ttl {
  word-break: auto-phrase;
}

h1,
h2,
h3,
h4,
p,
li,
dd,
dt,
td,
th {
  line-break: strict;
}

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

/*
 * 旧テンプレートの改行切り替えクラス（CSSが無く常に改行されていた）
 * pc_hide = PCで隠す（スマホのみ改行） / sp_hide = スマホで隠す
 */
br.pc_hide {
  display: none;
}

@media (max-width: 760px) {
  br.pc_hide {
    display: inline;
  }

  br.sp_hide {
    display: none;
  }
}

a {
  color: inherit;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--rp-wine);
  outline-offset: 4px;
}

.renewal-container {
  width: var(--rp-container);
  margin-inline: auto;
}

.renewal-reading-width {
  max-width: var(--rp-reading);
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: var(--rp-white);
  background: var(--rp-wine);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.renewal-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--rp-wine);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
}

.renewal-kicker::before {
  width: 32px;
  height: 1px;
  background: currentColor;
  content: "";
}

.renewal-lead {
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.75;
}

.renewal-prose>*:first-child {
  margin-top: 0;
}

.renewal-prose>*:last-child {
  margin-bottom: 0;
}

.renewal-note {
  color: var(--rp-muted);
  font-size: 13px;
  line-height: 1.8;
}

.renewal-section {
  padding: 96px 0;
}

.renewal-section--paper {
  background: var(--rp-paper);
}

.renewal-section--ink {
  color: var(--rp-white);
  background: var(--rp-ink);
}

.renewal-section--wine {
  color: var(--rp-white);
  background: var(--rp-wine-dark);
}

.renewal-split-heading,
.renewal-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--rp-gap);
  align-items: start;
}

.renewal-section-heading {
  margin-bottom: 64px;
}

.renewal-split-heading h1,
.renewal-split-heading h2,
.renewal-section-heading h2,
.home-company h2,
.renewal-contact-cta h2 {
  width: auto;
  margin: 0;
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: var(--rp-h2);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .02em;
}

.renewal-split-heading h1 {
  font-size: var(--rp-h1);
}

.renewal-section--ink h2,
.renewal-section--wine h2,
.renewal-contact-cta h2 {
  color: var(--rp-white);
}

.renewal-section-heading>p,
.renewal-section-heading>.renewal-arrow-link {
  align-self: end;
  max-width: 560px;
  margin: 0;
  padding-bottom: 4px;
}

/* リード文と本文の間隔を確保する */
.renewal-prose>p {
  margin: 0 0 22px;
}

.renewal-prose>.renewal-lead {
  margin-bottom: 26px;
}

.renewal-prose>.renewal-arrow-link {
  margin-top: 8px;
}

.renewal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  align-items: center;
  margin-top: 38px;
}

.renewal-button {
  display: inline-flex;
  min-height: 58px;
  padding: 14px 26px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rp-wine);
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.renewal-button--primary {
  color: var(--rp-white);
  background: var(--rp-wine);
}

.renewal-button--primary:hover {
  border-color: var(--rp-ink);
  background: var(--rp-ink);
}

.renewal-button--light {
  color: var(--rp-ink);
  border-color: var(--rp-white);
  background: var(--rp-white);
}

.renewal-button--outline {
  color: var(--rp-wine);
  background: transparent;
}

.renewal-button--outline:hover {
  color: var(--rp-white);
  background: var(--rp-wine);
}

.renewal-text-link,
.renewal-arrow-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--rp-ink);
  font-weight: 600;
  text-decoration: none;
}

.renewal-arrow-link::after {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  background: currentColor;
  content: "";
  transition: transform .2s ease;
  -webkit-mask: var(--rp-mask-arrow) center / contain no-repeat;
  mask: var(--rp-mask-arrow) center / contain no-repeat;
}

.renewal-arrow-link:hover::after,
.renewal-text-link:hover::after {
  transform: translateX(4px);
}

.renewal-text-link:hover,
.renewal-arrow-link:hover {
  color: var(--rp-wine);
}

.renewal-text-link--light,
.renewal-arrow-link--light {
  color: var(--rp-white);
}

/* ------------------------------------------------------------------
 * 線画アイコン
 * ---------------------------------------------------------------- */
.rp-icon {
  display: inline-flex;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  color: var(--rp-wine);
  vertical-align: middle;
}

.rp-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.rp-icon--sm {
  width: 16px;
  height: 16px;
}

.rp-icon--lg {
  width: 30px;
  height: 30px;
}

/* 丸い枠付き（カード見出しの上など） */
.rp-icon--framed {
  width: 50px;
  height: 50px;
  border: 1px solid var(--rp-line);
  border-radius: 50%;
}

.rp-icon--framed svg {
  width: 24px;
  height: 24px;
}

.renewal-footer__nav>div>p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.renewal-footer__nav .rp-icon {
  width: 17px;
  height: 17px;
}

/* 濃色・反転背景ではテキスト色を継承する */
.renewal-text-link--light .rp-icon,
.renewal-arrow-link--light .rp-icon,
.renewal-section--ink .rp-icon,
.renewal-section--wine .rp-icon,
.renewal-contact-cta .rp-icon,
.renewal-footer .rp-icon,
.renewal-service-card--primary .rp-icon {
  color: inherit;
}

/* ボタン内アイコン */
.renewal-button .rp-icon,
.renewal-text-link .rp-icon,
.renewal-header__contact .rp-icon,
.renewal-mobile-menu__contact .rp-icon {
  width: 17px;
  height: 17px;
  margin-right: 10px;
  color: inherit;
}

.renewal-button--primary .rp-icon,
.renewal-button--light .rp-icon {
  color: inherit;
}

/* Header */
.renewal-header {
  position: relative;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
  color: var(--rp-white);
  background: var(--rp-wine);
}

.renewal-header__inner {
  display: flex;
  width: min(1440px, calc(100% - 48px));
  min-height: 78px;
  margin-inline: auto;
  align-items: center;
  gap: 10px;
}

.renewal-header__brand {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  margin-left: 10px;
}

.renewal-header__wordmark {
  color: var(--rp-white);
  font-family: var(--rp-serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1;
}

.renewal-header__descriptor {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, .36);
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  letter-spacing: .08em;
  white-space: nowrap;
}

.renewal-header__nav {
  margin-left: auto;
}

.renewal-header__nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  list-style: none;
}

.renewal-header__nav a {
  position: relative;
  display: block;
  padding: 26px 0 23px;
  color: var(--rp-white);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.renewal-header__nav a::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 1px;
  background: var(--rp-white);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.renewal-header__nav a:hover::after,
.renewal-header__nav .is-priority a::after {
  transform: scaleX(1);
}

.renewal-header__nav .is-priority a {
  color: var(--rp-white);
}

.renewal-header__contact {
  display: inline-flex;
  min-height: 48px;
  padding: 10px 20px;
  align-items: center;
  border: 1px solid var(--rp-white);
  color: var(--rp-wine);
  background: var(--rp-white);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.renewal-header__contact:hover {
  color: var(--rp-white);
  background: transparent;
}

.renewal-menu-button,
.renewal-mobile-menu {
  display: none;
}

.renewal-page-heading {
  padding: 48px 0 38px;
  border-bottom: 1px solid var(--rp-line);
  background: var(--rp-paper);
}

.renewal-page-heading p {
  margin: 0 0 10px;
  color: var(--rp-wine);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}

.renewal-page-heading h2 {
  width: auto;
  margin: 0;
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: var(--rp-h2-wide);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: .02em;
}

.renewal-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  min-height: 62px;
  padding-block: 18px;
  align-items: center;
  gap: 8px 12px;
  color: var(--rp-muted);
  font-size: 12px;
}

.renewal-breadcrumb a {
  color: var(--rp-muted);
}

/* Home */
.home-hero {
  padding: 76px 0 82px;
  overflow: hidden;
}

.home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, .88fr);
  gap: clamp(52px, 6.5vw, 104px);
  align-items: center;
}

.home-hero h1 {
  width: auto;
  margin: 0 0 30px;
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: clamp(32px, 3.6vw, 50px);
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: .02em;
}

.home-hero__lead {
  max-width: 670px;
  margin: 0;
  font-size: 15px;
  line-height: 2;
}

.home-hero__visual {
  position: relative;
  padding: 0 0 82px 58px;
}

.home-hero__visual::before {
  position: absolute;
  top: -150px;
  right: -35vw;
  bottom: 20px;
  left: 0;
  z-index: -1;
  background: var(--rp-paper);
  content: "";
}

.home-hero__visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(100%);
}

.home-hero__visual>p {
  position: absolute;
  right: -24px;
  bottom: 0;
  width: min(400px, 90%);
  margin: 0;
  padding: 26px 30px;
  color: var(--rp-white);
  background: var(--rp-wine);
  font-family: var(--rp-serif);
  font-size: 15px;
  line-height: 1.75;
}

.home-hero__visual>p span {
  display: block;
  margin-bottom: 8px;
  font-family: var(--rp-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}

.home-principles {
  border-top: 1px solid var(--rp-line);
  border-bottom: 1px solid var(--rp-line);
}

.home-principles ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-principles li {
  display: grid;
  min-height: 128px;
  padding: 28px 34px;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  border-left: 1px solid var(--rp-line);
}

.home-principles li:last-child {
  border-right: 1px solid var(--rp-line);
}

.home-principles strong {
  grid-row: 1 / 3;
  color: var(--rp-wine);
  font-family: var(--rp-serif);
  font-size: 16px;
  font-weight: 600;
}

.home-principles span {
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: 19px;
  font-weight: 600;
}

.home-principles small {
  color: var(--rp-muted);
  font-size: 12px;
}

.home-domain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 82px;
  border-top: 1px solid var(--rp-ink);
  border-bottom: 1px solid var(--rp-ink);
}

.home-domain-grid article {
  min-height: 280px;
  padding: 38px 34px;
  border-left: 1px solid var(--rp-line);
}

.home-domain-grid article:last-child {
  border-right: 1px solid var(--rp-line);
}

.home-domain-grid article>p {
  margin: 0 0 22px;
  color: var(--rp-wine);
  font-size: 12px;
  font-weight: 700;
}

.home-domain-grid h3 {
  margin: 0 0 18px;
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: var(--rp-h3);
  font-weight: 600;
  line-height: 1.6;
}

.home-domain-grid span {
  color: var(--rp-muted);
  font-size: 14px;
}

.home-subsidy__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--rp-gap);
}

.home-subsidy h2 {
  width: auto;
  margin: 0;
  color: var(--rp-white);
  font-family: var(--rp-serif);
  font-size: var(--rp-h2);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .02em;
}

.home-subsidy .renewal-kicker,
.renewal-section--wine .renewal-kicker {
  color: #ead7d9;
}

.home-subsidy .renewal-note {
  margin-top: 28px;
  color: #d7cfca;
}

.home-subsidy .renewal-arrow-link {
  margin-top: 26px;
}

/* Service cards */
.renewal-service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rp-ink);
  border-left: 1px solid var(--rp-line);
}

.renewal-service-card {
  margin: 0;
  border-right: 1px solid var(--rp-line);
  border-bottom: 1px solid var(--rp-line);
  background: var(--rp-white);
}

.renewal-service-card a {
  display: flex;
  min-height: 330px;
  padding: 36px;
  flex-direction: column;
  text-decoration: none;
}

.renewal-service-card__number {
  margin: 0 0 26px;
  color: var(--rp-wine);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
}

.renewal-service-card h3 {
  margin: 0 0 18px;
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: clamp(20px, 1.65vw, 24px);
  font-weight: 600;
  line-height: 1.55;
}

.renewal-service-card p:not(.renewal-service-card__number) {
  margin: 0 0 24px;
  color: var(--rp-muted);
  font-size: 14px;
}

.renewal-service-card a>span {
  margin-top: auto;
  color: var(--rp-ink);
  font-size: 13px;
  font-weight: 700;
}

.renewal-service-card a>span {
  display: inline-flex;
  align-items: center;
  gap: 0px;
}

.renewal-service-card a>span::after {
  width: 17px;
  height: 17px;
  background: currentColor;
  content: "";
  transition: transform .2s ease;
  -webkit-mask: var(--rp-mask-arrow) center / contain no-repeat;
  mask: var(--rp-mask-arrow) center / contain no-repeat;
}

.renewal-service-card a:hover>span::after {
  transform: translateX(4px);
}

.renewal-service-card:hover {
  background: var(--rp-paper);
}

.renewal-service-card--primary,
.renewal-service-card--primary:hover {
  background: var(--rp-wine);
}

.renewal-service-card--primary .renewal-service-card__number,
.renewal-service-card--primary h3,
.renewal-service-card--primary p:not(.renewal-service-card__number),
.renewal-service-card--primary a>span {
  color: var(--rp-white);
}

.home-content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.home-content-card a {
  display: block;
  text-decoration: none;
}

.home-content-card__image {
  display: flex;
  aspect-ratio: 4 / 3;
  margin-bottom: 24px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--rp-white);
  background: var(--rp-ink);
  font-family: var(--rp-serif);
  letter-spacing: .12em;
}

.home-content-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.home-content-card a:hover img {
  transform: scale(1.025);
}

.home-content-card>a>p {
  margin: 0 0 8px;
  color: var(--rp-wine);
  font-size: 11px;
  font-weight: 700;
}

.home-content-card h3 {
  margin: 0;
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
}

.home-journal__grid {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(0, 1.15fr);
  gap: clamp(48px, 6vw, 110px);
}

.home-journal h2 {
  width: auto;
  margin: 0 0 34px;
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: var(--rp-h2);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .02em;
}

.home-journal__list {
  border-top: 1px solid var(--rp-ink);
}

.home-journal__list article {
  border-bottom: 1px solid var(--rp-line);
}

.home-journal__list a {
  display: grid;
  min-height: 118px;
  padding: 26px 0;
  grid-template-columns: 110px 1fr 24px;
  align-items: center;
  gap: 24px;
  text-decoration: none;
}

.home-journal__list time {
  color: var(--rp-muted);
  font-size: 12px;
}

.home-journal__list h3 {
  margin: 0;
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.65;
}

.home-journal__list a:hover h3 {
  color: var(--rp-wine);
}

.home-journal__list a>span[aria-hidden] {
  width: 18px;
  height: 18px;
  background: var(--rp-muted);
  font-size: 0;
  transition: transform .2s ease, background-color .2s ease;
  -webkit-mask: var(--rp-mask-arrow) center / contain no-repeat;
  mask: var(--rp-mask-arrow) center / contain no-repeat;
}

.home-journal__list a:hover>span[aria-hidden] {
  background: var(--rp-wine);
  transform: translateX(4px);
}

.home-company {
  padding: 80px 0 120px;
}

.home-company__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
}

.home-company__image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: grayscale(100%);
}

.home-company p:not(.renewal-kicker) {
  margin: 30px 0;
}

/* Business and company */
.renewal-business-method ol,
.renewal-company-values ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rp-ink);
  list-style: none;
}

.renewal-company-values ol {
  grid-template-columns: repeat(3, 1fr);
}

.renewal-business-method li,
.renewal-company-values li {
  min-height: 270px;
  padding: 36px 28px;
  border-right: 1px solid var(--rp-line);
  border-bottom: 1px solid var(--rp-line);
}

.renewal-business-method li:first-child,
.renewal-company-values li:first-child {
  border-left: 1px solid var(--rp-line);
}

.renewal-business-method li>span,
.renewal-company-values li>span {
  color: var(--rp-wine);
  font-family: var(--rp-serif);
  font-size: 16px;
}

.renewal-business-method h3,
.renewal-company-values h3 {
  margin: 42px 0 14px;
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: 22px;
  font-weight: 600;
}

.renewal-business-method li p,
.renewal-company-values li p {
  margin: 0;
  color: var(--rp-muted);
  font-size: 14px;
}

.renewal-company-image {
  width: min(1440px, calc(100% - 80px));
  margin-inline: auto;
}

.renewal-company-image img {
  display: block;
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  filter: grayscale(100%);
}

.renewal-company-profile table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--rp-ink);
}

.renewal-company-profile th,
.renewal-company-profile td {
  padding: 24px 18px;
  border-bottom: 1px solid var(--rp-line);
  text-align: left;
  vertical-align: top;
}

.renewal-company-profile th {
  width: 150px;
  color: var(--rp-wine);
  font-size: 13px;
}

.renewal-company-profile td ul {
  margin: 0;
  padding-left: 1.2em;
}

/* AI */
.ai-page {
  color: var(--rp-text);
}

.ai-hero {
  padding: 78px 0 0;
}

.ai-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, .72fr);
  gap: clamp(52px, 6.5vw, 104px);
  align-items: end;
}

.ai-hero h1 {
  width: auto;
  margin: 0;
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: var(--rp-display);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: .02em;
}

.ai-hero__copy p:not(.renewal-lead) {
  margin-top: 22px;
}

.ai-hero__statement {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
  margin-top: 76px;
  color: var(--rp-white);
  background: var(--rp-ink);
}

.ai-hero__statement>p {
  margin: 0;
  padding: 42px;
  border-right: 1px solid #484441;
  font-family: var(--rp-serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.7;
}

.ai-hero__statement ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.ai-hero__statement li {
  display: flex;
  min-height: 150px;
  padding: 26px 18px;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid #484441;
  font-family: var(--rp-serif);
  font-size: 15px;
}

.ai-hero__statement li:last-child {
  border-right: 0;
}

.ai-hero__statement li span {
  display: block;
  margin-bottom: 22px;
  color: #d6b9bd;
  font-family: var(--rp-sans);
  font-size: 11px;
}

.ai-local-nav {
  position: sticky;
  z-index: 100;
  top: 0;
  margin-top: 42px;
  border-top: 1px solid var(--rp-line);
  border-bottom: 1px solid var(--rp-line);
  background: rgba(255, 255, 255, .96);
}

.ai-local-nav .renewal-container {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 48px);
}

.ai-local-nav a {
  color: var(--rp-text);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.ai-local-nav a:hover {
  color: var(--rp-wine);
}

.ai-challenge-list {
  display: grid;
  grid-template-columns: minmax(220px, .55fr) minmax(0, 1.45fr);
  gap: 80px;
  margin-top: 82px;
  padding-top: 34px;
  border-top: 1px solid var(--rp-ink);
}

.ai-challenge-list>p {
  margin: 0;
  color: var(--rp-wine);
  font-family: var(--rp-serif);
  font-size: 18px;
  font-weight: 600;
}

.ai-challenge-list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 46px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ai-challenge-list li {
  position: relative;
  padding: 17px 0 17px 24px;
  border-bottom: 1px solid var(--rp-line);
  font-size: 14px;
}

.ai-challenge-list li::before {
  position: absolute;
  top: 29px;
  left: 2px;
  width: 7px;
  height: 7px;
  background: var(--rp-wine);
  content: "";
}

.ai-service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--rp-ink);
  border-left: 1px solid var(--rp-line);
}

.ai-service-list article {
  min-height: 360px;
  padding: 42px;
  border-right: 1px solid var(--rp-line);
  border-bottom: 1px solid var(--rp-line);
  background: var(--rp-white);
}

.ai-service-list article>p {
  margin: 0 0 42px;
  color: var(--rp-wine);
  font-size: 12px;
  font-weight: 700;
}

.ai-service-list h3 {
  margin: 0 0 24px;
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: 25px;
  font-weight: 600;
}

.ai-service-list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 28px;
  margin: 0;
  padding: 0;
  color: var(--rp-muted);
  font-size: 13px;
  list-style: none;
}

.ai-service-list li::before {
  margin-right: 8px;
  color: var(--rp-wine);
  content: "—";
}

.ai-deliverables dl {
  margin: 0;
  border-top: 1px solid var(--rp-ink);
}

.ai-deliverables dl>div {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 26px;
  padding: 23px 0;
  border-bottom: 1px solid var(--rp-line);
}

.ai-deliverables dt {
  color: var(--rp-wine);
  font-family: var(--rp-serif);
  font-weight: 600;
}

.ai-deliverables dd {
  margin: 0;
  color: var(--rp-muted);
}

.ai-process ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .45);
  list-style: none;
}

.ai-process li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 40px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .28);
}

.ai-process li>span {
  color: #e2c5c8;
  font-family: var(--rp-serif);
  font-size: 20px;
}

.ai-process h3 {
  margin: 0 0 8px;
  color: var(--rp-white);
  font-family: var(--rp-serif);
  font-size: 24px;
  font-weight: 600;
}

.ai-process li p {
  margin: 0;
  color: #eadfe0;
}

.ai-subsidy__summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 72px;
  border-top: 1px solid var(--rp-ink);
  border-bottom: 1px solid var(--rp-ink);
}

.ai-subsidy__summary article {
  min-height: 230px;
  padding: 34px;
  border-left: 1px solid var(--rp-line);
}

.ai-subsidy__summary article:last-child {
  border-right: 1px solid var(--rp-line);
}

.ai-subsidy__summary p {
  margin: 0 0 28px;
  color: var(--rp-wine);
  font-size: 12px;
  font-weight: 700;
}

.ai-subsidy__summary strong {
  display: block;
  margin-bottom: 18px;
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 600;
  line-height: 1.45;
}

.ai-subsidy__summary span {
  color: var(--rp-muted);
  font-size: 12px;
}

.ai-subsidy__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
}

.ai-subsidy__content h3,
.ai-subsidy__caution h3 {
  margin: 0 0 20px;
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: 22px;
  font-weight: 600;
}

.ai-subsidy__content ul {
  margin: 0;
  padding-left: 1.3em;
}

.ai-subsidy__content li {
  margin-bottom: 10px;
}

.ai-subsidy__caution {
  margin-top: 62px;
  padding: 38px 42px;
  border: 1px solid var(--rp-wine);
  background: #fbf6f6;
}

.ai-subsidy__caution p {
  margin: 16px 0 0;
}

.ai-subsidy__links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 30px;
  margin-top: 34px;
  align-items: center;
}

.ai-safety__list {
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--rp-ink);
  list-style: none;
}

.ai-safety__list li {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 26px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rp-line);
}

.ai-safety__list strong {
  color: var(--rp-wine);
  font-family: var(--rp-serif);
}

.ai-insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.ai-insight-grid article {
  padding-top: 26px;
  border-top: 1px solid var(--rp-ink);
}

.ai-insight-grid time {
  color: var(--rp-muted);
  font-size: 12px;
}

.ai-insight-grid h3 {
  margin: 16px 0;
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
}

.ai-insight-grid h3 a {
  text-decoration: none;
}

.ai-insight-grid article>p {
  color: var(--rp-muted);
  font-size: 14px;
}

.ai-faq h2 {
  width: auto;
  margin: 0 0 50px;
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: var(--rp-h2-wide);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .02em;
}

.ai-faq-list {
  border-top: 1px solid var(--rp-ink);
}

.ai-faq-list details {
  border-bottom: 1px solid var(--rp-line);
}

.ai-faq-list summary {
  position: relative;
  display: flex;
  padding: 26px 52px 26px 0;
  align-items: flex-start;
  gap: 22px;
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

.ai-faq-list summary::marker {
  content: "";
}

.ai-faq-list summary::-webkit-details-marker {
  display: none;
}

.ai-faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background: var(--rp-wine);
  content: "";
  transition: transform .2s ease;
  -webkit-mask: var(--rp-mask-plus) center / contain no-repeat;
  mask: var(--rp-mask-plus) center / contain no-repeat;
}

.ai-faq-list details[open] summary::after {
  -webkit-mask-image: var(--rp-mask-minus);
  mask-image: var(--rp-mask-minus);
}

.ai-faq-list summary>span,
.ai-faq-list details>div>span {
  flex: 0 0 auto;
  color: var(--rp-wine);
  font-family: var(--rp-serif);
}

.ai-faq-list details>div {
  display: flex;
  padding: 0 28px 28px 0;
  gap: 24px;
}

.ai-faq-list details>div p {
  margin: 0;
}

/* Industry landing pages */
.industryWebDesign {
  color: var(--rp-text);
  background: var(--rp-white);
}

.industryWebDesign>section>.inner,
.industryAreaLinksBlock>.inner {
  width: var(--rp-container);
  max-width: none;
  margin-inline: auto;
}

.industryHero {
  position: relative;
  padding: 84px 0 92px;
  overflow: hidden;
  background: var(--rp-sand);
}

.industryHero::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 28%;
  height: 100%;
  border-left: 1px solid rgba(141, 20, 32, .16);
  background: var(--rp-blush);
  content: "";
}

.industryHero>.inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.industryHero__body {
  padding-left: 28px;
  border-left: 4px solid var(--rp-wine);
}

.industryHero__sub,
.industrySectionHead__sub,
.industryCta__sub {
  margin: 0 0 16px;
  color: var(--rp-wine);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
}

.industryHero__title {
  width: auto;
  margin: 0 0 26px;
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: var(--rp-display);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: .02em;
}

.industryHero__lead {
  max-width: 670px;
  margin: 0;
  color: var(--rp-text);
  font-size: 15px;
  line-height: 2;
}

.industryHero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.industryBtn {
  display: inline-flex;
  min-height: 52px;
  padding: 12px 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rp-wine);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease;
}

.industryBtn--primary {
  color: var(--rp-white);
  background: var(--rp-wine);
}

.industryBtn--secondary {
  color: var(--rp-wine);
  background: transparent;
}

.industryBtn:hover {
  color: var(--rp-white);
  border-color: var(--rp-ink);
  background: var(--rp-ink);
}

.industryHero__card {
  position: relative;
  padding: 40px;
  color: var(--rp-white);
  background: var(--rp-wine-dark);
}

.industryHero__card::before {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, .24);
  pointer-events: none;
  content: "";
}

.industryHero__point {
  position: relative;
}

.industryHero__point strong {
  display: block;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  font-family: var(--rp-serif);
  font-size: 17px;
  font-weight: 600;
}

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

.industryHero__point li {
  position: relative;
  margin: 9px 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, .84);
  font-size: 13px;
}

.industryHero__point li::before {
  position: absolute;
  top: .8em;
  left: 0;
  width: 7px;
  height: 1px;
  background: var(--rp-white);
  content: "";
}

.industryProblem,
.industryScope,
.industryReason,
.industryCase,
.industryFlow,
.industryFaq,
.industryCta,
.industryAreaLinksBlock {
  padding: 96px 0;
}

.industryProblem {
  background: var(--rp-blush);
}

.industryReason,
.industryFaq {
  background: var(--rp-white);
}

.industryFlow,
.industryAreaLinksBlock {
  background: var(--rp-sand);
}

.industryCase,
.industryCta {
  color: var(--rp-white);
  background: var(--rp-ink);
}

.industrySectionHead {
  display: grid;
  margin-bottom: 46px;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: start;
}

.industrySectionHead__sub {
  padding-top: 9px;
}

.industrySectionHead h2,
.industryCta h2 {
  width: auto;
  margin: 0;
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: var(--rp-h2);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: .02em;
}

.industryCase .industrySectionHead h2,
.industryCase .industrySectionHead__sub,
.industryCta h2,
.industryCta__sub {
  color: var(--rp-white);
}

.industryProblem__grid,
.industryReason__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--rp-ink);
  border-left: 1px solid rgba(25, 24, 23, .18);
}

.industryProblem__item,
.industryReason__item {
  position: relative;
  min-height: 220px;
  padding: 34px 36px;
  border-right: 1px solid rgba(25, 24, 23, .18);
  border-bottom: 1px solid rgba(25, 24, 23, .18);
}

.industryProblem__item:nth-child(2),
.industryProblem__item:nth-child(3) {
  background: rgba(255, 255, 255, .42);
}

.industryProblem__item::before {
  display: block;
  width: 26px;
  height: 3px;
  margin-bottom: 28px;
  background: var(--rp-wine);
  content: "";
}

.industryProblem__item h3,
.industryReason__item h3 {
  margin: 0 0 14px;
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.55;
}

.industryProblem__item p,
.industryReason__item p {
  margin: 0;
  color: var(--rp-muted);
  font-size: 13px;
}

.industryScope {
  background: var(--rp-ink);
}

.industryScope>.inner {
  width: var(--rp-container);
  margin-inline: auto;
}

.industryScope .industrySectionHead h2,
.industryScope .industrySectionHead__sub {
  color: var(--rp-white);
}

.industryScope__lead {
  max-width: 880px;
  margin: -10px 0 44px 150px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

.industryScope__grid {
  display: grid;
  margin-left: 150px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .46);
  border-left: 1px solid rgba(255, 255, 255, .18);
}

.industryScope__grid article {
  min-height: 230px;
  padding: 30px 28px;
  border-right: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.industryScope__grid article:nth-child(even) {
  background: rgba(255, 255, 255, .035);
}

.industryScope__grid span {
  display: block;
  margin-bottom: 32px;
  color: #d7aeb3;
  font-family: var(--rp-serif);
  font-size: 13px;
}

.industryScope__grid h3 {
  margin: 0 0 12px;
  color: var(--rp-white);
  font-family: var(--rp-serif);
  font-size: 19px;
  font-weight: 600;
}

.industryScope__grid p {
  margin: 0;
  color: rgba(255, 255, 255, .65);
  font-size: 12px;
}

.industryScope__related {
  margin: 28px 0 0 150px;
  padding: 22px 24px;
  border-left: 3px solid #d7aeb3;
  background: rgba(255, 255, 255, .055);
}

.industryScope__related p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.industryScope__related strong {
  color: var(--rp-white);
}

.industryScope__related a {
  margin-left: .2em;
  color: var(--rp-white);
  text-decoration-color: #d7aeb3;
  text-underline-offset: 4px;
}

.industryReason__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.industryReason__item {
  min-height: 290px;
  padding-top: 30px;
}

.industryReason__num {
  display: block;
  margin-bottom: 54px;
  color: var(--rp-wine);
  font-family: var(--rp-serif);
  font-size: 15px;
}

.industryCase__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.industryCase__item a {
  display: block;
  color: var(--rp-white);
  text-decoration: none;
}

.industryCase__thumb {
  margin: 0 0 18px;
  overflow: hidden;
  border-bottom: 3px solid var(--rp-wine);
  background: #2d2a28;
}

.industryCase__thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .3s ease;
}

.industryCase__item a:hover img {
  transform: scale(1.025);
}

.industryCase__title {
  margin: 0;
  color: var(--rp-white);
  font-family: var(--rp-serif);
  font-size: 17px;
  line-height: 1.6;
}

.industryCase__btn {
  margin-top: 38px;
  text-align: right;
}

.industryCase .industryBtn--secondary {
  color: var(--rp-white);
  border-color: rgba(255, 255, 255, .6);
}

.industryFlow__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--rp-ink);
  border-left: 1px solid rgba(25, 24, 23, .2);
}

.industryFlow__item {
  min-height: 260px;
  padding: 32px 30px;
  border-right: 1px solid rgba(25, 24, 23, .2);
  border-bottom: 1px solid rgba(25, 24, 23, .2);
}

.industryFlow__item:nth-child(even) {
  background: rgba(255, 255, 255, .5);
}

.industryFlow__item>span {
  display: block;
  margin-bottom: 46px;
  color: var(--rp-wine);
  font-family: var(--rp-serif);
}

.industryFlow__item h3 {
  margin: 0 0 12px;
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: 20px;
  font-weight: 600;
}

.industryFlow__item p {
  margin: 0;
  color: var(--rp-muted);
  font-size: 13px;
}

.industryFaq__list {
  margin-left: 150px;
  border-top: 1px solid var(--rp-ink);
}

.industryFaq__item {
  display: grid;
  padding: 28px 0;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  gap: 44px;
  border-bottom: 1px solid var(--rp-line);
}

.industryFaq__item h3,
.industryFaq__item p {
  position: relative;
  margin: 0;
  padding-left: 32px;
}

.industryFaq__item h3 {
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: 16px;
  font-weight: 600;
}

.industryFaq__item p {
  color: var(--rp-muted);
  font-size: 13px;
}

.industryFaq__item h3::before,
.industryFaq__item p::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--rp-wine);
  font-family: var(--rp-serif);
  font-size: 15px;
  content: "Q";
}

.industryFaq__item p::before {
  content: "A";
}

.industryAreaLinksBlock__lead {
  margin: -18px 0 34px 150px;
  color: var(--rp-muted);
}

.industryAreaLinksBlock__list {
  display: grid;
  margin-left: 150px;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rp-ink);
  border-left: 1px solid rgba(25, 24, 23, .2);
}

.industryAreaLinksBlock__list a {
  display: flex;
  min-height: 82px;
  padding: 18px;
  align-items: center;
  border-right: 1px solid rgba(25, 24, 23, .2);
  border-bottom: 1px solid rgba(25, 24, 23, .2);
  color: var(--rp-ink);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.industryAreaLinksBlock__list a::after {
  margin-left: auto;
  color: var(--rp-wine);
  content: "↗";
}

.industryAreaLinksBlock__list a:hover {
  color: var(--rp-white);
  background: var(--rp-wine);
}

.industryAreaLinksBlock__list a:hover::after {
  color: var(--rp-white);
}

.industryCta {
  position: relative;
  overflow: hidden;
}

.industryCta::after {
  position: absolute;
  top: -60px;
  right: -40px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(255, 255, 255, .12);
  content: "";
  transform: rotate(45deg);
}

.industryCta>.inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .62fr);
  gap: 36px 80px;
  align-items: end;
}

.industryCta__sub {
  grid-column: 1;
  margin-bottom: -18px;
}

.industryCta h2 {
  grid-column: 1;
}

.industryCta__text {
  grid-column: 2;
  grid-row: 1 / 3;
  margin: 0;
  color: rgba(255, 255, 255, .72);
}

.industryCta .industryBtn {
  grid-column: 2;
  justify-self: start;
  color: var(--rp-ink);
  border-color: var(--rp-white);
  background: var(--rp-white);
}

/* Area landing pages */
:where(.areaWebDesign, .osakaWebDesign, .kitaWebDesign, .chuoWebDesign, .kyobashiWebDesign, .fukushimaWebDesign) {
  color: var(--rp-text);
  background: var(--rp-white);
}

:where(.areaWebDesign, .osakaWebDesign, .kitaWebDesign, .chuoWebDesign, .kyobashiWebDesign, .fukushimaWebDesign) .inner,
.areaInternalLinks>.inner {
  width: var(--rp-container);
  max-width: none;
  margin-inline: auto;
}

.lowerPageHead {
  padding: 74px 0 78px;
  background: var(--rp-sand);
}

.lowerPageHead .inner {
  position: relative;
  padding: 0 0 0 30px;
  border-left: 4px solid var(--rp-wine);
}

.lowerPageHead .inner::after {
  position: absolute;
  top: 4px;
  right: 0;
  width: 72px;
  height: 72px;
  border-top: 1px solid rgba(141, 20, 32, .35);
  border-right: 1px solid rgba(141, 20, 32, .35);
  content: "";
}

.lowerPageHead h1 {
  width: auto;
  max-width: 850px;
  margin: 0 0 24px;
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: var(--rp-display);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: .02em;
}

.lowerPageHead p {
  max-width: 820px;
  margin: 0;
  font-size: 14px;
  line-height: 2;
}

.lowerPageHead .pageLeadLink {
  margin-top: 18px;
  color: var(--rp-muted);
  font-size: 12px;
}

.lowerPageHead a,
.pageLinkText a {
  color: var(--rp-wine);
  text-underline-offset: 3px;
}

:where(.areaWebDesign, .osakaWebDesign, .kitaWebDesign, .chuoWebDesign, .kyobashiWebDesign, .fukushimaWebDesign) .pageSection,
.areaInternalLinks {
  padding: 88px 0;
}

:where(.areaWebDesign, .osakaWebDesign, .kitaWebDesign, .chuoWebDesign, .kyobashiWebDesign, .fukushimaWebDesign) .pageSection:nth-of-type(odd) {
  background: var(--rp-blush);
}

:where(.areaWebDesign, .osakaWebDesign, .kitaWebDesign, .chuoWebDesign, .kyobashiWebDesign, .fukushimaWebDesign) .pageSection:nth-of-type(even) {
  background: var(--rp-white);
}

:where(.areaWebDesign, .osakaWebDesign, .kitaWebDesign, .chuoWebDesign, .kyobashiWebDesign, .fukushimaWebDesign) .pageSection h2,
.areaInternalLinks__title {
  width: auto;
  margin: 0 0 34px;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--rp-ink);
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: var(--rp-h2-wide);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: .02em;
  text-align: left;
}

:where(.areaWebDesign, .osakaWebDesign, .kitaWebDesign, .chuoWebDesign, .kyobashiWebDesign, .fukushimaWebDesign) .pageSection>.inner>p {
  max-width: 900px;
}

.serviceList,
.troubleList,
.caseList {
  display: grid;
  margin-top: 46px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--rp-ink);
  border-left: 1px solid rgba(25, 24, 23, .18);
}

.troubleList {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.serviceItem,
.troubleItem {
  position: relative;
  min-height: 200px;
  padding: 34px 30px;
  border-right: 1px solid rgba(25, 24, 23, .18);
  border-bottom: 1px solid rgba(25, 24, 23, .18);
  background: rgba(255, 255, 255, .72);
}

.serviceItem::before,
.troubleItem::before {
  display: block;
  width: 24px;
  height: 2px;
  margin-bottom: 24px;
  background: var(--rp-wine);
  content: "";
}

.serviceItem h3,
.troubleItem h3 {
  margin: 0 0 12px;
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: 19px;
  font-weight: 600;
}

.serviceItem p,
.troubleItem p {
  margin: 0;
  color: var(--rp-muted);
  font-size: 13px;
}

.pointList {
  margin: 40px 0 0;
  padding: 0;
  border-top: 1px solid var(--rp-ink);
  list-style: none;
  counter-reset: area-point;
}

.pointList li {
  position: relative;
  padding: 26px 20px 26px 80px;
  border-bottom: 1px solid var(--rp-line);
  counter-increment: area-point;
}

.pointList li::before {
  position: absolute;
  top: 24px;
  left: 18px;
  color: var(--rp-wine);
  font-family: var(--rp-serif);
  content: "0" counter(area-point);
}

.pointList strong {
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: 17px;
}

.industryList,
.areaList {
  display: grid;
  margin: 40px 0 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rp-ink);
  border-left: 1px solid var(--rp-line);
  list-style: none;
}

.industryList li,
.areaList li {
  display: flex;
  min-height: 76px;
  padding: 16px 18px;
  align-items: center;
  border-right: 1px solid var(--rp-line);
  border-bottom: 1px solid var(--rp-line);
  background: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 600;
}

.areaList li a {
  display: flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  text-decoration: none;
}

.areaList li a::after {
  width: 17px;
  height: 17px;
  margin-left: auto;
  background: var(--rp-wine);
  content: "";
  transition: transform .2s ease;
  -webkit-mask: var(--rp-mask-arrow) center / contain no-repeat;
  mask: var(--rp-mask-arrow) center / contain no-repeat;
}

.areaList li a:hover::after {
  transform: translateX(4px);
}

.caseItem {
  border-right: 1px solid var(--rp-line);
  border-bottom: 1px solid var(--rp-line);
  background: var(--rp-white);
}

.caseItem a {
  display: block;
  color: var(--rp-ink);
  text-decoration: none;
}

.caseItem figure,
.caseItem__thumb {
  margin: 0;
  overflow: hidden;
  background: var(--rp-sand);
}

.caseItem figure img,
.caseItem__thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.caseItem>a>p,
.caseItem__title {
  margin: 0;
  padding: 20px;
  font-family: var(--rp-serif);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}

.pageBtnWrap,
.ctaBtnWrap {
  margin-top: 38px;
  text-align: center;
}

.pageBtn,
.ctaBtn {
  display: inline-flex;
  min-height: 52px;
  padding: 12px 26px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rp-wine);
  color: var(--rp-white);
  background: var(--rp-wine);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.pageBtn:hover,
.ctaBtn:hover {
  border-color: var(--rp-ink);
  background: var(--rp-ink);
}

.areaFaq__list {
  margin-top: 44px;
  border-top: 1px solid var(--rp-ink);
}

.areaFaq__item {
  display: grid;
  padding: 26px 0;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  gap: 44px;
  border-bottom: 1px solid var(--rp-line);
}

.areaFaq__item h3,
.areaFaq__item p {
  position: relative;
  margin: 0;
  padding-left: 32px;
}

.areaFaq__item h3 {
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: 16px;
  font-weight: 600;
}

.areaFaq__item p {
  color: var(--rp-muted);
  font-size: 13px;
}

.areaFaq__item h3::before,
.areaFaq__item p::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--rp-wine);
  font-family: var(--rp-serif);
  content: "Q";
}

.areaFaq__item p::before {
  content: "A";
}

.areaInternalLinks {
  background: var(--rp-sand);
}

.areaInternalLinks__lead {
  margin: -12px 0 30px;
  color: var(--rp-muted);
}

.areaInternalLinks__list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rp-ink);
  border-left: 1px solid rgba(25, 24, 23, .2);
  list-style: none;
}

.areaInternalLinks__item {
  margin: 0;
  border-right: 1px solid rgba(25, 24, 23, .2);
  border-bottom: 1px solid rgba(25, 24, 23, .2);
}

.areaInternalLinks__item a {
  display: flex;
  min-height: 76px;
  padding: 15px;
  align-items: center;
  color: var(--rp-ink);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.areaInternalLinks__item a::after {
  margin-left: auto;
  color: var(--rp-wine);
  content: "↗";
}

.areaInternalLinks__sub {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.areaInternalLinks__sub a {
  display: inline-flex;
  min-height: 46px;
  padding: 10px 20px;
  align-items: center;
  border: 1px solid var(--rp-wine);
  color: var(--rp-wine);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

:where(.areaWebDesign, .osakaWebDesign, .kitaWebDesign, .chuoWebDesign, .kyobashiWebDesign, .fukushimaWebDesign) .ctaSection {
  color: var(--rp-white);
  background: var(--rp-ink) !important;
}

:where(.areaWebDesign, .osakaWebDesign, .kitaWebDesign, .chuoWebDesign, .kyobashiWebDesign, .fukushimaWebDesign) .ctaSection h2 {
  color: var(--rp-white);
  border-bottom-color: rgba(255, 255, 255, .35);
}

:where(.areaWebDesign, .osakaWebDesign, .kitaWebDesign, .chuoWebDesign, .kyobashiWebDesign, .fukushimaWebDesign) .ctaSection p {
  color: rgba(255, 255, 255, .75);
}

/* Generic pages, posts and archives */
.renewal-standard-page {
  padding: 70px 0 120px;
}

.renewal-standard-page h1 {
  width: auto;
  margin: 0 0 48px;
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: var(--rp-display);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: .02em;
}

.renewal-entry-content,
.single_box_content,
.caseSingle__editor,
.faqSingle__content,
.template-single__content {
  color: var(--rp-text);
  font-size: 16px;
  line-height: 2;
}

.renewal-entry-content h2,
.single_box_content h2,
.caseSingle__editor h2,
.faqSingle__content h2 {
  width: auto;
  margin: 64px 0 24px;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--rp-ink);
  color: var(--rp-ink);
  background: none;
  font-family: var(--rp-serif);
  font-size: clamp(23px, 2.2vw, 30px);
  font-weight: 600;
  line-height: 1.6;
}

.renewal-entry-content h3,
.single_box_content h3,
.caseSingle__editor h3,
.faqSingle__content h3 {
  margin: 42px 0 18px;
  padding-left: 18px;
  border-left: 3px solid var(--rp-wine);
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: 23px;
  font-weight: 600;
}

.renewal-entry-content a,
.single_box_content a,
.caseSingle__editor a,
.faqSingle__content a {
  color: var(--rp-wine);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.renewal-entry-content table,
.single_box_content table {
  width: 100%;
  margin: 36px 0;
  border-collapse: collapse;
}

.renewal-entry-content th,
.renewal-entry-content td,
.single_box_content th,
.single_box_content td {
  padding: 16px;
  border: 1px solid var(--rp-line);
  text-align: left;
  vertical-align: top;
}

.renewal-entry-content th,
.single_box_content th {
  background: var(--rp-paper);
}

.single_box {
  padding: 42px 0 110px;
  background: var(--rp-white);
}

.single_box>.inner {
  width: min(var(--rp-reading), calc(100% - 80px));
  margin-inline: auto;
  padding: 0;
}

.single_box .ttl {
  width: auto;
  margin: 18px 0 38px;
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.5;
  letter-spacing: .02em;
}

.single_box_top {
  display: flex;
  gap: 24px;
  color: var(--rp-muted);
  font-size: 12px;
}

.single_box .thumbnail {
  margin-bottom: 48px;
}

.single_box .thumbnail img {
  width: 100%;
}

.blgo,
.category .blgo {
  width: var(--rp-container);
  max-width: none;
  margin: 0 auto;
  padding: 36px 0 110px;
}

.blog_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin: 0;
  padding: 0;
}

.blog_list>li,
.blog_list>article {
  border-top: 1px solid var(--rp-ink);
}

.renewal-journal-archive .renewal-section-heading h1 {
  width: auto;
  margin: 0;
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: var(--rp-h1);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .02em;
}

.blog_list_inner {
  margin: 0;
  padding: 24px 0 30px;
}

.blog_list_inner>a {
  display: flex;
  height: 100%;
  flex-direction: column;
  color: var(--rp-text);
  text-decoration: none;
}

.blog_list_inner figure {
  width: 100%;
  margin: 0 0 20px;
  overflow: hidden;
  background: var(--rp-paper);
}

.blog_list_inner figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .3s ease;
}

.blog_list_inner>a:hover figure img {
  transform: scale(1.025);
}

.blog_list_inner .category_box {
  display: flex;
  margin-bottom: 14px;
  align-items: center;
  gap: 16px;
  color: var(--rp-muted);
  font-size: 11px;
}

.blog_list_inner .category {
  color: var(--rp-wine);
  font-weight: 700;
}

.blog_list_inner .ttl {
  width: auto;
  margin: 0 0 14px;
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.6;
}

.blog_list_inner .txt {
  margin: 0 0 20px;
  color: var(--rp-muted);
  font-size: 13px;
  line-height: 1.8;
}

.blog_list_inner__more {
  margin-top: auto;
  color: var(--rp-wine);
  font-size: 12px;
  font-weight: 700;
}

.pagination .nav-links,
.caseArchive__pagination .nav-links {
  display: flex;
  margin-top: 60px;
  justify-content: center;
  gap: 8px;
}

.pagination .page-numbers,
.caseArchive__pagination .page-numbers {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  padding: 8px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rp-line);
  text-decoration: none;
}

.pagination .current,
.caseArchive__pagination .current {
  color: var(--rp-white);
  border-color: var(--rp-wine);
  background: var(--rp-wine);
}

/* Existing service/area/industry templates inherit a calmer visual system. */
.represent-renewal .inner,
.caseArchive>.inner,
.caseArchive section>.inner,
.caseSingle section>.inner,
.faqArchive section>.inner,
.faqSingle section>.inner {
  width: var(--rp-container);
  max-width: none;
  margin-inline: auto;
}

.renewal-site-content main:not(.ai-page):not(.renewal-business-page):not(.renewal-company-page),
.renewal-site-content>section {
  color: var(--rp-text);
}

.represent-renewal .btn a,
.represent-renewal a.btn,
.caseArchive a[class*="button"],
.caseSingle a[class*="button"] {
  border-radius: 0;
}

.caseArchive__fv,
.caseSingle__fv,
.faqArchive__fv,
.faqSingle__fv {
  background: var(--rp-paper);
}

.caseArchive__title,
.caseSingle__title,
.faqArchive__title,
.faqSingle__title {
  color: var(--rp-ink);
  font-family: var(--rp-serif);
}

.caseCard,
.caseSingle__box,
.caseSingle__info,
.faqCard {
  border-radius: 0;
  box-shadow: none;
}

/* Works and FAQ: shared editorial layout */
.caseArchive,
.caseSingle,
.faqArchive,
.faqSingle {
  color: var(--rp-text);
  background: var(--rp-white);
}

.caseArchive__fv,
.caseSingle__fv,
.faqMv {
  position: relative;
  padding: 72px 0 76px;
  overflow: hidden;
  background: var(--rp-sand);
  text-align: left;
}

.caseArchive__fv::after,
.caseSingle__fv::after,
.faqMv::after {
  position: absolute;
  top: -80px;
  right: 5vw;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(141, 20, 32, .2);
  content: "";
  transform: rotate(45deg);
}

.caseArchive__fv .inner,
.caseSingle__fv .inner,
.faqMv .inner {
  position: relative;
  z-index: 1;
  width: var(--rp-container);
  max-width: none;
  margin-inline: auto;
  padding-left: 28px;
  border-left: 4px solid var(--rp-wine);
}

.caseArchive__sub,
.caseSingle__cats,
.faqSingle__cats {
  margin: 0 0 14px;
  color: var(--rp-wine);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
}

.caseArchive__title,
.caseSingle__title,
.faqMv h1 {
  width: auto;
  max-width: 900px;
  margin: 0 0 20px;
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: var(--rp-display);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: .02em;
}

.caseArchive__lead,
.caseSingle__lead,
.faqMv p {
  max-width: 760px;
  margin: 0;
  color: var(--rp-muted);
  font-size: 14px;
  line-height: 2;
}

.caseSingle__cats,
.faqSingle__cats {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px 18px;
}

.caseSingle__cat,
.faqSingle__cats a {
  padding: 0 0 3px;
  color: var(--rp-wine);
  border: 0;
  border-bottom: 1px solid rgba(141, 20, 32, .35);
  border-radius: 0;
  background: transparent;
  font-size: 11px;
  text-decoration: none;
}

.caseArchive__filter,
.faqArchive__section {
  border-top: 1px solid rgba(141, 20, 32, .12);
}

.caseArchive__filter {
  padding: 24px 0;
  background: var(--rp-blush);
}

.caseArchive__filterList,
.faqArchive__cats {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
  margin: 0;
}

.caseArchive__filterBtn,
.faqArchive__cat,
.faqArchive__cats a {
  display: inline-flex;
  min-height: 38px;
  padding: 8px 15px;
  align-items: center;
  border: 1px solid rgba(25, 24, 23, .25);
  border-radius: 0;
  color: var(--rp-ink);
  background: rgba(255, 255, 255, .55);
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
}

.caseArchive__filterBtn:hover,
.caseArchive__filterBtn.is-active,
.faqArchive__cat:hover,
.faqArchive__cat.is-current,
.faqArchive__cats a:hover,
.faqArchive__cats a.is-current {
  color: var(--rp-white);
  border-color: var(--rp-wine);
  background: var(--rp-wine);
}

.caseArchive__content,
.caseSingle__main,
.faqArchive__section,
.faqSingle__section {
  padding: 82px 0 100px;
}

.caseArchive__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--rp-ink);
  border-left: 1px solid var(--rp-line);
}

.caseCard {
  min-width: 0;
  border-right: 1px solid var(--rp-line);
  border-bottom: 1px solid var(--rp-line);
  background: var(--rp-white);
}

.caseCard__link {
  display: flex;
  height: 100%;
  flex-direction: column;
  color: var(--rp-text);
  text-decoration: none;
}

.caseCard__thumb {
  margin: 0;
  overflow: hidden;
  background: var(--rp-sand);
}

.caseCard__thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .3s ease;
}

.caseCard__link:hover .caseCard__thumb img {
  transform: scale(1.025);
}

.caseCard__body {
  display: flex;
  padding: 24px 22px 28px;
  flex: 1;
  flex-direction: column;
}

.caseCard__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-bottom: 15px;
}

.caseCard__cat {
  color: var(--rp-wine);
  font-size: 10px;
  font-weight: 700;
}

.caseCard__title {
  width: auto;
  margin: 0 0 13px;
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}

.caseCard__excerpt {
  margin: 0 0 22px;
  color: var(--rp-muted);
  font-size: 12px;
}

.caseCard__meta {
  margin: auto 0 0;
  border-top: 1px solid var(--rp-line);
}

.caseCard__metaRow {
  display: grid;
  padding: 7px 0;
  grid-template-columns: 70px 1fr;
  border-bottom: 1px solid var(--rp-line);
  font-size: 10px;
}

.caseCard__metaRow dt {
  color: var(--rp-muted);
}

.caseCard__metaRow dd {
  margin: 0;
}

.caseArchive__empty {
  padding: 48px;
  border: 1px solid var(--rp-line);
  background: var(--rp-paper);
  text-align: center;
}

.caseSingle__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(44px, 6vw, 84px);
  align-items: start;
}

.caseSingle__content {
  min-width: 0;
}

.caseSingle__hero {
  margin: 0 0 48px;
  background: var(--rp-sand);
}

.caseSingle__hero img {
  display: block;
  width: 100%;
  height: auto;
}

.caseRelatedLinks {
  margin: 54px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid var(--rp-ink);
}

.caseRelatedLinks .inner {
  width: 100%;
  margin: 0;
}

.caseRelatedLinks__title {
  margin: 0 0 16px;
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: 18px;
  font-weight: 600;
}

.caseRelatedLinks__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.caseRelatedLinks__list a {
  display: inline-flex;
  min-height: 40px;
  padding: 8px 14px;
  align-items: center;
  border: 1px solid var(--rp-line);
  color: var(--rp-ink);
  background: var(--rp-paper);
  font-size: 11px;
  text-decoration: none;
}

.caseSingle__section {
  margin-top: 64px;
}

.caseSingle__heading,
.caseSingle__sideTitle {
  width: auto;
  margin: 0 0 24px;
  padding: 0 0 16px;
  border-bottom: 1px solid var(--rp-ink);
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: 24px;
  font-weight: 600;
}

.caseSingle__box {
  padding: 26px 0;
  border-bottom: 1px solid var(--rp-line);
}

.caseSingle__box:first-of-type {
  border-top: 1px solid var(--rp-line);
}

.caseSingle__subheading {
  margin: 0 0 12px;
  color: var(--rp-wine);
  font-size: 14px;
}

.caseSingle__box p {
  margin: 0;
}

.caseSingle__gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, .34fr);
  gap: 28px;
  align-items: start;
}

.caseSingle__figure {
  margin: 0;
}

.caseSingle__figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--rp-line);
}

.caseSingle__figure figcaption {
  margin-top: 8px;
  color: var(--rp-muted);
  font-size: 10px;
}

.caseSingle__nav {
  display: grid;
  margin-top: 64px;
  padding-top: 22px;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  border-top: 1px solid var(--rp-ink);
  font-size: 11px;
}

.caseSingle__navItem--next {
  text-align: right;
}

.caseSingle__nav a {
  color: var(--rp-ink);
  text-decoration: none;
}

.caseSingle__sidebar {
  position: sticky;
  top: 104px;
}

.caseSingle__info,
.caseSingle__cta {
  padding: 26px 24px;
  border: 1px solid var(--rp-line);
  background: var(--rp-paper);
}

.caseSingle__cta {
  margin-top: 18px;
  color: var(--rp-white);
  border-color: var(--rp-ink);
  background: var(--rp-ink);
}

.caseSingle__sideTitle {
  margin-bottom: 16px;
  font-size: 17px;
}

.caseSingle__cta .caseSingle__sideTitle {
  color: var(--rp-white);
  border-bottom-color: rgba(255, 255, 255, .3);
}

.caseSingle__meta {
  margin: 0;
}

.caseSingle__metaRow {
  display: grid;
  padding: 10px 0;
  grid-template-columns: 76px 1fr;
  border-bottom: 1px solid var(--rp-line);
  font-size: 11px;
}

.caseSingle__metaRow dt {
  color: var(--rp-muted);
}

.caseSingle__metaRow dd {
  margin: 0;
}

.caseSingle__cta p {
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
}

.caseSingle__ctaBtn {
  display: inline-flex;
  min-height: 44px;
  padding: 10px 16px;
  align-items: center;
  color: var(--rp-ink);
  background: var(--rp-white);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.faqArchive__section {
  background: var(--rp-white);
}

.faqArchive__cats {
  margin-bottom: 38px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rp-ink);
}

.faqList {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rp-ink);
}

.faqItem {
  border-bottom: 1px solid var(--rp-line);
}

.faqItem a {
  position: relative;
  display: grid;
  padding: 26px 54px 26px 52px;
  grid-template-columns: minmax(250px, .8fr) minmax(0, 1.2fr);
  gap: 38px;
  border: 0;
  border-radius: 0;
  color: var(--rp-text);
  background: transparent;
  text-decoration: none;
}

.faqItem a::before {
  position: absolute;
  top: 25px;
  left: 12px;
  color: var(--rp-wine);
  font-family: var(--rp-serif);
  font-size: 16px;
  content: "Q";
}

.faqItem a::after {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 17px;
  height: 17px;
  background: var(--rp-wine);
  content: "";
  transform: translateY(-50%);
  -webkit-mask: var(--rp-mask-arrow) center / contain no-repeat;
  mask: var(--rp-mask-arrow) center / contain no-repeat;
}

.faqItem a:hover::after {
  background: var(--rp-white);
}

.faqItem a:hover {
  color: var(--rp-white);
  background: var(--rp-wine);
  box-shadow: none;
  transform: none;
}

.faqItem a:hover::before,
.faqItem a:hover::after,
.faqItem a:hover h2,
.faqItem a:hover p {
  color: var(--rp-white);
}

.faqItem h2,
.faqItem p {
  margin: 0;
}

.faqItem h2 {
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.65;
}

.faqItem p {
  color: var(--rp-muted);
  font-size: 12px;
}

.faqSingle__content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.faqSingle__question {
  position: relative;
  margin: 0;
  padding: 26px 30px 26px 62px;
  border-top: 1px solid var(--rp-ink);
  border-bottom: 1px solid var(--rp-line);
  color: var(--rp-ink);
  background: var(--rp-blush);
  font-family: var(--rp-serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.65;
}

.faqSingle__answer {
  display: grid;
  padding: 30px 30px 34px;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--rp-ink);
}

.faqSingle__label {
  margin: 0;
  color: var(--rp-wine);
  font-family: var(--rp-serif);
  font-size: 20px;
  font-weight: 600;
}

.faqSingle__body {
  color: var(--rp-text);
  font-size: 14px;
}

.faqSingle__related {
  max-width: 900px;
  margin: 38px auto 0;
  padding: 28px;
  border-radius: 0;
  background: var(--rp-sand);
}

.faqSingle__related h2 {
  margin: 0 0 16px;
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: 18px;
  font-weight: 600;
}

.faqSingle__related ul {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--rp-ink);
  border-left: 1px solid rgba(25, 24, 23, .18);
  list-style: none;
}

.faqSingle__related li {
  border-right: 1px solid rgba(25, 24, 23, .18);
  border-bottom: 1px solid rgba(25, 24, 23, .18);
}

.faqSingle__related a {
  display: flex;
  min-height: 52px;
  padding: 10px 14px;
  align-items: center;
  border: 0;
  border-radius: 0;
  color: var(--rp-ink);
  background: rgba(255, 255, 255, .5);
  font-size: 11px;
  text-decoration: none;
}

.faqSingle__nav,
.faqPagination {
  margin-top: 34px;
  text-align: center;
}

.faqSingle__nav a,
.faqPagination a,
.faqPagination .page-numbers {
  display: inline-flex;
  min-height: 42px;
  padding: 9px 16px;
  align-items: center;
  border: 1px solid var(--rp-ink);
  border-radius: 0;
  color: var(--rp-ink);
  background: transparent;
  font-size: 11px;
  text-decoration: none;
}

.faqPagination .current {
  color: var(--rp-white);
  border-color: var(--rp-wine);
  background: var(--rp-wine);
}

@media (max-width: 900px) {
  .caseArchive__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .caseSingle__layout {
    grid-template-columns: 1fr;
  }

  .caseSingle__sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .caseSingle__cta {
    margin-top: 0;
  }
}

@media (max-width: 760px) {

  .caseArchive__fv,
  .caseSingle__fv,
  .faqMv {
    padding: 54px 0 58px;
  }

  .caseArchive__fv .inner,
  .caseSingle__fv .inner,
  .faqMv .inner {
    padding-left: 20px;
  }

  .caseArchive__title,
  .caseSingle__title,
  .faqMv h1 {
    font-size: clamp(24px, 7vw, 31px);
  }

  .caseArchive__content,
  .caseSingle__main,
  .faqArchive__section,
  .faqSingle__section {
    padding: 62px 0 72px;
  }

  .caseArchive__grid,
  .caseSingle__sidebar,
  .faqSingle__related ul {
    grid-template-columns: 1fr;
  }

  .caseSingle__gallery {
    grid-template-columns: 1fr;
  }

  .caseSingle__nav {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .caseSingle__navItem--next {
    text-align: left;
  }

  .faqItem a {
    padding: 24px 40px 24px 42px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .faqSingle__question {
    padding: 24px 22px;
    font-size: 17px;
  }

  .faqSingle__answer {
    padding: 26px 22px 30px;
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="search"],
textarea,
select {
  max-width: 100%;
  padding: 14px 16px;
  border: 1px solid #bdb5ae;
  border-radius: 0;
  background: var(--rp-white);
}

input[type="submit"],
button[type="submit"] {
  min-height: 54px;
  padding: 13px 28px;
  border: 1px solid var(--rp-wine);
  border-radius: 0;
  color: var(--rp-white);
  background: var(--rp-wine);
  cursor: pointer;
}

/* Long-standing service, contact and policy templates */
.represent-renewal .websaite_contents {
  padding: 84px 0;
}

.represent-renewal .websaite_contents+.websaite_contents {
  border-top: 1px solid var(--rp-line);
}

.represent-renewal .websaite_contents .inner,
.represent-renewal .website_box01 .inner,
.represent-renewal .companybox03 {
  width: var(--rp-container);
  max-width: none;
  margin-inline: auto;
  padding: 0;
}

.represent-renewal .websaite_contents .inner h2,
.represent-renewal .companybox03>h2 {
  width: auto;
  margin: 0 0 36px;
  padding: 0 0 20px;
  border-bottom: 1px solid var(--rp-ink);
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: var(--rp-h2-wide);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: .02em;
  text-align: left;
}

.represent-renewal .companybox03>h2::before,
.represent-renewal .websaite_contents .inner h2::before,
.represent-renewal .websaite_contents .inner h2::after {
  display: none;
}

.represent-renewal .websaite_contents .inner h2 span {
  display: block;
  margin-top: 8px;
  color: var(--rp-wine);
  font-family: var(--rp-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
}

/* 英字ラベル + 和文見出し（span を持つ場合は和文を主見出しにする） */
.represent-renewal .websaite_contents .inner h2:has(span) {
  color: var(--rp-wine);
  font-family: var(--rp-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.6;
}

.represent-renewal .websaite_contents .inner h2:has(span) span {
  margin-top: 10px;
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: var(--rp-h2-wide);
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1.5;
}

.represent-renewal .websaite_contents .subtxt {
  max-width: 820px;
  margin: 0;
  color: var(--rp-muted);
  font-size: 16px;
  line-height: 2;
  text-align: left;
}

.represent-renewal .websaite_contents .bg_gr {
  margin-top: 56px;
  padding: 70px 0;
  background: var(--rp-paper);
}

.represent-renewal .websaite_contents .flex_box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
}

.represent-renewal .websaite_contents .flex_box.reverse {
  direction: rtl;
}

.represent-renewal .websaite_contents .flex_box.reverse>* {
  direction: ltr;
}

.represent-renewal .websaite_contents .left_box,
.represent-renewal .websaite_contents .right_box {
  width: auto;
}

.represent-renewal .websaite_contents .right_box img {
  display: block;
  width: 100%;
}

.represent-renewal .websaite_contents .sub_ttl {
  margin: 0 0 24px;
  padding: 0 0 16px;
  border-bottom: 1px solid var(--rp-ink);
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: clamp(21px, 2.1vw, 28px);
  font-weight: 600;
  line-height: 1.6;
}

.represent-renewal .websaite_contents .sub_ttl::after {
  display: none;
}

.represent-renewal .jimu_list01 {
  display: grid;
  width: var(--rp-container);
  max-width: none;
  margin: 54px auto 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  list-style: none;
}

.represent-renewal .jimu_list01 li {
  width: auto;
  margin: 0;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rp-line);
}

.represent-renewal .jimu_list01 figure {
  margin: 0 0 22px;
}

.represent-renewal .jimu_list01 img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.represent-renewal .jimu_list01 h3 {
  margin: 0 0 14px;
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: 20px;
  font-weight: 600;
}

.represent-renewal .jumu_check {
  display: grid;
  width: var(--rp-container);
  max-width: none;
  margin: 50px auto 0;
  padding: 0;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--rp-ink);
  border-left: 1px solid var(--rp-line);
  list-style: none;
}

.represent-renewal .jumu_check li {
  position: relative;
  width: auto;
  min-height: 105px;
  margin: 0;
  padding: 24px 28px 24px 50px;
  border-right: 1px solid var(--rp-line);
  border-bottom: 1px solid var(--rp-line);
}

.represent-renewal .jumu_check li::before {
  position: absolute;
  top: 28px;
  left: 22px;
  width: 18px;
  height: 18px;
  margin: 0;
  background-color: var(--rp-wine);
  background-image: none;
  content: "";
  -webkit-mask: var(--rp-mask-check) center / contain no-repeat;
  mask: var(--rp-mask-check) center / contain no-repeat;
}

.represent-renewal .websaite_contents .flow {
  display: grid;
  margin: 50px 0 0;
  grid-template-columns: 130px 1fr;
  /* border-top: 1px solid var(--rp-ink); */
}

.represent-renewal .websaite_contents .flow dt,
.represent-renewal .websaite_contents .flow dd {
  min-height: 150px;
  margin: 0;
  padding: 30px 24px;
  border-bottom: 1px solid var(--rp-line);
}

.represent-renewal .websaite_contents .flow dt {
  width: auto;
  color: var(--rp-wine);
  background: none;
  font-size: 11px;
  text-align: left;
}

.represent-renewal .websaite_contents .flow dt span {
  display: block;
  font-family: var(--rp-serif);
  font-size: 26px;
}

.represent-renewal .websaite_contents .flow dt::after,
.represent-renewal .websaite_contents .flow dd h3::after {
  display: none;
}

.represent-renewal .websaite_contents .flow dd {
  width: auto;
}

.represent-renewal .websaite_contents .flow dd h3 {
  margin: 0 0 12px;
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: 22px;
  font-weight: 600;
  position: initial;
}

.represent-renewal .container_accordion {
  margin: 42px 0 0;
}

.represent-renewal .accordion-item {
  border-bottom: 1px solid var(--rp-line);
}

.represent-renewal .accordion-item:first-child {
  /* border-top: 1px solid var(--rp-ink); */
}

.represent-renewal .accordion-item button {
  position: relative;
  padding: 24px 48px 24px 0;
  color: var(--rp-ink);
  background: transparent;
  font-family: var(--rp-serif);
  font-size: 17px;
}

/* .represent-renewal .accordion-item button::after {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 20px;
  height: 20px;
  background: var(--rp-wine);
  content: "";
  transform: translateY(-50%);
  -webkit-mask: var(--rp-mask-plus) center / contain no-repeat;
  mask: var(--rp-mask-plus) center / contain no-repeat;
} */

.represent-renewal .accordion-item button[aria-expanded="true"]::after {
  -webkit-mask-image: var(--rp-mask-minus);
  mask-image: var(--rp-mask-minus);
}

.represent-renewal .accordion-content p {
  padding: 0 20px 24px;
  color: var(--rp-muted);
}

.represent-renewal .companybox03 {
  margin-top: 24px;
  margin-bottom: 100px;
}

.represent-renewal .companybox03 table {
  width: 100%;
  border-collapse: collapse;
}

.represent-renewal .companybox03 table th,
.represent-renewal .companybox03 table td {
  padding: 20px;
  border: 1px solid var(--rp-line);
  background: var(--rp-white);
  text-align: left;
  vertical-align: top;
  font-size: 16px;
}

.represent-renewal .companybox03 table th {
  color: var(--rp-wine);
  background: var(--rp-paper);
}

.represent-renewal .companybox03 table th span {
  font-size: 12px;
  margin-left: 10px;
}

.represent-renewal .privacy dt {
  margin-top: 36px;
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: 20px;
  font-weight: 600;
}

.represent-renewal .privacy dd {
  margin: 12px 0 0;
}

/* Footer */
.renewal-contact-cta {
  padding: 92px 0;
  color: var(--rp-white);
  background: var(--rp-wine);
}

.renewal-contact-cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .75fr);
  gap: clamp(60px, 9vw, 140px);
  align-items: center;
}

.renewal-contact-cta .renewal-kicker {
  color: #ead4d7;
}

.renewal-contact-cta p:not(.renewal-kicker) {
  margin: 0;
  color: #fff;
}

.renewal-footer {
  padding: 78px 0 24px;
  color: #d8d2cd;
  background: var(--rp-ink);
}

.renewal-footer a {
  color: inherit;
  text-decoration: none;
}

.renewal-footer__top {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
  gap: clamp(70px, 10vw, 160px);
  padding-bottom: 70px;
}

.renewal-footer__brand img {
  display: block;
  width: 210px;
  max-height: 52px;
  margin-bottom: 30px;
}

.renewal-footer__brand>p {
  max-width: 410px;
  font-size: 13px;
}

.renewal-footer__tel {
  margin-top: 32px;
}

.renewal-footer__tel span {
  display: block;
  color: #9d9690;
  font-size: 10px;
}

.renewal-footer__tel a {
  color: var(--rp-white);
  font-family: var(--rp-serif);
  font-size: 25px;
}

.renewal-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.renewal-footer__nav>div>p {
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #4b4744;
  color: var(--rp-white);
  font-family: var(--rp-serif);
  font-size: 15px;
}

.renewal-footer__nav a {
  display: block;
  margin: 10px 0;
  color: #bfb9b4;
  font-size: 12px;
}

.renewal-footer__nav a:hover {
  color: var(--rp-white);
}

.renewal-footer__bottom {
  display: flex;
  min-height: 66px;
  padding-top: 20px;
  align-items: center;
  gap: 28px;
  border-top: 1px solid #3d3936;
  color: #8f8984;
  font-size: 11px;
}

.renewal-footer__bottom>p {
  margin: 0 auto 0 0;
}

.renewal-footer__social {
  display: flex;
  gap: 18px;
}

@media (max-width: 1180px) {
  .renewal-header__brand {
    flex-direction: column;
    gap: 5px;
  }

  .renewal-header__descriptor {
    border-left: none;
    padding-left: 0;
  }

  .renewal-header__nav ul {
    gap: 18px;
  }

  .renewal-header__nav a {
    font-size: 12px;
  }
}

@media (max-width: 1080px) {

  :root {
    --rp-container: min(100% - 48px, 980px);
  }

  .renewal-header__inner {
    width: calc(100% - 36px);
    min-height: 76px;
  }

  .renewal-header__wordmark {
    font-size: 19px;
  }

  .renewal-header__nav,
  .renewal-header__contact {
    display: none;
  }

  .renewal-menu-button {
    display: flex;
    margin-left: auto;
    padding: 8px 0 8px 16px;
    align-items: center;
    gap: 14px;
    border: 0;
    color: var(--rp-white);
    background: transparent;
    cursor: pointer;
  }

  .renewal-menu-button__label {
    font-size: 11px;
    font-weight: 700;
  }

  .renewal-menu-button__lines {
    display: block;
    position: relative;
    width: 28px;
    height: 18px;
  }

  .renewal-menu-button__lines i {
    position: absolute;
    right: 0;
    width: 28px;
    height: 1px;
    background: var(--rp-white);
    transition: transform .2s ease, top .2s ease;
  }

  .renewal-menu-button__lines i:first-child {
    top: 4px;
  }

  .renewal-menu-button__lines i:last-child {
    top: 13px;
  }

  .renewal-menu-button.is-open .renewal-menu-button__lines i:first-child {
    top: 9px;
    transform: rotate(45deg);
  }

  .renewal-menu-button.is-open .renewal-menu-button__lines i:last-child {
    top: 9px;
    transform: rotate(-45deg);
  }

  .renewal-mobile-menu:not([hidden]) {
    display: block;
    height: calc(100vh - 76px);
    padding: 32px 15px 60px;
    overflow-y: auto;
    border-top: 1px solid var(--rp-line);
    background: var(--rp-white);
    width: 85%;
  }

  .renewal-mobile-menu nav {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .renewal-mobile-menu nav>p {
    margin: 24px 0 10px;
    color: var(--rp-wine);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
  }

  .renewal-mobile-menu ul {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--rp-ink);
    list-style: none;
  }

  .renewal-mobile-menu li {
    border-bottom: 1px solid var(--rp-line);
  }

  .renewal-mobile-menu li a {
    display: block;
    padding: 14px 2px;
    color: var(--rp-ink);
    font-family: var(--rp-serif);
    text-decoration: none;
  }

  .renewal-mobile-menu__contact {
    display: flex;
    min-height: 58px;
    margin-top: 30px;
    padding: 14px 22px;
    align-items: center;
    justify-content: center;
    color: var(--rp-white);
    background: var(--rp-wine);
    font-weight: 700;
    text-decoration: none;
  }

  .home-hero__grid,
  .ai-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, .75fr);
    gap: 50px;
  }

  .home-hero__visual {
    padding-left: 34px;
  }

  .home-hero__visual>p {
    right: 0;
  }

  .renewal-service-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .industryReason__grid,
  .industryFlow__list,
  .industryScope__grid,
  .industryAreaLinksBlock__list,
  .industryList,
  .areaList,
  .areaInternalLinks__list {
    grid-template-columns: repeat(2, 1fr);
  }


}

@media (max-width: 760px) {

  .websaite_contents {
    margin-top: 20px;
  }

  :root {
    --rp-container: calc(100% - 36px);
  }

  body {
    font-size: 14px;
    line-height: 1.85;
  }

  .renewal-section {
    padding: 30px 0;
  }

  .renewal-split-heading,
  .renewal-section-heading,
  .home-subsidy__grid,
  .home-journal__grid,
  .home-company__grid,
  .renewal-contact-cta__grid,
  .renewal-footer__top,
  .ai-challenge-list,
  .ai-subsidy__content {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .renewal-section-heading {
    margin-bottom: 42px;
  }

  .renewal-split-heading h1,
  .renewal-split-heading h2,
  .renewal-section-heading h2,
  .home-company h2,
  .renewal-contact-cta h2,
  .home-subsidy h2,
  .home-journal h2 {
    font-size: clamp(20px, 5.8vw, 26px);
    line-height: 1.6;
  }

  .renewal-split-heading h1 {
    font-size: clamp(23px, 6.8vw, 31px);
  }

  .renewal-page-heading h2 {
    font-size: clamp(21px, 6vw, 27px);
  }

  .renewal-kicker {
    margin-bottom: 16px;
  }

  .renewal-page-heading {
    padding: 48px 0 38px;
  }

  .renewal-page-heading h2 {
    font-size: 26px;
  }

  .renewal-breadcrumb {
    min-height: 50px;
    padding-block: 13px;
  }

  .home-hero {
    padding: 58px 0 70px;
  }

  .home-hero__grid,
  .ai-hero__grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .home-hero h1,
  .ai-hero h1 {
    font-size: clamp(26px, 7.7vw, 34px);
    line-height: 1.42;
  }

  .home-hero__visual {
    padding: 0 0 64px;
  }

  .home-hero__visual img {
    aspect-ratio: 4 / 3;
  }

  .home-hero__visual>p {
    right: 0;
    width: min(340px, 96%);
    padding: 22px 24px;
  }

  .home-principles ul,
  .home-domain-grid,
  .ai-subsidy__summary {
    grid-template-columns: 1fr;
  }

  .home-principles li,
  .home-principles li:last-child,
  .home-domain-grid article,
  .home-domain-grid article:last-child,
  .ai-subsidy__summary article,
  .ai-subsidy__summary article:last-child {
    min-height: 0;
    border-right: 1px solid var(--rp-line);
  }

  .home-domain-grid {
    margin-top: 54px;
  }

  .home-domain-grid article {
    padding: 30px 26px;
  }

  .renewal-service-list,
  .ai-service-list,
  .home-content-grid,
  .ai-insight-grid,
  .renewal-business-method ol,
  .renewal-company-values ol {
    grid-template-columns: 1fr;
  }

  .renewal-service-card a {
    min-height: 275px;
    padding: 30px 26px;
  }

  .home-journal__list a {
    min-height: 100px;
    grid-template-columns: 1fr 24px;
    gap: 8px 18px;
  }

  .home-journal__list time {
    grid-column: 1 / 3;
  }

  .renewal-company-image {
    width: 100%;
  }

  .renewal-company-image img {
    min-height: 320px;
  }

  .renewal-company-profile th,
  .renewal-company-profile td {
    display: block;
    width: 100%;
  }

  .renewal-company-profile th {
    padding-bottom: 4px;
    border-bottom: 0;
  }

  .renewal-company-profile td {
    padding-top: 4px;
  }

  .ai-hero {
    padding-top: 48px;
  }

  .ai-hero__statement {
    grid-template-columns: 1fr;
    margin-top: 54px;
  }

  .ai-hero__statement>p {
    padding: 28px;
    border-right: 0;
    border-bottom: 1px solid #484441;
  }

  .ai-hero__statement ol {
    grid-template-columns: repeat(2, 1fr);
  }

  .ai-hero__statement li {
    min-height: 120px;
    border-bottom: 1px solid #484441;
  }

  .ai-local-nav {
    position: static;
    overflow-x: auto;
  }

  .ai-local-nav .renewal-container {
    width: max-content;
    min-width: 100%;
    padding-inline: 18px;
    justify-content: flex-start;
  }

  .ai-challenge-list {
    margin-top: 56px;
  }

  .ai-challenge-list ul,
  .ai-service-list ul {
    grid-template-columns: 1fr;
  }

  .ai-service-list article {
    min-height: 0;
    padding: 32px 26px;
  }

  .ai-deliverables dl>div,
  .ai-safety__list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .ai-process li {
    grid-template-columns: 58px 1fr;
    gap: 20px;
  }

  .ai-subsidy__summary {
    margin-bottom: 50px;
  }

  .ai-subsidy__summary article {
    min-height: 0;
    padding: 28px 24px;
  }

  .ai-subsidy__caution {
    padding: 28px 24px;
  }

  .ai-faq-list summary {
    padding-right: 8px;
    font-size: 16px;
  }

  .single_box>.inner {
    width: calc(100% - 36px);
  }

  .blog_list {
    grid-template-columns: 1fr;
  }

  .industryHero,
  .industryProblem,
  .industryScope,
  .industryReason,
  .industryCase,
  .industryFlow,
  .industryFaq,
  .industryCta,
  .industryAreaLinksBlock {
    padding: 66px 0;
  }

  .industryHero>.inner,
  .industryCta>.inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .industryHero::after {
    width: 18%;
  }

  .industryHero__body {
    padding-left: 20px;
  }

  .industryHero__title {
    font-size: clamp(25px, 7.2vw, 32px);
  }

  .industryHero__card {
    padding: 32px 28px;
  }

  .industrySectionHead {
    grid-template-columns: 1fr;
    margin-bottom: 34px;
  }

  .industrySectionHead__sub {
    padding-top: 0;
  }

  .industryProblem__grid,
  .industryReason__grid,
  .industryScope__grid,
  .industryCase__grid,
  .industryFlow__list,
  .industryAreaLinksBlock__list,
  .serviceList,
  .troubleList,
  .caseList,
  .industryList,
  .areaList,
  .areaInternalLinks__list {
    grid-template-columns: 1fr;
  }

  .industryScope__lead,
  .industryScope__grid,
  .industryScope__related,
  .industryFaq__list,
  .industryAreaLinksBlock__lead,
  .industryAreaLinksBlock__list {
    margin-left: 0;
  }

  .industryScope__grid article {
    min-height: 0;
  }

  .industryFaq__item,
  .areaFaq__item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .industryProblem__item,
  .industryReason__item,
  .industryFlow__item,
  .serviceItem,
  .troubleItem {
    min-height: 0;
    padding: 28px 24px;
  }

  .industryReason__num,
  .industryFlow__item>span {
    margin-bottom: 28px;
  }

  .industryFaq__list,
  .industryAreaLinksBlock__lead,
  .industryAreaLinksBlock__list {
    margin-left: 0;
  }

  .industryFaq__item,
  .areaFaq__item {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .industryCta__sub,
  .industryCta h2,
  .industryCta__text,
  .industryCta .industryBtn {
    grid-column: 1;
    grid-row: auto;
  }

  .industryCta__sub {
    margin-bottom: -20px;
  }

  .lowerPageHead {
    padding: 58px 0 62px;
  }

  .lowerPageHead .inner {
    padding-left: 20px;
  }

  .lowerPageHead .inner::after {
    display: none;
  }

  .lowerPageHead h1 {
    font-size: clamp(24px, 7vw, 31px);
  }

  :where(.areaWebDesign, .osakaWebDesign, .kitaWebDesign, .chuoWebDesign, .kyobashiWebDesign, .fukushimaWebDesign) .pageSection,
  .areaInternalLinks {
    padding: 66px 0;
  }

  .pointList li {
    padding-left: 58px;
  }

  .represent-renewal .websaite_contents {
    padding: 0px 0;
  }

  /* PC用に入れられた改行はスマホでは無効にして行末を揃える */
  .represent-renewal .websaite_contents .subtxt br,
  .represent-renewal .websaite_contents p br,
  .represent-renewal .column03 br,
  .represent-renewal .website_box01 br {
    display: none;
  }

  .represent-renewal .websaite_contents .flex_box,
  .represent-renewal .jimu_list01,
  .represent-renewal .jumu_check {
    grid-template-columns: 1fr;
  }

  .represent-renewal .websaite_contents .flex_box.reverse {
    direction: ltr;
  }

  .represent-renewal .websaite_contents .flow {
    grid-template-rows: 78px 1fr;
    grid-template-columns: none;
    /* 必要に応じて列をリセット */
  }

  .represent-renewal .websaite_contents .flow dt,
  .represent-renewal .websaite_contents .flow dd {
    min-height: 0;
    padding: 24px 14px;
  }

  .represent-renewal .companybox03 table th,
  .represent-renewal .companybox03 table td {
    display: block;
    width: 100%;
  }

  .renewal-contact-cta {
    padding: 72px 0;
  }

  .renewal-footer {
    padding-top: 62px;
  }

  .renewal-footer__nav {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .renewal-footer__bottom {
    flex-wrap: wrap;
  }

  .renewal-footer__bottom>p {
    flex: 0 0 100%;
  }
}

/* ------------------------------------------------------------------
 * アイコンを入れた各コンポーネントの調整
 * ---------------------------------------------------------------- */

/* サービスカード */
.renewal-service-card .rp-icon--framed {
  margin-bottom: 24px;
  border-color: rgba(141, 20, 32, .28);
}

.renewal-service-card--primary .rp-icon--framed {
  color: var(--rp-white);
  border-color: rgba(255, 255, 255, .5);
}

.renewal-service-card a:hover .rp-icon--framed {
  border-color: var(--rp-wine);
}

.renewal-service-card--primary a:hover .rp-icon--framed {
  border-color: var(--rp-white);
}

/* 支援方針 01-03 */
.home-principles strong {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.home-principles .rp-icon {
  width: 22px;
  height: 22px;
}

/* 分野カード */
.home-domain-grid .rp-icon--lg {
  margin-bottom: 26px;
}

/* フッターCTAのサブコピー */
.renewal-contact-cta__sub {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 26px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .32);
  color: var(--rp-white);
  font-family: var(--rp-serif);
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 600;
  letter-spacing: .06em;
}

.renewal-contact-cta__sub .rp-icon {
  width: 22px;
  height: 22px;
  color: var(--rp-white);
}

/* ヘッダー・フッターの連絡先 */
.renewal-header__contact .rp-icon {
  width: 15px;
  height: 15px;
  margin-right: 8px;
}

.renewal-footer__tel a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.renewal-footer__tel .rp-icon {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, .72);
}

.renewal-text-link .rp-icon,
.renewal-arrow-link .rp-icon {
  margin-right: 0;
}

/* AIページ */
.ai-local-nav a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.ai-local-nav .rp-icon {
  color: var(--rp-wine);
}

.ai-service-list article .rp-icon--framed {
  margin-bottom: 22px;
  border-color: rgba(141, 20, 32, .28);
}

.ai-deliverables dt {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ai-safety__list strong {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 支援方針・行動指針の番号リスト */
.renewal-business-method ol h3,
.renewal-company-values ol h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ------------------------------------------------------------------
 * 旧テンプレート由来のブロックを共通デザインへ合わせる追加調整
 * （サービス下層ページのBLOG一覧、関連リンク、サービス一覧など）
 * ---------------------------------------------------------------- */

/* 英字ラベル + 和文見出しの共通パターン */
.represent-renewal .column02>h2,
.represent-renewal .column03>h2,
.represent-renewal .website_box01 .inner>h2 {
  width: auto;
  margin: 0 0 42px;
  padding: 0;
  color: var(--rp-wine);
  background: none;
  font-family: var(--rp-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.6;
  text-align: left;
}

.represent-renewal .column02>h2::before,
.represent-renewal .column02>h2::after,
.represent-renewal .column03>h2::before,
.represent-renewal .column03>h2::after,
.represent-renewal .website_box01 .inner>h2::before,
.represent-renewal .website_box01 .inner>h2::after {
  display: none;
}

.represent-renewal .column02>h2 span,
.represent-renewal .column03>h2 span,
.represent-renewal .website_box01 .inner>h2 span {
  display: block;
  margin-top: 10px;
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: var(--rp-h2-wide);
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1.5;
}

/* サービス下層ページのブログ一覧 */
.represent-renewal .column03 {
  width: var(--rp-container);
  max-width: none;
  margin: 0 auto;
  padding: 96px 0 0;
}

.represent-renewal .column03>ul {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  list-style: none;
}

.represent-renewal .column03>ul li {
  width: auto;
  margin: 0;
  padding: 0;
}

.represent-renewal .column03>ul li a {
  display: block;
  text-decoration: none;
}

.represent-renewal .column03>ul li figure {
  position: relative;
  margin: 0 0 18px;
  overflow: hidden;
  border: 0;
  background: var(--rp-paper);
}

.represent-renewal .column03>ul li figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.represent-renewal .column03>ul li figure span {
  bottom: 0;
  right: 0;
  padding: 6px 12px;
  background: var(--rp-wine);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
}

.represent-renewal .column03>ul li .title {
  display: -webkit-box;
  margin: 0 0 10px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.65;
}

.represent-renewal .column03>ul li .txt {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: var(--rp-muted);
  font-size: 13px;
  line-height: 1.9;
}

.represent-renewal .column03>ul li a:hover .title {
  color: var(--rp-wine);
}

.represent-renewal .column03 .btn {
  margin: 48px 0 50px;
  text-align: center;
}

.represent-renewal .column03 .btn a {
  display: inline-flex;
  min-height: 54px;
  padding: 13px 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rp-wine);
  color: var(--rp-wine);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease;
}

.represent-renewal .column03 .btn a:hover {
  color: var(--rp-white);
  background: var(--rp-wine);
}

.represent-renewal .column03 .btn a::before,
.represent-renewal .column03 .btn a::after {
  display: none;
}

/* 旧サービス一覧（印刷物など） */
.represent-renewal .website_box01 {
  padding: 96px 0;
  background: var(--rp-paper);
}

.represent-renewal .website_box01 .inner>ul {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--rp-ink);
  border-left: 1px solid var(--rp-line);
  list-style: none;
}

.represent-renewal .website_box01 .inner>ul li {
  position: relative;
  width: auto;
  min-height: 250px;
  margin: 0;
  padding: 32px 30px;
  border-right: 1px solid var(--rp-line);
  border-bottom: 1px solid var(--rp-line);
  background: var(--rp-white);
  transition: background-color .2s ease;
}

.represent-renewal .website_box01 .inner>ul li:hover {
  background: var(--rp-blush);
}

.represent-renewal .website_box01 .inner>ul li>a {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.represent-renewal .website_box01 .inner>ul li h3 {
  margin: 0 0 16px;
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: clamp(19px, 1.6vw, 23px);
  font-weight: 600;
  line-height: 1.55;
}

.represent-renewal .website_box01 .inner>ul li h3 span {
  display: block;
  margin-top: 10px;
  color: var(--rp-wine);
  font-family: var(--rp-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}

.represent-renewal .website_box01 .inner>ul li p {
  margin: 0;
  color: var(--rp-muted);
  font-size: 13px;
  line-height: 1.95;
}

/* 下部の関連リンク（業種別・地域別） */
.footerLinks {
  padding: 74px 0 82px;
  border-top: 1px solid var(--rp-line);
  background: var(--rp-paper);
}

.footerLinks__inner {
  display: grid;
  width: var(--rp-container);
  margin-inline: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 70px);
}

.footerLinks__title {
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rp-ink);
  color: var(--rp-ink);
  font-family: var(--rp-serif);
  font-size: 17px;
  font-weight: 600;
}

.footerLinks__block ul {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 10px 22px;
  list-style: none;
}

.footerLinks__block li {
  margin: 0;
}

.footerLinks__block a {
  display: inline-block;
  padding: 4px 0;
  color: var(--rp-text);
  font-size: 13px;
  text-decoration: none;
}

.footerLinks__block a:hover {
  color: var(--rp-wine);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* お問い合わせフォーム */
.represent-renewal .companybox03 input[type="text"],
.represent-renewal .companybox03 input[type="email"],
.represent-renewal .companybox03 input[type="tel"],
.represent-renewal .companybox03 input[type="url"],
.represent-renewal .companybox03 input[type="number"],
.represent-renewal .companybox03 input[type="date"],
.represent-renewal .companybox03 select,
.represent-renewal .companybox03 textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--rp-line);
  border-radius: 0;
  color: var(--rp-text);
  background: var(--rp-white);
  font-family: inherit;
  font-size: 15px;
  line-height: 1.7;
}

.represent-renewal .companybox03 input:focus,
.represent-renewal .companybox03 select:focus,
.represent-renewal .companybox03 textarea:focus {
  border-color: var(--rp-wine);
  outline: 0;
}

.represent-renewal .companybox03 textarea {
  min-height: 220px;
  resize: vertical;
}

.represent-renewal .companybox03 .sbmit {
  margin-top: 46px;
  text-align: center;
}

.represent-renewal .companybox03 .wpcf7-submit {
  display: inline-block;
  width: auto;
  min-width: 280px;
  min-height: 60px;
  margin: 0;
  padding: 16px 40px;
  border: 1px solid var(--rp-wine);
  border-radius: 0;
  color: var(--rp-white);
  background: var(--rp-wine);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .1em;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease;
}

.represent-renewal .companybox03 .wpcf7-submit:hover {
  color: var(--rp-wine);
  background: var(--rp-white);
}

.represent-renewal .companybox03 .wpcf7-not-valid-tip {
  margin-top: 8px;
  color: var(--rp-wine);
  font-size: 12px;
}

.represent-renewal .companybox03 .wpcf7-response-output {
  margin: 32px 0 0;
  padding: 16px 18px;
  border: 1px solid var(--rp-line);
  font-size: 13px;
}

/* 単体で置かれる図版 */
.renewal-media {
  margin: 0 0 56px;
  overflow: hidden;
  background: var(--rp-paper);
}

.renewal-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}


.fee_box_service {
  text-align: center;
  font-size: 9rem;
}

@media (max-width: 1080px) {
  .represent-renewal .column03>ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .represent-renewal .website_box01 .inner>ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .renewal-menu-open .renewal-menu-button.is-open {
    position: absolute;
    top: 30px;
  }

  .renewal-menu-open .renewal-mobile-menu__contact {
    flex-direction: column;
    padding: 5px;
    font-size: 11px;
  }
}

@media (max-width: 760px) {
  .represent-renewal .column03 {
    padding-top: 72px;
  }

  .represent-renewal .column03>ul {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .represent-renewal .website_box01 {
    padding: 72px 0;
  }

  .represent-renewal .website_box01 .inner>ul {
    grid-template-columns: 1fr;
  }

  .represent-renewal .website_box01 .inner>ul li {
    min-height: 0;
    padding: 28px 24px;
  }

  .footerLinks {
    padding: 58px 0 64px;
  }

  .footerLinks__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .renewal-media {
    margin-bottom: 40px;
  }

  .renewal-media img {
    aspect-ratio: 4 / 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}


@media (max-width: 1080px) {
  .fee_box_service {
    font-size: 3rem;
  }
}