@charset "UTF-8";
/* ===== ベース ===== */
html {
  font-size: 14px;
}

body {
  background: #F7F7F7;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
}

ul {
  list-style: none;
}

/* ===== 共通レイアウト ===== */
.kenzo-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 208px;
  padding-top: 50px;
}

/* ===== ボタン ===== */
.kenzo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.2s;
  padding: 14px 24px;
}

.kenzo-btn:hover {
  opacity: 0.85;
}

.kenzo-btn--primary {
  background: linear-gradient(90deg, #F58331 0%, #F79849 100%);
  color: #fff;
  border: none;
  gap: 12px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
  width: 222px;
  height: 56px;
  justify-content: center;
  padding: 0 24px;
}

.kenzo-btn--outline {
  background: #fff;
  color: #343434;
  border: 1px solid #E8E8E8;
  gap: 12px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.0625em;
  line-height: 1.75;
  width: 222px;
  height: 56px;
  justify-content: center;
  padding: 0 24px;
}

.kenzo-btn--download {
  background: #fff;
  color: #343434;
  border: 1px solid #D9D9D9;
  padding: 12px 20px;
}

.kenzo-btn--hero-contact {
  background: linear-gradient(129deg, #FCBC00 16%, #FF7E26 100%);
  color: #fff;
  border: none;
  height: 56px;
  padding: 0 24px;
  gap: 12px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.0625em;
}

.kenzo-btn--hero-outline {
  background: #fff;
  color: #343434;
  border: 1px solid #E8E8E8;
  height: 56px;
  padding: 0 24px;
  gap: 12px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.0625em;
}

/* ===== 共通セクション見出し ===== */
.kenzo-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.kenzo-section-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.kenzo-section-overview {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.kenzo-section-overview-img {
  width: 100%;
  max-width: 587px;
  height: auto;
  object-fit: contain;
}

.kenzo-section-lead {
  font-size: 16px;
  line-height: 1.9;
  color: #343434;
}

/* ===== 見出し（アイコン付き） ===== */
.kenzo-heading {
  margin-bottom: 40px;
}

.kenzo-heading-text {
  font-size: 32px;
  font-weight: 700;
  line-height: 0.875;
  letter-spacing: 0.04em;
  font-family: "Noto Sans JP", sans-serif;
}

.kenzo-h2-deco {
  position: relative;
  padding-left: 20px;
}

.kenzo-h2-deco::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 9px;
  height: 9px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #EE7F37;
}

/* ===== ヘッダー ===== */
.kenzo-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: none;
}

.kenzo-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 208px;
  box-sizing: border-box;
}

.kenzo-logo {
  flex-shrink: 0;
}

.kenzo-nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}

.kenzo-nav-link {
  padding: 4px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #343434;
  transition: color 0.2s;
}

.kenzo-nav-link:hover {
  color: #F58031;
}

.kenzo-header-cta {
  display: flex;
  align-items: center;
  gap: 26px;
}

.kenzo-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.kenzo-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #343434;
  border-radius: 2px;
  transition: 0.2s;
}

/* ===== SP メニュー ===== */
.kenzo-sp-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: #fff;
  padding: 80px 20px 40px;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}

.kenzo-sp-menu.is-open {
  display: flex;
}

.kenzo-sp-menu-link {
  display: block;
  padding: 18px 0;
  font-size: 1rem;
  font-weight: 700;
  border-bottom: 1px solid #E7E7E7;
  color: #343434;
}

.kenzo-sp-menu-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.kenzo-sp-menu-btns .kenzo-btn {
  justify-content: center;
}

/* ===== ヒーロー ===== */
.kenzo-hero {
  position: relative;
  overflow: hidden;
  background: #F7F7F7;
  min-height: 800px;
  margin-top: 0;
}

.kenzo-hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/kenzo/background.svg") center/cover no-repeat;
  pointer-events: none;
}

.kenzo-hero-circle {
  position: absolute;
  width: 468px;
  height: 468px;
  border-radius: 50%;
  background: #FFEABB;
  right: 380px;
  top: 429px;
  pointer-events: none;
}

.kenzo-hero-inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  max-width: 1440px;
  margin: 0 auto;
  padding: 225px 208px 0;
  min-height: 800px;
  gap: 40px;
  box-sizing: border-box;
}

.kenzo-hero-content {
  flex: 0 0 480px;
  max-width: 480px;
  min-width: 0;
  padding-left: 0;
  box-sizing: border-box;
}

.kenzo-hero-tag {
  display: inline-block;
  font-size: 1.286rem;
  font-weight: 700;
  color: #343434;
  line-height: 1.11;
  margin-bottom: 24px;
}

.kenzo-hero-tag-deco {
  display: block;
  margin-top: 5px;
}

.kenzo-hero-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #111827;
  margin-bottom: 24px;
  white-space: normal;
}

.kenzo-hero-title-main {
  font-size: 48px;
}

.kenzo-hero-title-accent {
  color: #F58031;
}

.kenzo-hero-title-main-small{
  font-size: 24px;
}

.kenzo-hero-text {
  font-size: 14px;
  line-height: 1.75;
  color: #343434;
  margin-bottom: 40px;
}

.kenzo-hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.kenzo-hero-img {
  flex: 0 1 587px;
  min-width: 0;
  width: 587px;
  display: flex;
  justify-content: flex-end;
  box-sizing: border-box;
}

.kenzo-hero-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ===== 課題セクション ===== */
.kenzo-problems {
  position: relative;
  padding: 80px 0;
}

.kenzo-problems-bg {
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: 0;
}

.kenzo-problems .kenzo-inner {
  position: relative;
  z-index: 1;
}

.kenzo-problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1024px;
  margin: 0 auto;
  padding-top: 28px;
}

.kenzo-problem-card {
  background: url("../images/kenzo/problem-background.svg") top center/100% auto no-repeat;
  position: relative;
  overflow: visible;
  padding-top: 35%;
  transition: transform 0.25s ease;
  background-size: cover;
}

.kenzo-problem-card:hover {
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .kenzo-problem-card {
    transition: none;
  }
  .kenzo-problem-card:hover {
    transform: none;
  }
}
.kenzo-problem-card-badge {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 43.125%;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  line-height: 0;
}

.kenzo-problem-card-badge img {
  display: block;
  width: 46px;
  height: 70px;
}

.kenzo-problem-card-media {
  padding: 0 7.5%;
  position: relative;
  top: -35px;
}

.kenzo-problem-card-img {
  display: block;
  width: 100%;
  height: 150px;
  border-radius: 0;
  background: #E9EDF3;
  object-fit: cover;
}

.kenzo-problem-card-body {
  padding: 12px 7.5% 0;
  position: relative;
  top: -30px;
}

.kenzo-problem-card-title {
  font-size: 1.286rem;
  font-weight: 500;
  line-height: 1.56;
  margin-bottom: 8px;
  color: #343434;
}

.kenzo-problem-card-text {
  font-size: 1rem;
  line-height: 1.71;
  color: #343434;
}

/* ===== 解決セクション ===== */
.kenzo-solution {
  background: #F7F7F7;
  padding: 148px 0 0;
  position: relative;
  overflow: hidden;
}

.kenzo-solution::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 525px;
  height: 124px;
  background: url("../images/kenzo/white-triangle.svg") center/contain no-repeat;
}

.kenzo-answer {
  background: #F7F7F7;
  position: relative;
  overflow: hidden;
  padding-top: 46px;
}

/* ハブ */
.kenzo-hub-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 120px 0;
  position: relative;
  z-index: 1;
}

.kenzo-hub-speech {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 0 6px rgba(174, 172, 172, 0.3);
  padding: 18px 63px;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%) translateY(20px);
  margin: 0;
  width: min(564px, 100%);
  max-width: 564px;
  min-width: 0;
  z-index: 3;
}

.kenzo-hub-speech::after {
  content: "";
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 24px solid transparent;
  border-right: 24px solid transparent;
  border-top: 36px solid #fff;
  filter: drop-shadow(0 3px 2px rgba(174, 172, 172, 0.15));
}

.kenzo-hub-speech-main {
  margin: 0 0 11px;
  font-size: 21px;
  font-weight: 500;
  line-height: 29px;
  color: #333;
}

.kenzo-hub-speech-accent {
  position: relative;
  display: inline-block;
  font-size: 24px;
  background: linear-gradient(180deg, #FEE394 0%, #F58031 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.kenzo-hub-speech-sub {
  margin: 0;
  font-size: 21px;
  font-weight: 500;
  line-height: 29px;
  color: #333;
}

.kenzo-hub-body {
  display: flex;
  align-items: flex-start;
  gap: clamp(16px, 2.38vw, 32px);
  position: relative;
  z-index: 1;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 1200px) {
  .kenzo-hub-body {
    padding-bottom: 40px;
  }
}
.kenzo-hub-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  z-index: 5;
  top: clamp(0px, 4.46vw - 34.28px, 30px);
}

.kenzo-hub-col--right {
  align-items: center;
  left: clamp(-35px, -5.21vw + 40px, 0px);
  margin-top:-20px;
}

.kenzo-hub-col--left {
  left: clamp(0px, 19.34vw - 148.57px, 130px);
}

.kenzo-hub-col--left .kenzo-hub-col-title {
  text-align: left;
  width: 100%;
  margin-bottom: -8px;
}

.kenzo-hub-person {
  width: 13.26vw;
  max-width: 191px;
  min-width: 120px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #E8EEF3;
  overflow: hidden;
  flex-shrink: 0;
}

.kenzo-hub-person img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kenzo-hub-line {
  position: absolute;
  top: 95px;
  width: 99px;
  height: 1px;
  pointer-events: none;
  z-index: 1;
}

.kenzo-hub-line--left {
  right: -71px;
}

.kenzo-hub-line--right {
  left: -71px;
}

.kenzo-hub-sp-line {
  display: none;
}

.kenzo-hub-col-title {
  margin: 0;
  font-size: 1.286rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #343434;
  text-align: center;
}

.kenzo-hub-col-list {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #343434;
  text-align: left;
  margin: 0;
  padding: 0;
  max-width: 380px;
}

.kenzo-hub-col--left .kenzo-hub-col-list {
  width: 100%;
}

.kenzo-hub-col-list li::before {
  content: "・";
}

.kenzo-hub-center {
  flex: 0 1 468px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin-top: 0;
}

.kenzo-hub-center-img {
  width: 100%;
  max-width: 468px;
  height: auto;
  display: block;
}

/* 解決カード */
.kenzo-solution-header {
  text-align: center;
  margin-bottom: 80px;
  padding-top: 0;
}

.kenzo-solution-title {
  font-size: 2.57rem;
  font-weight: 700;
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.kenzo-solution-title-main {
  position: relative;
  color: #343434;
  white-space: nowrap;
}

.kenzo-solution-title-main::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  height: 3px;
  background: #FEE394;
  border-radius: 2px;
}

.kenzo-solution-title-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 8px;
}

.kenzo-solution-title-label {
  font-size: 0.71rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #343434;
  margin-bottom: 2px;
}

.kenzo-solution-title-logo img {
  width: 212px;
  height: auto;
  display: block;
}

.kenzo-solution-title-sub {
  position: relative;
  color: #343434;
  white-space: nowrap;
}

.kenzo-solution-title-sub::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  height: 3px;
  background: #FEE394;
  border-radius: 2px;
}

.kenzo-solution-cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.kenzo-solution-card {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.kenzo-solution-card--reverse {
  flex-direction: row-reverse;
}

.kenzo-solution-card-img {
  flex-shrink: 0;
  width: 442px;
  height: 263px;
  border-radius: 16px;
}

.kenzo-solution-card-content {
  flex: 1;
  min-width: 0;
  padding-top: 8px;
}

.kenzo-solution-card-badge {
  display: inline-block;
  background: linear-gradient(129deg, #FEE394 16%, #F58031 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.kenzo-solution-card-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 34px;
  color: #000;
  margin: 0 0 12px;
}

.kenzo-solution-card-desc p {
  font-size: 16px;
  line-height: 1.75;
  color: #333;
}

/* ===== 機能セクション ===== */
.kenzo-features {
  position: relative;
  background: #F7F7F7;
  padding: 80px 0;
}

.kenzo-features-bg {
  height: 0;
}

.kenzo-features .kenzo-inner {
  max-width: 1024px;
  background: #fff;
  border-radius: 16px;
  padding: 56px 48px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.kenzo-feature-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.kenzo-feature-card {
  grid-column: span 2;
  width: auto;
  max-width: 100%;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.kenzo-feature-card-thumb {
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  aspect-ratio: 310/154;
}

.kenzo-feature-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kenzo-feature-card-body {
  padding: 18px 17px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.kenzo-feature-card-title {
  font-size: 1.143rem;
  font-weight: 500;
  color: #343434;
  margin-bottom: 8px;
  line-height: 2.25;
}

.kenzo-feature-card-text {
  font-size: 1rem;
  line-height: 1.714;
  color: #343434;
  flex: 1;
  margin-bottom: 18px;
}

.kenzo-feature-card-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.143rem;
  font-weight: 500;
  color: #000;
  border: 1px solid #E5E7EB;
  border-radius: 4px;
  padding: 14px 24px;
  transition: background 0.2s;
}

.kenzo-feature-card-btn:hover {
  background: #FFF8F0;
}

.kenzo-feature-card-btn svg {
  flex-shrink: 0;
}

.kenzo-feature-card:nth-child(4) {
  grid-column: 2/span 2;
}

.kenzo-feature-card:nth-child(5) {
  grid-column: 4/span 2;
}

/* ===== サービスリンクセクション ===== */
.kenzo-services {
  background: #F7F7F7;
  padding: 0 0 108px;
}

.kenzo-services .kenzo-inner {
  max-width: 1024px;
  background: #fff;
  border-radius: 16px;
  padding: 56px 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.kenzo-service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 29px;
}

.kenzo-service-card {
  width: calc((100% - 58px) / 3);
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}

.kenzo-service-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.kenzo-service-card-img {
  display: block;
  width: 100%;
  aspect-ratio: 300/157;
  background: #eee center/cover no-repeat;
}

.kenzo-service-card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 10px 8px;
  border-bottom: 1px solid #d9d9d9;
}

.kenzo-service-card-title {
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  line-height: 2em;
}

.kenzo-service-card-arrow {
  flex-shrink: 0;
}

.kenzo-service-card-arrow img {
  display: block;
  vertical-align: middle;
}

/* ===== 比較表（ケーススタディ） ===== */
.kenzo-comparison {
  background: linear-gradient(129.36deg, #FEE394 15.99%, #FFD2B4 95.74%);
  padding: 40px 0 80px;
}

.kenzo-case-list {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.kenzo-case-card {
  background: #fff;
  border: 1px solid #E4E4E4;
  border-radius: 0.5rem;
  overflow: hidden;
}

.kenzo-case-title {
  margin: 0;
  padding: 1.125rem 1.5rem 1.0625rem;
  border-bottom: 1px solid #CFCFCF;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #282727;
}

.kenzo-case-body {
  padding: 1.375rem 1.5rem 1.5rem;
}

.kenzo-case-block + .kenzo-case-block {
  margin-top: 1.125rem;
}

.kenzo-case-label {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 2rem;
  padding: 0.5rem 1.125rem;
  gap: 0.5rem;
  border-radius: 0.25rem;
  box-sizing: border-box;
  background: #FFF4D8;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
  color: #666;
}

.kenzo-case-label--accent {
  background: #F58031;
  color: #fff;
}

.kenzo-case-text {
  margin: 0.625rem 0 0;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #282727;
}

.kenzo-case-meta {
  margin: 1.5rem 0 0;
}

.kenzo-case-meta-row {
  display: grid;
  grid-template-columns: 9.5rem 1fr;
  gap: 0.875rem;
  align-items: start;
}

.kenzo-case-meta-row + .kenzo-case-meta-row {
  margin-top: 0.625rem;
}

.kenzo-case-meta dt,
.kenzo-case-meta dd {
  margin: 0;
  padding: 0.625rem 0.75rem;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #282727;
}

.kenzo-case-meta dt {
  background: #F7F7F7;
  font-weight: 700;
  text-align: center;
  align-self: start;
}

.kenzo-case-meta dd {
  font-weight: 500;
}

.kenzo-case-meta dd.kenzo-case-meta-dd--fee {
  padding: 0 0.75rem 0.625rem;
  margin: -3px;
}

/* ===== 他社比較テーブル ===== */
.kenzo-diff {
  background: #fff;
  padding: 80px 0;
}

.kenzo-diff-table-wrap {
  overflow-x: auto;
}

.kenzo-diff-table {
  min-width: 1024px;
}

.kenzo-diff-row {
  display: grid;
  grid-template-columns: 25% 25.195% 25.195% 24.61%;
}

.kenzo-diff-head {
  background: #F7F7F7;
  border: 1px solid #E6E6E6;
  padding: 1.286rem 1.714rem;
  font-size: 1.286rem;
  font-weight: 700;
  line-height: 1.555;
  letter-spacing: 0.04em;
  color: #282727;
  text-align: center;
}

.kenzo-diff-head--a {
  grid-column: 2;
  border-radius: 8px 0 0 0;
}

.kenzo-diff-head--b {
  grid-column: 3;
  border-left: none;
}

.kenzo-diff-head--kenzo {
  grid-column: 4;
  border-left: none;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(129deg, #FEE394 16%, #F58031 100%);
  color: #fff;
}

.kenzo-diff-head--kenzo small {
  display: block;
  font-size: 1.286rem;
  font-weight: 700;
}

.kenzo-diff-cell {
  background: #fff;
  border-right: 1px solid #E6E6E6;
  border-bottom: 1px solid #E6E6E6;
  padding: 1.286rem 1.714rem;
  font-size: 1.286rem;
  font-weight: 700;
  line-height: 1.555;
  letter-spacing: 0.04em;
  color: #282727;
  text-align: center;
}

.kenzo-diff-cell small {
  display: block;
  margin-top: 0.286rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.333;
  letter-spacing: 0.04em;
}

.kenzo-diff-cell--feature {
  background: #F7F7F7;
  border-left: 1px solid #E6E6E6;
  text-align: left;
}

.kenzo-diff-cell--feature-top {
  border-top: 1px solid #E6E6E6;
  border-radius: 8px 0 0 0;
}

.kenzo-diff-cell--feature-bottom {
  border-radius: 0 0 0 8px;
}

.kenzo-diff-cell--kenzo {
  background: #FFF8F0;
}

.kenzo-diff-cell--kenzo-bottom {
  border-radius: 0 0 8px 0;
}

.kenzo-diff-highlight {
  color: #F58031;
  font-size: 1.286rem;
  font-weight: 700;
}

/* ===== 他社サービスとの比較 ===== */
.kenzo-compare {
  --border: #E6E6E6;
  --radius: 0.625rem;
  --shadow: 0 1rem 1.875rem rgba(0, 0, 0, 0.1);
  --head-bg: #F6F6F6;
  --kenzo-grad-1: #F6B55C;
  --kenzo-grad-2: #F39A2D;
  background: #fff;
  padding: 5rem 0;
}

.kenzo-compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
  position: relative;
}

.kenzo-compare-scroll-hint {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.kenzo-compare-scroll-hint.is-hidden {
  opacity: 0;
}

.kenzo-compare-table {
  max-width: 1024px;
  min-width: 1024px;
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, 256px);
  grid-auto-rows: 84px;
  gap: 0;
}

.kenzo-compare-table > .kenzo-compare-cell:nth-child(-n+4) {
  height: auto;
  min-height: auto;
}

.kenzo-compare-cell {
  background: #fff;
  border: 1px solid var(--border);
  border-right: none;
  border-bottom: none;
  padding: 1.125rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #282727;
}

.kenzo-compare-cell small {
  display: block;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #666;
  font-weight: 700;
}

.kenzo-compare-cell--corner {
  background: transparent;
  border: none;
}

.kenzo-compare-cell--head {
  background: var(--head-bg);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.04em;
}

.kenzo-compare-cell--head:nth-child(2) {
  padding-left: 20px;
}

.kenzo-compare-cell--rowhead {
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  background: var(--head-bg);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

/* A社ヘッダー左上 */
.kenzo-compare-table > .kenzo-compare-cell:nth-child(2) {
  border-top-left-radius: var(--radius);
}

/* システム機能行の左上角丸 */
.kenzo-compare-table > .kenzo-compare-cell:nth-child(5) {
  border-top-left-radius: var(--radius);
}

/* 3列目（B社）右ボーダー */
.kenzo-compare-table > .kenzo-compare-cell:nth-child(4n+3) {
  border-right: 1px solid var(--border);
}

/* 最終行下ボーダー */
.kenzo-compare-table > .kenzo-compare-cell:nth-child(n+13) {
  border-bottom: 1px solid var(--border);
}

/* 左列最終行左下角丸 */
.kenzo-compare-table > .kenzo-compare-cell:nth-child(13) {
  border-bottom-left-radius: var(--radius);
}

.kenzo-compare-cell--kenzoHead {
  background: linear-gradient(129deg, #FEE394 16%, #F58031 100%);
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.04em;
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: var(--radius) var(--radius) 0 0;
  position: relative;
  top: -1.25rem;
  margin-bottom: -1.25rem;
  padding: 1.25rem 0.625rem 1rem;
  z-index: 1;
}

.kenzo-compare-cell--kenzoHead span {
  font-weight: 700;
  font-size: 0.75rem;
  opacity: 0.95;
}

.kenzo-compare-cell--kenzo {
  background: #F7F7F7;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.75rem;
  letter-spacing: 0.04em;
  color: #F58031;
  border-left: none;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-top: none;
}

.kenzo-compare-cell--kenzo + .kenzo-compare-cell--rowhead {
  border-top: none;
}

.kenzo-compare-cell--kenzo small {
  font-size: 1.125rem;
  line-height: 1.75rem;
  letter-spacing: 0.04em;
  color: #F58031;
  font-weight: 700;
}

.kenzo-compare-cell--kenzo-last {
  border-bottom: 1px solid var(--border);
  border-radius: 0 0 var(--radius) 0;
}

.kenzo-diff-diagram {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.kenzo-diff-center {
  display: flex;
  justify-content: center;
}

.kenzo-diff-kenzo-circle {
  width: 408px;
  height: 408px;
  border-radius: 50%;
  background: #EBB845;
  border: 2px solid #EBB845;
  box-shadow: 0 0 25px rgba(222, 154, 45, 0.34);
  display: flex;
  align-items: center;
  justify-content: center;
}

.kenzo-diff-kenzo-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 20px;
}

.kenzo-diff-tags {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.kenzo-diff-tag {
  background: #fff;
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #343434;
  text-align: center;
  box-shadow: 0 0 9px rgba(151, 151, 151, 0.11);
}

.kenzo-diff-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
}

.kenzo-diff-block {
  background: #F7F7F7;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #E7E7E7;
}

.kenzo-diff-block-title {
  font-size: 1rem;
  font-weight: 700;
  color: #343434;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #E7E7E7;
}

.kenzo-diff-block-list li {
  font-size: 0.8125rem;
  line-height: 2;
  color: #343434;
}

.kenzo-diff-bubble {
  background: #fff;
  border-radius: 16px;
  box-shadow: 1px 1px 16px 4px rgba(242, 144, 53, 0.25);
  padding: 32px 40px;
  text-align: center;
  position: relative;
  max-width: 600px;
  width: 100%;
}

.kenzo-diff-bubble::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 16px solid #fff;
}

.kenzo-diff-bubble-title {
  font-size: 1.07rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.kenzo-diff-bubble-sub {
  font-size: 0.875rem;
  color: #343434;
}

.kenzo-diff-options {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.kenzo-diff-options-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.kenzo-diff-options-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #343434;
}

.kenzo-diff-options-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.kenzo-diff-option-tag {
  background: #fff;
  border: 1px solid #E7E7E7;
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #343434;
}

.kenzo-diff-company {
  display: flex;
  align-items: center;
  gap: 32px;
}

.kenzo-diff-company-circle {
  width: 142px;
  height: 142px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff 0%, #E3E3E3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.86rem;
  font-weight: 700;
  color: #343434;
}

.kenzo-diff-doctor {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.kenzo-diff-doctor-title {
  font-size: 1rem;
  font-weight: 700;
  color: #343434;
}

.kenzo-diff-doctor-sub {
  font-size: 0.75rem;
  color: #6B7280;
  line-height: 1.5;
}

/* ===== CTA ===== */
.kenzo-cta {
  position: relative;
  padding: 0;
  height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.kenzo-cta-bg {
  position: absolute;
  inset: 0;
  background: rgba(29, 28, 28, 0.7) url("../images/kenzo/cta-background.png") center/cover no-repeat;
  z-index: 0;
}

.kenzo-cta .kenzo-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 0;
}

.kenzo-cta-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}

.kenzo-cta-box {
  display: flex;
  justify-content: center;
}

.kenzo-cta-box-inner {
  background: linear-gradient(129deg, #FCBC00 16%, #FF7E26 100%);
  border-radius: 8px;
  padding: 48px 225px;
  text-align: center;
  max-width: 1024px;
  min-height: 252px;
  width: 100%;
  box-sizing: border-box;
}

.kenzo-cta-box-label {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  margin-top: 0;
  margin-bottom: 24px;
}

.kenzo-cta-box-desc {
  font-size: 1.286rem;
  font-weight: 400;
  line-height: 1.11;
  color: #fff;
  margin-bottom: 32px;
  white-space: nowrap;
}

.kenzo-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: nowrap;
}

.kenzo-cta-btns .kenzo-btn {
  gap: 12px;
  white-space: nowrap;
}

.kenzo-btn--cta-primary {
  background: #fff;
  color: #282727;
  border: 1px solid #fff;
  font-size: 1.143rem;
  font-weight: 500;
  line-height: 1.5;
  padding: 14px 24px;
}

.kenzo-btn--cta-secondary {
  background: #fff;
  color: #282727;
  border: 1px solid #E8E8E8;
  font-size: 1.143rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.0625em;
  padding: 14px 24px;
}

/* ===== 導入の流れ ===== */
.kenzo-flow {
  background: #fff;
  padding: 40px 0 64px;
  position: relative;
}

.kenzo-flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.kenzo-flow-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(12.5% + 15px);
  right: calc(12.5% + 15px);
  height: 3px;
  background: #E7E7E7;
  z-index: 0;
}

.kenzo-flow-step {
  text-align: center;
  z-index: 1;
}

.kenzo-flow-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(129deg, #FEE394 16%, #F58031 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.kenzo-flow-step-num span {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 1.71rem;
  color: #fff;
  line-height: 1;
}

.kenzo-flow-step-title {
  font-size: 20px;
  font-weight: 700;
  color: #343434;
  margin: 0 0 10px;
}

.kenzo-flow-step-text {
  font-size: 14px;
  line-height: 1.8;
  color: #343434;
}

/* ===== FAQ ===== */
.kenzo-faq {
  background: #F7F7F7;
  padding: 40px 0 80px;
}

.kenzo-faq-list {
  background: #F7F7F7;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.kenzo-faq-item {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 18px;
}

.kenzo-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  background: #fff;
  border: none;
  border-radius: 4px 4px 0 0;
  padding: 1.3125rem 1.5rem 1.3125rem 1.5625rem;
  cursor: pointer;
  text-align: left;
  font-size: 1.25rem;
  font-weight: 500;
  color: #333333;
  line-height: 1.2;
  font-family: "Noto Sans JP", sans-serif;
  transition: background 0.2s;
}

.kenzo-faq-question:hover {
  background: #FAFAFA;
}

.kenzo-faq-q {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 1.9375rem;
  color: #EE7F37;
  flex-shrink: 0;
  line-height: 1;
}

.kenzo-faq-question-text {
  flex: 1;
  font-size: 20px;
}

.kenzo-faq-toggle {
  flex-shrink: 0;
  position: relative;
  width: 2rem;
  height: 2rem;
}

.kenzo-faq-toggle svg {
  width: 32px;
  height: 32px;
}

.kenzo-faq-plus {
  display: block;
}

.kenzo-faq-minus {
  display: none;
}

.kenzo-faq-item.is-open .kenzo-faq-plus {
  display: none;
}

.kenzo-faq-item.is-open .kenzo-faq-minus {
  display: block;
}

.kenzo-faq-answer {
  display: none;
  background: #fff;
  border-top: 1px dashed #D8D5D5;
  padding: 1.125rem 1.5rem 1.6875rem 1.5625rem;
  gap: 1.75rem;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.04em;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  border-radius: 0 0 4px 4px;
}

.kenzo-faq-item.is-open .kenzo-faq-answer {
  display: flex;
}

.kenzo-faq-a {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 1.9375rem;
  color: #FCBC00;
  flex-shrink: 0;
  line-height: 1;
}

/* ===== フッター ===== */
.kenzo-footer {
  font-size: 12px;
  background: #343434;
  height: 68px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.kenzo-footer-copy {
  font-size: 0.75rem;
  color: #fff;
  letter-spacing: 0.05em;
}

.kenzo-pagetop {
  position: fixed;
  right: 40px;
  bottom: 20px;
  z-index: 100;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.kenzo-pagetop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.kenzo-pagetop:hover,
.kenzo-pagetop:focus-visible {
  opacity: 0.8;
}

.kenzo-pagetop img {
  display: block;
}

/* ===== PC ハブライン調整 (min-width: $breakpoint-tablet + 1px) ===== */
@media (min-width: 1201px) {
  .kenzo-hub-line {
    top: clamp(120px, 10.4vw, 150px);
    width: clamp(90px, 8.3vw, 120px);
    height: clamp(2px, 0.21vw, 3px);
  }
  .kenzo-hub-line--left {
    right: clamp(-8px, 0.8vw, 12px);
  }
}
/* ===== タブレット (max-width: $breakpoint-tablet) ===== */
@media (max-width: 1200px) {
  .kenzo-inner {
    padding: 0 40px;
  }
  .kenzo-header-inner {
    padding: 12px 40px;
  }
  .kenzo-section-header {
    margin-bottom: 24px;
  }
  /* ヒーロー */
  .kenzo-hero {
    min-height: auto;
  }
  .kenzo-hero-inner {
    padding: 120px 40px 72px;
    min-height: auto;
    gap: 24px;
    align-items: center;
  }
  .kenzo-hero-content {
    flex: 1 1 0;
    min-width: 0;
  }
  .kenzo-hero-title {
    font-size: clamp(22px, 3.4vw, 40px);
  }
  .kenzo-hero-title-main {
    font-size: clamp(26px, 4vw, 48px);
  }
  .kenzo-hero-text {
    font-size: clamp(13px, 1.4vw, 16px);
  }
  .kenzo-hero-img {
    flex: 0 1 min(44vw, 400px);
    width: min(44vw, 400px);
  }
  .kenzo-hero-btns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 420px;
  }
  .kenzo-hero-btns .kenzo-btn {
    justify-content: center;
    padding: 0 10px;
    gap: 8px;
    font-size: 14px;
  }
  .kenzo-hero-btns .kenzo-btn img {
    width: 22px;
    height: 22px;
  }
  /* 解決 */
  .kenzo-section-overview-img {
    width: min(100%, 587px);
    height: auto;
  }
  .kenzo-section-lead {
    max-width: 620px;
    margin: 0 auto;
  }
  .kenzo-hub-inner {
    padding: 100px 40px 45px;
  }
  .kenzo-hub-body {
    width: 100%;
    justify-content: center;
    gap: 24px;
  }
  .kenzo-hub-col {
    flex: 0 1 220px;
  }
  .kenzo-hub-center {
    flex: 0 1 400px;
    margin-top: -40px;
  }
  /* 機能 */
  .kenzo-feature-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .kenzo-feature-card,
  .kenzo-feature-card:nth-child(4),
  .kenzo-feature-card:nth-child(5) {
    grid-column: span 1;
  }
  .kenzo-feature-card:nth-child(5) {
    grid-column: 1/-1;
    justify-self: center;
    max-width: calc(50% - 12px);
  }
  /* サービスリンク */
  .kenzo-service-card {
    width: calc((100% - 29px) / 2);
  }
  /* CTA */
  .kenzo-cta-box-inner {
    padding: 48px 80px;
  }
  .kenzo-cta-btns {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
  }
  .kenzo-cta-btns .kenzo-btn {
    white-space: nowrap;
  }
  /* 他社比較 */
  .kenzo-diff-kenzo-circle {
    width: 300px;
    height: 300px;
  }
}
/* ===== 中間 (max-width: 1024px) ===== */
@media (max-width: 1024px) {
  /* 課題 */
  .kenzo-problem-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .kenzo-problem-cards .kenzo-problem-card:last-child:nth-child(odd) {
    grid-column: 1/-1;
    justify-self: center;
    width: calc(50% - 12px);
    padding-top: 17.5%;
  }
}
/* ===== SP (max-width: $breakpoint-mobile) ===== */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  .kenzo-inner {
    padding: 0 5.33vw;
  }
  /* ヘッダー */
  .kenzo-header-inner {
    padding: 14px 5.33vw;
  }
  .kenzo-logo img {
    width: 84px;
    height: 40px;
    opacity: 1;
  }
  .kenzo-nav,
  .kenzo-header-cta {
    display: none;
  }
  .kenzo-hamburger {
    display: flex;
  }
  /* ヒーロー */
  .kenzo-hero {
    min-height: auto;
  }
  .kenzo-hero-bg {
    background-image: url("../images/kenzo/sp-background.svg");
  }
  .kenzo-hero-circle {
    display: none;
  }
  .kenzo-hero-inner {
    flex-direction:column-reverse;
    padding: 96px 5.33vw 60px;
    min-height: auto;
    gap: 32px;
  }
  .kenzo-hero-content {
    flex: 0 0 auto;
    max-width: none;
  }
  .kenzo-hero-img {
    flex: 0 0 auto;
    width: 100%;
    justify-content: center;
  }
  .kenzo-hero-tag {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .kenzo-hero-tag-deco {
    width: 100%;
  }
  .kenzo-hero-tag-deco picture,
  .kenzo-hero-tag-deco img {
    display: block;
    width: 100%;
    height: auto;
  }
  .kenzo-hero-title {
    font-size: 20px;
    margin: 0 0 12px;
  }
  .kenzo-hero-title-main {
    font-size: inherit;
  }
  .kenzo-hero-text {
    font-size: 12px;
    margin-bottom: 14px;
  }
  .kenzo-hero-btns {
    display: flex;
    flex-wrap: nowrap;
    gap: 2.1vw;
  }
  .kenzo-btn--hero-contact {
    background: linear-gradient(90deg, #F0831D 10%, #E4B300 100%);
    width: 47.5vw;
    height: 3.2rem;
    padding: 0 5.2vw;
    gap: 2.6vw;
    border-radius: 0.9vw;
    font-size: 12px;
  }
  .kenzo-btn--hero-contact img {
    width: 22px;
    height: 22px;
  }
  .kenzo-btn--hero-outline {
    background: #fff;
    color: #343434;
    border: 0.81px solid #E8E8E8;
    width: 137px;
    height: 3.2rem;
    padding: 0 5.2vw;
    gap: 2.6vw;
    border-radius: 0.9vw;
    font-size: 12px;
  }
  .kenzo-btn--hero-outline img {
    width: 22px;
    height: 22px;
  }
  /* 課題 */
  .kenzo-problems {
    padding: 60px 0;
  }
  .kenzo-problem-cards {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 28px;
    max-width: 360px;
  }
  .kenzo-problem-cards .kenzo-problem-card:last-child:nth-child(odd) {
    grid-column: auto;
    justify-self: auto;
    width: 100%;
    padding-top: 35%;
  }
  .kenzo-section-header {
    margin-bottom: 24px;
  }
  .kenzo-section-title {
    font-size: 20px;
  }
  .kenzo-section-lead {
    font-size: 14px;
    text-align: left;
  }
  .kenzo-heading-text {
    font-size: 24px;
  }
  .kenzo-section-overview-img {
    width: 100%;
    max-width: 705px;
    height: auto;
  }
  .kenzo-problem-card-title {
    font-size: 18px;
  }
  .kenzo-problem-card-text {
    font-size: 14px;
  }
  /* 解決 */
  .kenzo-solution {
    padding: 72px 0 60px;
  }
  .kenzo-solution::before {
    display: block;
    width: 54.93vw;
    height: 13.07vw;
    background-image: url("../images/kenzo/sp-white-triangle.svg");
  }
  .kenzo-solution-header {
    padding-top: 0;
    margin-bottom: 24px;
  }
  .kenzo-solution-title {
    font-size: 3.73vw;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 4px;
  }
  .kenzo-solution-title-main {
    font-size: 17.5px;
  }
  .kenzo-solution-title-sub {
    font-size: 17.5px;
  }
  .kenzo-solution-title-logo {
    margin: 0 4px;
  }
  .kenzo-solution-title-logo img {
    width: 26.67vw;
  }
  .kenzo-solution-cards {
    gap: 32px;
  }
  .kenzo-solution-card {
    flex-direction: column;
    gap: 20px;
  }
  .kenzo-solution-card--reverse {
    flex-direction: column;
  }
  .kenzo-solution-card-img {
    width: 100%;
    height: auto;
    aspect-ratio: 442/263;
  }
  .kenzo-solution-card-badge {
    font-size: 12px;
    margin-bottom: 8px;
  }
  .kenzo-solution-card-title {
    font-size: 18px;
  }
  .kenzo-solution-card-desc p {
    font-size: 14px;
  }
  .kenzo-answer {
    padding: 30px 0 30px;
  }
  /* ハブ */
  .kenzo-hub-inner {
    padding: 40px 1.25rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
  }
  .kenzo-hub-speech {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 0 0 21px;
    width: 335px;
    min-height: 57px;
    padding: 12px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #D0D0D0;
    border-radius: 8px;
    box-shadow: 0 0 6px 0 rgba(174, 172, 172, 0.04);
    box-sizing: border-box;
  }
  .kenzo-hub-speech::after {
    bottom: -17px;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 17px solid #fff;
    filter: none;
  }
  .kenzo-hub-speech::before {
    content: "";
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 19px solid #D0D0D0;
    z-index: 0;
  }
  .kenzo-hub-speech-main {
    font-size: 14px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 0;
  }
  .kenzo-hub-speech-sub {
    font-size: 12px;
    font-weight: 500;
    color: #333333;
    position: relative;
    top: -5px;
  }
  .kenzo-hub-speech-accent {
    font-size: 16px;
    background: linear-gradient(180deg, #F58031 0%, #FEE394 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .kenzo-hub-speech-accent::after {
    display: none;
  }
  .kenzo-hub-col-title {
    font-size: 16px;
    letter-spacing: 0.0625em;
    line-height: 1.8125;
    white-space: nowrap;
  }
  .kenzo-hub-col-list {
    font-size: 12px;
  }
  .kenzo-hub-body {
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: min(88.27vw, 331px);
    margin: 0 auto;
    position: relative;
  }
  .kenzo-hub-sp-line {
    display: block;
    position: absolute;
    width: min(0.27vw, 1px);
    max-width: 1px;
    height: min(18.93vw, 71px);
    pointer-events: none;
    z-index: 2;
  }
  .kenzo-hub-sp-line--left {
    top: min(35vw, 131px);
    left: min(15vw, 56px);
  }
  .kenzo-hub-sp-line--right {
    top: min(64.8vw, 243px);
    right: 0;
  }
  .kenzo-hub-col {
    width: 100%;
    align-items: flex-start;
    gap: 8px;
    z-index: 2;
  }
  .kenzo-hub-col--left {
    min-height: min(54.67vw, 205px);
    padding-left: min(41.33vw, 155px);
    justify-content: flex-start;
  }
  .kenzo-hub-col--right {
    min-height: min(41.33vw, 155px);
    padding-right: min(36.27vw, 136px);
    justify-content: flex-start;
  }
  .kenzo-hub-person {
    width: min(32.27vw, 121px);
    min-width: 0;
    max-width: none;
  }
  .kenzo-hub-person--left {
    position: absolute;
    left: 0;
    top: 0;
    aspect-ratio: auto;
    border-radius: 0;
    background: transparent;
    overflow: visible;
  }
  .kenzo-hub-person--left picture {
    display: block;
    width: 100%;
  }
  .kenzo-hub-person--left img {
    height: auto;
    object-fit: contain;
  }
  .kenzo-hub-person--right {
    position: absolute;
    right: 0;
    top: min(9.07vw, -100px);
    aspect-ratio: auto;
    border-radius: 0;
    background: transparent;
    overflow: visible;
  }
  .kenzo-hub-person--right picture {
    display: block;
    width: 100%;
  }
  .kenzo-hub-person--right img {
    height: auto;
    object-fit: contain;
  }
  .kenzo-hub-line {
    display: none;
  }
  .kenzo-hub-center {
    flex: none;
    width: min(88.27vw, 331px);
    align-items: center;
    margin-top: clamp(-17px, -4.53vw, 0px);
    margin-bottom: 37px;
    z-index: 1;
  }
  .kenzo-hub-center-img {
    width: 100%;
    max-width: none;
  }
  .kenzo-hub-deco {
    width: 240px;
    top: 20%;
    left: 50%;
    transform: translate(-50%, 0);
  }
  /* 機能 */
  .kenzo-features {
    padding: 0;
    margin: 0 24px;
  }
  .kenzo-features .kenzo-inner {
    padding: 40px 5.33vw;
  }
  .kenzo-feature-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .kenzo-feature-card,
  .kenzo-feature-card:nth-child(4),
  .kenzo-feature-card:nth-child(5) {
    grid-column: 1;
    justify-self: stretch;
    max-width: none;
  }
  .kenzo-feature-card-title {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 4px;
  }
  .kenzo-feature-card-text {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .kenzo-feature-card-btn {
    font-size: 16px;
  }
  /* サービスリンク */
  .kenzo-services {
    padding: 60px 0;
    margin: 0 24px;
  }
  .kenzo-services .kenzo-inner {
    padding: 40px 5.33vw;
  }
  .kenzo-service-cards {
    gap: 16px;
  }
  .kenzo-service-card {
    width: 100%;
  }
  .kenzo-service-card-title {
    font-size: 14px;
  }
  /* 比較表 */
  .kenzo-comparison {
    padding: 60px 0;
  }
  .kenzo-case-list {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
  }
  .kenzo-case-title {
    padding: 16px 20px 15px;
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.04em;
  }
  .kenzo-case-label {
    font-size: 12px;
    display: inline-block;
    width: auto;
    height: auto;
    border-radius: 0.1875rem;
    padding: 0.25rem 0.625rem;
  }
  .kenzo-case-body {
    padding: 16px 20px 20px;
  }
  .kenzo-case-text {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.43;
    letter-spacing: 0;
  }
  .kenzo-case-meta {
    margin-top: 16px;
  }
  .kenzo-case-meta-row {
    grid-template-columns: 6.5rem 1fr;
    gap: 8px;
  }
  .kenzo-case-meta dt,
  .kenzo-case-meta dd {
    padding: 8px 10px;
    font-size: 12px;
    line-height: 1;
  }
  /* 他社比較 */
  .kenzo-diff {
    padding: 60px 0;
  }
  .kenzo-diff-table {
    min-width: 760px;
  }
  .kenzo-diff-head,
  .kenzo-diff-cell {
    padding: 12px 10px;
    font-size: 12px;
  }
  .kenzo-diff-cell small,
  .kenzo-diff-head--kenzo small {
    font-size: 11px;
  }
  .kenzo-compare {
    padding: 3.75rem 0;
  }
  .kenzo-compare-scroll-hint {
    display: block;
  }
  .kenzo-compare .kenzo-h2-deco {
    padding-left: 1.125rem;
  }
  .kenzo-compare .kenzo-h2-deco::before {
    display: block;
  }
  .kenzo-compare-table {
    max-width: none;
    min-width: 1024px;
    margin-top: 1.5rem;
    grid-template-columns: repeat(4, 256px);
    grid-auto-rows: 64px;
  }
  .kenzo-compare-cell {
    font-size: 14px;
    padding: 0.75rem 0.625rem;
  }
  .kenzo-compare-cell--rowhead {
    font-size: 18px;
    padding-left: 24px;
  }
  .kenzo-compare-cell--head {
    font-size: 18px;
    white-space: nowrap;
  }
  .kenzo-compare-cell--head:nth-child(2) {
    padding-left: unset;
  }
  .kenzo-compare-cell--kenzoHead {
    font-size: 18px;
    white-space: nowrap;
  }
  .kenzo-compare-cell--kenzo {
    font-size: 14px;
    padding: 0.75rem 0.625rem;
  }
  .kenzo-compare-cell small,
  .kenzo-compare-cell--kenzoHead span,
  .kenzo-compare-cell--kenzo small {
    font-size: 14px;
  }
  .kenzo-diff-kenzo-circle {
    width: 280px;
    height: 280px;
  }
  .kenzo-diff-cols {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .kenzo-diff-company {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  /* CTA */
  .kenzo-cta {
    padding: 64px 0;
    height: auto;
  }
  .kenzo-cta-title {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 24px;
    letter-spacing: 0;
  }
  .kenzo-cta-box-inner {
    padding: 32px 20px;
    min-height: 0;
    background: linear-gradient(90deg, #E4B300 10%, #F0831D 100%);
  }
  .kenzo-cta-box-label {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .kenzo-cta-box-desc {
    font-size: 15px;
    line-height: 1.333;
    margin-bottom: 30px;
    white-space: normal;
  }
  .kenzo-cta-btns {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .kenzo-cta-btns .kenzo-btn {
    justify-content: center;
    width: auto;
  }
  .kenzo-btn--cta-primary {
    font-size: 16px;
    order: 1;
    border: none;
  }
  .kenzo-btn--cta-secondary {
    font-size: 16px;
    order: 0;
  }
  /* 流れ */
  .kenzo-flow {
    padding: 60px 0;
  }
  .kenzo-flow .kenzo-h2-deco {
    padding-left: 1.125rem;
  }
  .kenzo-flow .kenzo-h2-deco::before {
    display: block;
  }
  .kenzo-flow-line {
    display: none;
  }
  .kenzo-flow-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .kenzo-flow-steps::before {
    display: none;
  }
  .kenzo-flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .kenzo-flow-step-num {
    margin: 0 0 24px;
    flex-shrink: 0;
    width: 55px;
    height: 55px;
  }
  .kenzo-flow-step-num span {
    font-size: 24px;
  }
  .kenzo-flow-step-body {
    text-align: center;
  }
  .kenzo-flow-step-title {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .kenzo-flow-step-text {
    font-size: 14px;
  }
  /* FAQ */
  .kenzo-faq {
    padding: 60px 0;
  }
  .kenzo-faq .kenzo-h2-deco {
    padding-left: 1.125rem;
  }
  .kenzo-faq .kenzo-h2-deco::before {
    display: block;
  }
  .kenzo-faq-question {
    padding: 1rem;
    gap: 1rem;
    font-size: 14px;
  }
  .kenzo-faq-question-text {
    font-size: 14px;
  }
  .kenzo-faq-answer {
    padding: 1rem;
    gap: 1rem;
    font-size: 14px;
  }
  .kenzo-faq-q, .kenzo-faq-a {
    font-size: 24px;
  }
  /* フッター */
  .kenzo-footer {
    height: auto;
    padding: 24px 20px;
    flex-direction: row;
    gap: 16px;
  }
  .kenzo-footer-copy {
    font-size: 12px;
  }
  .kenzo-pagetop {
    right: 5.33vw;
    bottom: 20px;
  }
}

/* ===== モーダル ===== */
.kenzo-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.kenzo-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.kenzo-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.kenzo-modal-container {
  position: relative;
  width: 90%;
  max-width: 857px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.25);
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1001;
  padding: 50px 30px;
}

@media (min-width: 769px) {
  .kenzo-modal-container {
    padding: 42px;
  }
}

.kenzo-modal-close {
  position: absolute;
  top: 13px;
  right: 13px;
  background: none;
  border: none;
  cursor: pointer;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kenzo-modal-close:hover {
  opacity: 0.7;
}

.kenzo-modal-content {
  max-width: 800px;
  margin: 0 auto;
}

.kenzo-modal-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #282727;
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 27px;
  letter-spacing: 1.28px;
}

@media (max-width: 768px) {
  .kenzo-modal-title {
    font-size: 24px;
  }
}
.kenzo-modal-title-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ee7f37;
}

.kenzo-modal-lead {
  font-size: 16px;
  font-weight: 700;
  color: #ee7f37;
  line-height: 1.75;
  margin-bottom: 27px;
}

.kenzo-modal-list {
  font-size: 14px;
  line-height: 2;
  color: #000;
  margin-bottom: 27px;
}

.kenzo-modal-img-group {
  margin-bottom: 27px;
}

.kenzo-modal-img-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.kenzo-modal-img {
  width: 100%;
  height: auto;
  display: block;
}

.kenzo-modal-img--main {
  max-width: 701px;
}

.kenzo-modal-img--sub {
  max-width: 770px;
}

.kenzo-modal-tooltip {
  position: absolute;
  background: #fff;
  border: 2px solid #ffa08e;
  border-radius: 10px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 14px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  line-height: 2;
  display: none; /* Hide on smaller screens */
}

@media (min-width: 1024px) {
  .kenzo-modal-tooltip {
    display: block;
  }
}

.kenzo-modal-tooltip p {
  margin: 0;
}

.kenzo-modal-tooltip--1 {
  width: 213px;
  right: 0;
  top: 40px;
}

.kenzo-modal-tooltip--2 {
  width: 213px;
  right: 0;
  top: 170px;
}

.kenzo-modal-subtitle {
  font-size: 22px;
  font-weight: 700;
  color: #ee7f37;
  margin-bottom: 14px;
}
