﻿@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700&display=swap");

:root {
  --orange: #ec5a08;
  --orange-2: #ee4d3f;
  --green: #22984b;
  --green-2: #2c9d7c;
  --sky: #2fa8d7;
  --ink: #2f2a27;
  --muted: #756f68;
  --line: #e8ded6;
  --cream: #fff7f1;
  --mint: #eff9f0;
  --white: #fff;
  --shadow: 0 14px 34px rgba(72, 48, 30, 0.08);
  --max: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Zen Maru Gothic", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 18px;
  line-height: 1.9;
  letter-spacing: 0;
  background: var(--white);
  overflow-x: hidden;
}

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

[hidden] {
  display: none !important;
}

[data-reveal] {
  opacity: 1;
}

@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

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

h3 {
  font-size: 24px;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 92px 0;
}

.section--soft {
  background: var(--cream);
}

.section--mint {
  background: var(--mint);
}

.center {
  text-align: center;
}

.narrow {
  width: min(820px, 100%);
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 18px;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
}

.section-title {
  margin: 10px 0 18px;
  font-size: clamp(25px, 3.2vw, 40px);
  line-height: 1.55;
  font-weight: 700;
  line-break: strict;
  overflow-wrap: anywhere;
}

.lead {
  color: var(--muted);
  font-weight: 500;
  line-break: strict;
  overflow-wrap: anywhere;
  line-height: 2.5;
}

.small {
  color: var(--muted);
  font-size: 18px;
}

.btn {
  display: inline-flex;
  width: 200px;
  max-width: 100%;
  min-height: 35px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 7px 24px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  color: var(--white);
  font-weight: 700;
  line-height: 1.3;
  box-shadow: 1px 1px 0.5px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--green {
  background: linear-gradient(90deg, var(--green), var(--green-2));
}

.btn--light {
  background: var(--white);
  color: var(--orange);
  box-shadow: none;
}

.btn--wide {
  width: min(520px, 100%);
  min-height: 62px;
  font-size: 18px;
}

.logo {
  display: inline-flex;
  width: 156px;
  max-width: 34vw;
  align-items: center;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 30px;
  left: 0;
  right: 0;
  pointer-events: none;
}

.site-header .nav-wrap {
  pointer-events: auto;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

@media (min-width: 901px) {
  .site-header .nav-wrap {
    width: calc(100% - 160px);
    max-width: none;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--orange);
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.nav ul,
.nav li,
.footer-links ul,
.footer-links li {
  display: contents;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav a[aria-current="page"],
.nav a:hover {
  background: #fff0e6;
}

.reform-site .nav a {
  color: var(--green);
}

.reform-site .nav a[aria-current="page"],
.reform-site .nav a:hover {
  background: #eef8ee;
}

.nav-item,
.nav-service {
  position: relative;
  display: inline-flex;
}

.nav-item--has-menu::after,
.nav-service::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
}

.nav-link::after {
  content: none;
}

.nav-submenu,
.nav-service__menu {
  position: absolute;
  z-index: 20;
  top: 100%;
  left: 50%;
  display: grid;
  width: max-content;
  min-width: 330px;
  padding: 20px 10px 10px;
  border-radius: 18px;
  background: linear-gradient(to bottom, transparent 0 10px, rgba(255, 255, 255, 0.98) 10px);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-item:hover .nav-submenu,
.nav-item:focus-within .nav-submenu,
.nav-service:hover .nav-service__menu,
.nav-service:focus-within .nav-service__menu {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-submenu a,
.nav-service__menu a {
  justify-content: flex-start;
  width: 100%;
  min-height: 42px;
  padding: 0 16px;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--orange);
  box-shadow: var(--shadow);
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: min(760px, 100vh);
  overflow: hidden;
  background: #f7faf6;
}

.hero::after,
.sub-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.26);
  pointer-events: none;
}

.hero img,
.sub-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero img {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: min(760px, 100vh);
  align-items: center;
  padding-top: 90px;
}

.vertical-copy {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 0 0 0 92px;
}

.vertical-copy span {
  display: block;
  writing-mode: vertical-rl;
  min-height: 230px;
  padding: 20px 10px;
  border: 1px solid rgba(236, 90, 8, 0.35);
  background: rgba(255, 255, 255, 0.86);
  color: var(--orange);
  font-size: clamp(22px, 3.1vw, 34px);
  line-height: 1.35;
  font-weight: 700;
}

.vertical-copy img {
  position: static;
  width: min(174px, 46vw);
  height: auto;
  object-fit: contain;
}

.hero-note {
  margin: 34px 0 0 auto;
  width: min(440px, 100%);
  color: #817972;
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.82);
}

.sub-hero {
  position: relative;
  height: 360px;
  overflow: hidden;
  background: #ddd;
}

.sub-hero .container {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  place-items: center;
  padding-top: 80px;
}

.sub-hero h1,
.sub-hero__label {
  margin: 0;
  color: var(--white);
  font-size: 32px;
  line-height: 1.35;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
}

.grid {
  display: grid;
  gap: 28px;
}

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

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

.problem-card,
.service-card,
.voice-card,
.price-card,
.post-card,
.feature-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.problem-card {
  position: relative;
  display: flex;
  min-height: 320px;
  flex-direction: column;
  align-items: center;
  padding: 28px;
  text-align: center;
}

.problem-card img {
  display: none;
}

.problem-card.problem-card--with-image::before {
  content: none;
}

.problem-card--with-image img {
  display: block;
  width: min(168px, 100%);
  height: 128px;
  margin: 18px auto 16px;
  object-fit: contain;
}

.problem-card h3 {
  width: 100%;
  max-width: none;
  margin: 16px auto 0;
  font-size: 18px;
  line-height: 1.65;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.problem-card h3 span {
  display: block;
  white-space: normal;
}

.problem-card h3 .fit-line {
  width: auto;
  margin-left: 0;
  font-size: 17px;
  transform: none;
}

.problem-card::before {
  content: "見";
  display: grid;
  width: 104px;
  height: 104px;
  margin: 18px auto 18px;
  place-items: center;
  border-radius: 50%;
  background: #fff3e9;
  color: var(--orange);
  font-size: 44px;
  font-weight: 700;
}

.problem-card:nth-child(2)::before {
  content: "家";
}

.problem-card:nth-child(3)::before {
  content: "住";
  background: #eef9f0;
  color: var(--green);
}

.problem-card.problem-card--with-image::before {
  content: none;
}

.pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 5px 18px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}

.pill--green {
  background: var(--green);
}

.pill--sky {
  background: var(--sky);
}

.room-cta {
  overflow: hidden;
  background: var(--orange);
  color: var(--white);
}

.room-cta.green {
  background: var(--green);
}

.room-cta.green .btn--light {
  color: var(--green);
}

.room-cta__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 250px;
  height: 250px;
  align-items: stretch;
  overflow: hidden;
}

@media (min-width: 901px) and (max-width: 1120px) {
  .room-cta__inner {
    width: calc(100vw - 20px);
    max-width: none;
    margin-right: 0;
    margin-left: 20px;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  }
}

@media (min-width: 1121px) {
  .room-cta__inner {
    width: calc(100vw - ((100vw - var(--max)) / 2));
    max-width: none;
    margin-right: 0;
    margin-left: calc((100vw - var(--max)) / 2);
    grid-template-columns: minmax(0, 594px) minmax(0, 1fr);
  }
}

.room-cta__copy {
  display: grid;
  align-content: center;
  height: 100%;
  padding: 22px 0;
}

.room-cta__copy h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.35;
}

.room-cta__copy p {
  margin: 0 0 16px;
  font-weight: 700;
  line-height: 1.65;
}

.room-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.room-cta__image {
  height: 100%;
  min-height: 0;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
}

.room-cta__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.photo-stack {
  position: relative;
  min-height: 330px;
}

.photo-stack img {
  position: absolute;
  border-radius: 0;
  box-shadow: none;
}

.photo-stack img:first-child {
  top: 0;
  right: 0;
  width: 400px;
  max-width: 100%;
}

.photo-stack img:last-child {
  left: 0;
  bottom: 0;
  width: 250px;
  max-width: 64%;
}

.service-card {
  overflow: hidden;
}

.home-services .grid--2 {
  gap: 44px;
}

.home-services .service-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.home-services .service-card__label {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
}

.home-services .service-card__label--green {
  color: var(--green);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 2.6;
  object-fit: cover;
}

.home-services .service-card img {
  aspect-ratio: 1.58 / 1;
  border-radius: 8px;
}

.home-services .service-card__image--contain {
  object-fit: contain;
  object-position: center;
  background: var(--white);
}

.service-card__body {
  padding: 24px;
}

.home-services .service-card__body {
  padding: 18px 0 0;
}

.home-services .service-card .small {
  margin: 0 0 18px;
  color: var(--ink);
  font-weight: 700;
  line-height: 2.1;
}

.home-services .service-card .btn {
  font-size: 18px;
}

.service-card h3,
.feature-card h3,
.post-card h3 {
  margin: 10px 0 8px;
  font-size: 24px;
  line-height: 1.55;
}

.voice-band {
  padding: 46px;
  border-radius: 8px;
  background: var(--cream);
}

.voice-card {
  padding: 24px;
}

.voice-card__person {
  display: flex;
  gap: 16px;
  align-items: center;
}

.avatar {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #eef4ee;
  color: var(--green);
  font-weight: 700;
}

.customer-voice-panel {
  width: min(1400px, calc(100% - 40px));
  margin-inline: auto;
  padding: 54px 64px;
  border-radius: 28px;
  background: var(--cream);
}

.customer-voice-panel .section-title {
  margin-bottom: 30px;
}

.customer-voice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.customer-voice-card {
  --voice-color: var(--orange);
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 2px solid var(--voice-color);
  border-radius: 12px;
  background: var(--white);
}

.customer-voice-card--green {
  --voice-color: var(--green);
}

.customer-voice-intro {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: start;
}

.customer-voice-intro img {
  width: 96px;
  height: 112px;
  object-fit: contain;
}

.customer-voice-card h3 {
  margin: 0 0 10px;
  color: var(--voice-color);
  font-size: 24px;
  line-height: 1.45;
}

.customer-voice-card p {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.75;
}

.customer-voice-card strong {
  display: block;
  margin-top: 10px;
  font-weight: 700;
}

.customer-voice-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.customer-voice-summary > div {
  min-width: 0;
}

.customer-voice-summary span {
  display: block;
  color: var(--voice-color);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.customer-voice-summary b {
  display: inline-flex;
  max-width: 100%;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 4px 14px;
  border-radius: 999px;
  background: var(--voice-color);
  color: var(--white);
  font-size: 18px;
  line-height: 1.3;
  text-align: center;
  white-space: normal;
}

.customer-voice-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--voice-color);
  border-radius: 8px;
}

.customer-voice-table > * {
  margin: 0;
  min-height: 36px;
  padding: 6px 12px;
  border-right: 1px solid var(--voice-color);
  border-bottom: 1px solid var(--voice-color);
  font-size: 18px;
  font-weight: 700;
}

.customer-voice-table > :nth-child(2n) {
  border-right: 0;
}

.customer-voice-table > :nth-last-child(-n + 2) {
  border-bottom: 0;
}

.customer-voice-table div {
  color: var(--voice-color);
  background: #fff7ef;
}

.customer-voice-card--green .customer-voice-table div {
  background: #eef8ee;
}

.customer-voice-table i {
  float: right;
  width: 13px;
  height: 13px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--voice-color);
}

.customer-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.customer-story-card {
  --voice-color: var(--orange);
  display: grid;
  gap: 18px;
  min-height: 270px;
  padding: 28px 30px;
  border: 1px solid #efe2da;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(72, 48, 30, 0.08);
}

.customer-story-card--green {
  --voice-color: var(--green);
}

.customer-story-badge {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 4px 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--voice-color), var(--orange-2));
  color: var(--white);
  font-weight: 700;
  line-height: 1.25;
}

.customer-story-card--green .customer-story-badge {
  background: linear-gradient(90deg, var(--green), var(--green-2));
}

.customer-story-body {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.customer-story-body img {
  width: 88px;
  height: 88px;
  border: 4px solid var(--white);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  justify-self: center;
  box-shadow: 0 12px 24px rgba(72, 48, 30, 0.14);
}

.customer-story-card--woman .customer-story-body img {
  object-position: 68% 38%;
}

.customer-story-card--couple .customer-story-body img {
  object-position: 63% 36%;
}

.customer-story-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.55;
}

.customer-story-card p {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.9;
}

.customer-story-card strong {
  display: block;
  margin-top: 12px;
  font-weight: 700;
}

.customer-voice-card--detail {
  gap: 16px;
  padding: 20px;
  border-radius: 16px;
}

.customer-use-head {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.customer-use-head img {
  width: 92px;
  height: 112px;
  border-radius: 8px;
  object-fit: cover;
}

.customer-use-head h3 {
  margin: 0 0 8px;
  color: var(--voice-color);
  font-size: 22px;
  line-height: 1.45;
}

.customer-use-head p {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
}

.customer-service-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  overflow: hidden;
  border: 1px solid var(--voice-color);
  border-radius: 8px;
  background: var(--white);
}

.customer-service-block {
  border-right: 1px solid var(--voice-color);
}

.customer-service-block:last-child {
  border-right: 0;
}

.customer-service-block h4 {
  margin: 0;
  min-height: 38px;
  padding: 7px 12px;
  border-bottom: 1px solid var(--voice-color);
  color: var(--voice-color);
  font-size: 18px;
  line-height: 1.3;
}

.customer-service-block h4 small {
  font-size: 16px;
}

.customer-service-block p {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  min-height: 32px;
  margin: 0;
  padding: 5px 10px;
  border-bottom: 1px solid var(--voice-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.customer-service-block p:last-child {
  border-bottom: 0;
}

.voice-marks {
  display: inline-flex;
  min-width: 20px;
  justify-content: flex-end;
  gap: 4px;
}

.voice-marks i {
  display: block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--voice-color);
}

.news-list {
  display: grid;
  gap: 0;
}

.news-item {
  display: grid;
  grid-template-columns: 150px 1fr 28px;
  gap: 18px;
  align-items: center;
  min-height: 70px;
  border-bottom: 1px dashed var(--line);
}

.date {
  color: var(--orange);
  font-size: 18px;
  font-weight: 700;
}

.arrow-dot {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}

.blog-preview {
  background: var(--cream);
}

.blog-preview__circles {
  position: relative;
  height: 210px;
  margin-top: 28px;
}

.blog-preview__circles img {
  position: absolute;
  border-radius: 50%;
  object-fit: cover;
  background: #e5e5e5;
}

.blog-preview__circles img:first-child {
  top: 0;
  left: 43%;
  width: 138px;
  height: 138px;
}

.blog-preview__circles img:last-child {
  top: 88px;
  left: 22%;
  width: 84px;
  height: 84px;
}

.blog-row {
  display: grid;
  grid-template-columns: 230px 1fr 28px;
  gap: 28px;
  align-items: center;
  min-height: 128px;
  border-bottom: 1px dashed var(--line);
}

.blog-row img {
  width: 230px;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
}

.company-overview {
  background: var(--white);
}

.company-overview__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.35fr);
  gap: 48px;
  align-items: center;
}

.company-overview__list {
  display: grid;
  margin: 24px 0 28px;
  border-top: 1px dashed var(--line);
}

.company-overview__list div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
}

.company-overview__list dt,
.company-overview__list dd {
  margin: 0;
  font-weight: 700;
}

.company-overview__list dt {
  color: var(--orange);
}

.company-map {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 0 12px 26px rgba(72, 48, 30, 0.1);
}

.company-map img {
  width: 100%;
  height: auto;
}

.footer-cta {
  padding: 92px 0 40px;
  text-align: center;
}

.contact-banners {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  width: min(620px, 100%);
  margin-inline: auto;
}

.contact-banner-card {
  display: grid;
  min-height: 104px;
  align-content: center;
  gap: 4px;
  padding: 18px;
  border: 2px solid var(--orange);
  border-radius: 8px;
  background: var(--white);
  color: var(--orange);
  font-weight: 700;
  line-height: 1.35;
  box-shadow: 0 8px 18px rgba(72, 48, 30, 0.06);
}

.contact-banner-card span {
  font-size: 22px;
}

.contact-banner-card small {
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
}

.contact-banner-card--line {
  border-color: var(--green);
  color: var(--green);
}

.contact-banner-card:hover {
  transform: translateY(-2px);
}

.site-footer {
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 170px 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  font-weight: 700;
}

.footer-links a {
  position: relative;
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding-left: 32px;
}

.footer-links a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange);
  transform: translateY(-50%);
}

.footer-links a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 7px;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
  transform: translateY(-50%) rotate(45deg);
}

.reform-site .footer-links a::before {
  background: var(--green);
}

.copyright {
  margin-top: 36px;
  color: var(--muted);
  font-size: 18px;
  text-align: center;
}

.feature-panel {
  padding: 50px;
  border-radius: 8px;
  background: var(--cream);
}

.feature-panel.mint {
  background: var(--mint);
}

.feature-card {
  padding: 26px;
  text-align: center;
}

.monitoring-page .sub-hero {
  height: 500px;
}

.monitoring-page .sub-hero::after {
  background: rgba(0, 0, 0, 0.18);
}

.monitoring-page .sub-hero h1 {
  max-width: min(100%, 720px);
  line-break: strict;
  overflow-wrap: anywhere;
}

.monitoring-page .sub-hero h1 span {
  display: inline;
}

.monitoring-intro {
  padding: 58px 0 36px;
}

.monitoring-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}

.monitoring-kicker span {
  display: inline;
}

.monitoring-intro__lead {
  margin: 0 auto;
  max-width: 980px;
  color: var(--ink);
  font-weight: 700;
  line-height: 2.5;
}

.monitoring-service {
  padding: 28px 0 96px;
}

.monitoring-service__panel {
  width: min(1400px, calc(100% - 40px));
  margin-inline: auto;
  padding: 62px clamp(28px, 5vw, 82px) 58px;
  border-radius: 28px;
  background: var(--cream);
}

.monitoring-service__panel .section-title {
  margin-top: 0;
  letter-spacing: 0.12em;
}

.monitoring-service__panel .lead {
  margin: 0 auto 38px;
  color: var(--orange);
  font-weight: 700;
}

.monitoring-service__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1180px;
  gap: 20px;
  justify-content: center;
  margin-inline: auto;
}

.monitoring-service-card {
  display: grid;
  width: 100%;
  min-width: 0;
  height: 300px;
  justify-items: center;
  align-content: center;
  gap: 28px;
  padding: 28px 18px;
  background: var(--white);
}

.monitoring-service-card img {
  width: 132px;
  height: 132px;
  object-fit: contain;
}

.monitoring-service-card h3 {
  display: inline-flex;
  max-width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  color: var(--white);
  font-size: 21px;
  line-height: 1.25;
  text-align: center;
  white-space: normal;
}

.monitoring-options {
  display: flex;
  width: min(760px, 100%);
  min-height: 42px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 30px auto 0;
  padding: 7px 24px;
  border: 1px solid #cfc4be;
  border-radius: 999px;
  background: var(--white);
  font-weight: 700;
}

.monitoring-options strong {
  color: var(--orange);
}

.monitoring-options strong,
.monitoring-options span {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.monitoring-options span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--orange);
  vertical-align: 2px;
}

.monitoring-options--panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  width: min(520px, 100%);
  min-height: 0;
  gap: 8px;
  padding: 10px 12px 14px;
  border: 0;
  border-radius: 14px;
  background: var(--orange);
}

.monitoring-options--panel strong {
  grid-column: 1 / -1;
  color: var(--white);
  font-size: 24px;
  line-height: 1.2;
  text-align: center;
}

.monitoring-options--panel span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 3px 12px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  line-height: 1.25;
}

.monitoring-options--panel span::before {
  content: none;
}

.monitoring-plan {
  padding: 10px 0 96px;
}

.monitoring-plan__grid {
  display: grid;
  grid-template-columns: repeat(3, 320px);
  gap: 30px;
  justify-content: center;
  margin-top: 46px;
}

.monitoring-plan-table-wrap {
  width: min(780px, 100%);
  margin: 34px auto 0;
  overflow: hidden;
  border-radius: 12px;
  background: #d6d6d6;
  box-shadow: 0 10px 26px rgba(72, 48, 30, 0.08);
}

.monitoring-plan-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  font-weight: 700;
  text-align: center;
}

.monitoring-plan-table th,
.monitoring-plan-table td {
  padding: 14px 16px;
  border-right: 6px solid var(--white);
  border-bottom: 6px solid var(--white);
  background: var(--white);
  line-height: 1.35;
  vertical-align: middle;
}

.monitoring-plan-table thead th:first-child,
.monitoring-plan-table tbody th {
  width: 27%;
  background: #d7d7d7;
  color: var(--ink);
}

.monitoring-plan-table thead th:not(:first-child) {
  color: var(--white);
  font-size: 22px;
}

.monitoring-plan-table thead .plan-s {
  background: var(--sky);
}

.monitoring-plan-table thead .plan-m {
  background: var(--orange);
}

.monitoring-plan-table thead .plan-l {
  background: var(--green);
}

.monitoring-plan-table tr > :last-child {
  border-right: 0;
}

.monitoring-plan-table tbody tr:last-child > * {
  border-bottom: 0;
}

.monitoring-plan-table tbody th {
  font-size: 18px;
}

.monitoring-plan-table small {
  font-size: 13px;
  line-height: 1.3;
}

.monitoring-plan-table td strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  font-size: 22px;
}

.monitoring-plan-table .plan-price {
  font-size: 38px;
  line-height: 1.1;
}

.monitoring-plan-table .plan-price small {
  margin-left: 4px;
  font-size: 16px;
}

.monitoring-plan-table td.plan-s .plan-price {
  color: var(--sky);
}

.monitoring-plan-table td.plan-m .plan-price {
  color: var(--orange);
}

.monitoring-plan-table td.plan-l .plan-price {
  color: var(--green);
}

.plan-check {
  display: inline-grid;
  width: 23px;
  height: 23px;
  margin-right: 8px;
  place-items: center;
  border-radius: 50%;
  vertical-align: -4px;
}

.plan-check::before {
  content: "";
  width: 6px;
  height: 10px;
  margin-top: -2px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.plan-check--orange {
  background: var(--orange);
}

.plan-check--green {
  background: var(--green);
}

.monitoring-price-card {
  overflow: hidden;
  border: 1px solid #39332e;
  background: var(--white);
  text-align: center;
}

.monitoring-price-card header {
  display: grid;
  min-height: 68px;
  place-items: center;
  padding: 12px 18px;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  color: var(--white);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.16em;
}

.monitoring-price-card--blue header {
  background: var(--sky);
}

.monitoring-price-card--green header {
  background: linear-gradient(90deg, var(--green), var(--green-2));
}

.monitoring-price-card__body {
  min-height: 380px;
  padding: 32px 42px 28px;
}

.monitoring-plan-block {
  position: relative;
  margin: 0 0 24px;
  padding: 0 0 26px;
}

.monitoring-plan-block:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px dashed #5a524c;
}

.monitoring-plan-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.monitoring-plan-label {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.monitoring-plan-block strong {
  display: block;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.monitoring-plan-block small {
  display: block;
  margin-top: 5px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.monitoring-comparison {
  padding: 12px 0 104px;
  background: #fbfdff;
}

.comparison-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: min(1060px, 100%);
  margin-top: 34px;
  margin-inline: auto;
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(72, 48, 30, 0.09);
}

.comparison-table {
  width: 100%;
  min-width: 900px;
  border-collapse: separate;
  border-spacing: 0;
  color: var(--ink);
}

.comparison-table th,
.comparison-table td {
  padding: 18px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  vertical-align: middle;
  font-size: 16px;
  line-height: 1.65;
}

.comparison-table th:last-child,
.comparison-table td:last-child {
  border-right: 0;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.comparison-table thead th {
  background: #edf7f1;
  color: var(--green);
  font-size: 18px;
  font-weight: 700;
}

.comparison-table thead th:first-child {
  width: 170px;
  background: #f8fbf9;
  color: var(--muted);
}

.comparison-table thead th small {
  display: inline-block;
  margin-top: 4px;
  color: inherit;
  font-size: 13px;
  font-weight: 700;
  opacity: 0.78;
}

.comparison-table thead th.is-featured {
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  color: var(--white);
}

.comparison-table tbody th {
  background: #f8fbf9;
  color: var(--green);
  text-align: left;
  font-weight: 700;
}

.comparison-table tbody td {
  background: var(--white);
}

.comparison-table tbody td.is-featured {
  background: #fff4ec;
  color: #8f3f15;
}

.comparison-table tbody td.is-featured strong {
  color: var(--orange);
}

.comparison-note {
  margin: 0;
  padding: 16px 20px;
  border-left: 6px solid var(--orange);
  border-radius: 8px;
  background: #fff8f2;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.8;
}

.comparison-image-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

.comparison-image-card {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(72, 48, 30, 0.09);
}

.comparison-image-card img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.comparison-image-card figcaption {
  margin-top: 12px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

.monitoring-price-card__body p {
  margin: 0;
  font-weight: 700;
  line-height: 1.75;
}

.monitoring-price-card .price {
  margin: 0;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.03em;
}

.monitoring-price-card .price span {
  margin-left: 6px;
  font-size: 20px;
  letter-spacing: 0;
}

.monitoring-example {
  padding: 0 0 104px;
}

.monitoring-example__panel {
  width: min(1400px, calc(100% - 40px));
  margin-inline: auto;
  padding: 66px 78px 76px;
  border-radius: 28px;
  background: var(--cream);
}

.monitoring-example__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  margin-top: 34px;
}

.monitoring-example-card {
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--white);
}

.monitoring-example-card h3 {
  margin: 16px 0 12px;
  font-size: 24px;
  line-height: 1.5;
}

.monitoring-example-card .small {
  margin: 0 0 22px;
  color: var(--ink);
  font-weight: 700;
  line-height: 2;
}

.monitoring-example-card dl {
  display: grid;
  gap: 0;
  margin: 0;
  border: 1px solid #d8d0ca;
  font-weight: 700;
}

.monitoring-example-card dl div {
  display: grid;
  grid-template-columns: 160px 1fr;
  border-bottom: 1px solid #d8d0ca;
}

.monitoring-example-card dl div:last-child {
  border-bottom: 0;
}

.monitoring-example-card dt,
.monitoring-example-card dd {
  margin: 0;
  padding: 12px 14px;
}

.monitoring-example-card dt {
  background: #fff6ef;
  color: var(--orange);
}

.support-flyer-panel {
  margin-top: 42px;
  padding-top: 38px;
  border-top: 1px solid rgba(236, 90, 8, 0.22);
}

.support-flyer-panel .lead {
  max-width: 860px;
  margin: 0 0 28px;
  color: var(--ink);
  font-weight: 700;
}

.support-flyer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.support-flyer-card {
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(72, 48, 30, 0.08);
}

.support-flyer-card a {
  display: block;
}

.support-flyer-card a:hover {
  transform: translateY(-2px);
}

.support-flyer-card img {
  width: 100%;
  aspect-ratio: 1 / 1.42;
  border-radius: 4px;
  object-fit: cover;
  object-position: top center;
}

.reform-page .sub-hero {
  height: 500px;
}

.reform-page .sub-hero::after {
  background: rgba(0, 0, 0, 0.18);
}

.reform-page .sub-hero h1 {
  max-width: min(100%, 720px);
  line-break: strict;
  overflow-wrap: anywhere;
}

.reform-intro {
  padding: 58px 0 36px;
}

.reform-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}

.reform-intro__lead {
  margin: 0 auto;
  max-width: 820px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 2.5;
}

.reform-menu {
  padding: 28px 0 96px;
}

.reform-menu__panel {
  width: min(1400px, calc(100% - 40px));
  margin-inline: auto;
  padding: 62px 118px 70px;
  border-radius: 28px;
  background: var(--mint);
}

.reform-menu__panel .section-title {
  margin-top: 0;
  letter-spacing: 0.08em;
}

.reform-menu__panel .lead {
  margin: 0 auto 38px;
  color: var(--green);
  font-size: 18px;
  font-weight: 700;
}

.reform-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 22px;
}

.reform-page .reform-service-card {
  display: grid;
  position: relative;
  width: auto;
  max-width: none;
  align-content: start;
  gap: 14px;
  padding: 18px;
  border: 0;
  border-radius: 0;
  background: var(--white);
  overflow: visible;
}

.reform-service-card .pill {
  position: static;
  min-width: min(240px, calc(100% - 24px));
  justify-self: center;
  transform: none;
}

.reform-service-card img {
  width: 100%;
  height: 168px;
  border-radius: 4px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center bottom;
}

.reform-service-card img[src*="reform-floor-work"] {
  object-position: center top;
}

.reform-service-card .service-card__body {
  padding: 14px 0 0;
}

.reform-service-card h3 {
  margin: 0 0 4px;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
}

.reform-service-card h3 span {
  font-size: 24px;
}

.reform-service-card .small {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.75;
}

.reform-service-card .small strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  line-height: 1.55;
}

.reform-closing {
  width: 100%;
  margin: 44px 0 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
}

.reform-closing h3,
.reform-case-message h3 {
  margin: 0 0 14px;
  font-size: 26px;
  line-height: 1.55;
}

.reform-closing p,
.reform-case-message p {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 2.1;
}

.reform-closing p:last-child,
.reform-case-message p:last-child {
  margin-bottom: 0;
}

.reform-case {
  padding: 8px 0 0;
}

.reform-case .section-title {
  margin-bottom: 2px;
}

.reform-case__band {
  margin-top: 32px;
  padding: 52px 0 68px;
  background: var(--mint);
}

.reform-case__body {
  width: min(1080px, calc(100% - 40px));
}

.reform-case-before,
.reform-case-after {
  display: grid;
  justify-items: center;
}

.reform-case-label {
  display: inline-flex;
  min-width: 180px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin: 0 0 22px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.reform-case-label--after {
  margin-bottom: 18px;
}

.reform-before-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.reform-before-gallery figure {
  margin: 0;
  padding: 18px;
  background: var(--white);
}

.reform-before-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.reform-before-gallery figcaption {
  margin-top: 14px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}

.reform-case-down {
  width: 0;
  height: 0;
  margin: 42px auto 30px;
  border-right: 44px solid transparent;
  border-left: 44px solid transparent;
  border-top: 42px solid var(--green);
}

.reform-case-after {
  width: min(980px, 100%);
  margin-inline: auto;
}

.reform-case-after .section-title {
  margin-top: 0;
  color: var(--green);
}

.reform-case-message {
  width: min(860px, calc(100% - 40px));
  margin: 64px auto 0;
  padding: 0;
}

.reform-case-message h3 {
  color: var(--green);
}

.reform-before-after {
  width: min(900px, calc(100% - 40px));
  gap: 70px;
}

.reform-before-after article {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.reform-before-after .pill {
  min-width: 150px;
  font-size: 18px;
  line-height: 1.2;
}

.reform-plan {
  display: grid;
  width: 100%;
  min-height: 210px;
  place-items: center;
  border-radius: 8px;
  background: var(--white);
}

.reform-plan img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.reform-before-after .small {
  margin: 0;
  color: var(--ink);
  text-align: center;
  font-weight: 700;
  line-height: 1.8;
}

.reform-voice-section {
  padding: 94px 0 80px;
}

.reform-voice {
  width: min(980px, calc(100% - 40px));
}

.reform-voice__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 54px;
  align-items: center;
  margin-top: 34px;
}

.reform-voice__grid p {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 2.4;
}

.reform-voice__photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.reform-voice__photos--single {
  grid-template-columns: 1fr;
}

.reform-voice__photos img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.reform-voice__photos--single img {
  height: 420px;
}

.reform-line {
  padding: 76px 0 104px;
}

.reform-line__header {
  margin-bottom: 34px;
}

.reform-line__header .section-title {
  margin: 8px auto 0;
  text-align: center;
}

.reform-line__inner {
  display: grid;
  grid-template-columns: minmax(320px, 500px) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
  width: min(1120px, calc(100% - 40px));
}

.reform-line__visual {
  position: relative;
  margin: 0;
  overflow: visible;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(72, 48, 30, 0.12);
}

.reform-line__visual::after {
  content: none;
}

.reform-line__visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: contain;
  object-position: center;
}

.reform-line .section-title {
  margin-top: 0;
}

.reform-line .lead {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 2.2;
}

.reform-line__list {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 4px 20px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  color: var(--green);
  font-weight: 700;
}

.reform-line__list li::before {
  content: "・";
}

.reform-page .footer-cta .btn {
  background: linear-gradient(90deg, var(--green), var(--green-2));
}

.price-card {
  overflow: hidden;
  text-align: center;
}

.price-card header {
  padding: 16px;
  background: var(--orange);
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
}

.price-card--blue header {
  background: var(--sky);
}

.price-card--green header {
  background: var(--green);
}

.price-card__body {
  padding: 28px 18px;
}

.price {
  margin: 8px 0 18px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
}

.price span {
  font-size: 18px;
}

.steps {
  display: grid;
  width: min(950px, 100%);
  margin-inline: auto;
  gap: 56px;
}

.about-steps .narrow {
  width: min(1080px, 100%);
}

.step {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding-bottom: 44px;
  border-bottom: 1px solid #5a5652;
}

.step img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  justify-self: center;
}

.about-steps .step h3 {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 24px;
  line-height: 1.45;
  font-weight: 700;
}

.about-steps .step .small {
  max-width: 620px;
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 2;
  font-weight: 700;
}

.about-steps .source-note {
  margin: 8px 0 0;
  color: var(--orange);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.about-addition {
  background: var(--white);
}

.about-frailty {
  padding: 70px 0;
  background: var(--cream);
}

.about-frailty__inner {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(300px, 420px);
  gap: 64px;
  align-items: center;
  width: min(900px, calc(100% - 40px));
}

.about-addition h2 {
  margin: 8px 0 16px;
  font-size: 24px;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0.04em;
  word-break: keep-all;
  overflow-wrap: normal;
}

.about-frailty h2 {
  white-space: nowrap;
}

.about-addition p {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 2.2;
}

.about-frailty__visual {
  margin: 0;
  min-height: 0;
  background: transparent;
}

.about-frailty__visual img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  background: var(--white);
}

.about-reason {
  padding: 70px 0 90px;
}

.about-reason__inner {
  width: min(900px, calc(100% - 40px));
}

.about-guide {
  padding: 0 0 86px;
}

.about-guide__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  width: min(1060px, calc(100% - 40px));
}

.about-guide figure {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(72, 48, 30, 0.08);
}

.about-guide img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.about-guide .comparison-board {
  margin-top: 0;
}

.reason-compare {
  display: grid;
  grid-template-columns: 1fr 28px 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 40px;
}

.reason-card {
  min-height: 250px;
  padding: 26px 28px 24px;
  border-radius: 8px;
  text-align: center;
}

.reason-card--light {
  background: #f1f1f1;
}

.reason-card--brand {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: var(--white);
}

.reason-card h3 {
  margin: 0 0 18px;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
}

.reason-card__visual {
  width: min(300px, 100%);
  height: 200px;
  margin: 0 auto 12px;
  object-fit: cover;
  object-position: center;
  background: #d6d6d6;
}

.reason-card p {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 700;
}

.reason-card p strong {
  display: block;
  margin-bottom: 10px;
  line-height: 1.65;
}

.reason-card--light strong {
  color: var(--orange);
}

.reason-card--brand strong {
  color: var(--white);
}

.reason-arrow {
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 18px solid var(--orange);
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 52px 1fr;
  gap: 32px;
  align-items: center;
  text-align: center;
}

.placeholder {
  min-height: 210px;
  border-radius: 8px;
  background: #e5e5e5;
}

.triangle {
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 25px solid var(--green);
  margin: auto;
}

.post-list {
  width: min(760px, 100%);
  margin: 0 auto;
}

.post-list--wide {
  width: min(1040px, 100%);
}

.blog-archive-lead {
  max-width: 760px;
  margin: -8px auto 32px;
  color: var(--muted);
  text-align: center;
}

.post-card {
  display: grid;
  grid-template-columns: 230px 1fr 32px;
  gap: 28px;
  align-items: center;
  min-height: 150px;
  padding: 22px 0;
  border-width: 0 0 1px;
  border-style: dashed;
  border-radius: 0;
  background: transparent;
}

.post-card img {
  width: 230px;
  height: 112px;
  object-fit: cover;
  border-radius: 4px;
  background: #e5e5e5;
}

.post-card--flyer {
  grid-template-columns: 150px 1fr 32px;
  min-height: 210px;
}

.post-card--flyer img {
  width: 150px;
  height: 200px;
  object-fit: cover;
  object-position: top center;
  box-shadow: 0 10px 24px rgba(72, 48, 30, 0.1);
}

.category-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 38px;
}

.category-filter button,
.category-filter a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 6px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--orange);
  font-weight: 700;
  cursor: pointer;
}

.category-filter .is-active,
.category-filter button:hover,
.category-filter a:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}

.post-category {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-left: 12px;
  padding: 2px 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--orange);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
  color: var(--orange);
  font-weight: 700;
}

.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.pagination a,
.pagination .page-numbers {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
}

.pagination a[aria-current="page"],
.pagination .page-numbers.current {
  background: var(--orange);
  color: var(--white);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.article {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding-bottom: 72px;
}

.article-hero {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  object-fit: cover;
  background: #e5e5e5;
}

.article-hero--flyer {
  width: min(560px, 100%);
  height: auto;
  aspect-ratio: auto;
  margin-inline: auto;
  object-fit: contain;
}

.article .center:last-child {
  margin-top: 56px;
}

.single-jin_news .footer-cta,
.single-jin_blog .footer-cta,
.single-jin_voice .footer-cta,
.single-jin_frailty .footer-cta {
  padding-top: 124px;
}

.article h2 {
  margin-top: 54px;
  font-size: clamp(26px, 3vw, 38px);
}

.text-link {
  color: var(--orange);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.news-detail-layout {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  min-width: 0;
}

.news-detail-photo {
  position: sticky;
  top: 120px;
  margin: 0;
}

.news-detail-photo img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(72, 48, 30, 0.1);
}

.news-detail-body p {
  margin: 0 0 18px;
  font-weight: 700;
  line-height: 2;
  word-break: break-all;
  overflow-wrap: anywhere;
}

.news-detail-body {
  min-width: 0;
}

.case-list {
  display: grid;
  gap: 24px;
}

.case-card {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(72, 48, 30, 0.08);
}

.case-card--link {
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.case-card--link:hover {
  border-color: var(--orange);
  box-shadow: 0 16px 32px rgba(72, 48, 30, 0.12);
  transform: translateY(-2px);
}

.case-card__media {
  display: grid;
  gap: 10px;
}

.case-card__media[href],
.case-card__body h3 a {
  color: inherit;
  text-decoration: none;
}

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

.case-card__media img {
  width: 100%;
  height: 190px;
  border-radius: 4px;
  object-fit: cover;
}

.case-card__media--pair img {
  height: 160px;
}

.case-card__body h3 {
  margin: 14px 0 8px;
  font-size: 24px;
  line-height: 1.5;
}

.case-card__body .small {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.9;
}

.case-card__body .text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--orange);
  font-weight: 700;
}

.room-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 54px;
  align-items: center;
}

.room-detail--event {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
}

.room-detail__flyer {
  margin: 0;
}

.room-detail__flyer img {
  width: 100%;
  max-height: 720px;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 16px 36px rgba(72, 48, 30, 0.12);
}

.room-update-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.room-update-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.room-update-card img,
.room-update-card .video-box {
  width: 150px;
  height: 150px;
  border-radius: 4px;
  object-fit: cover;
  object-position: top center;
}

.room-update-card h3 {
  margin: 10px 0 8px;
  font-size: 22px;
  line-height: 1.45;
}

.room-update-card .small {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.frailty-video-list {
  display: grid;
  gap: 42px;
  width: min(820px, 100%);
  margin: 34px auto 0;
}

.frailty-video-card {
  display: grid;
  gap: 14px;
}

.frailty-video-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  letter-spacing: 0.08em;
}

.frailty-video-card h3 a {
  color: inherit;
  text-decoration: none;
}

.frailty-video-card .date {
  margin: 0;
}

.frailty-video-card .small {
  margin: 0;
  font-weight: 700;
  line-height: 1.8;
}

.frailty-video-thumb {
  display: block;
}

.frailty-video-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  object-fit: cover;
}

.frailty-video-card .video-box {
  min-height: 260px;
}

.video-box {
  display: grid;
  min-height: 310px;
  place-items: center;
  border-radius: 4px;
  background: #ddd;
  color: #777;
  font-weight: 700;
}

.form {
  display: grid;
  gap: 20px;
  width: min(760px, 100%);
  margin: 0 auto;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  background: var(--white);
}

.field textarea {
  min-height: 180px;
  resize: vertical;
}

.form-message {
  min-height: 28px;
  color: var(--green);
  font-weight: 700;
}

.contact-form-embed {
  width: min(760px, 100%);
  min-height: 180px;
  margin: 30px auto 0;
  padding: 26px;
  border: 2px dashed var(--line);
  border-radius: 8px;
  background: #fffaf6;
}

@media (max-width: 900px) {
  .site-header {
    top: 18px;
  }

  .nav {
    position: fixed;
    inset: 82px 20px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 8px;
    padding: 14px;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    justify-content: center;
  }

  .nav-item,
  .nav-service {
    display: grid;
    width: 100%;
  }

  .nav-item::after,
  .nav-service::after {
    display: none;
  }

  .nav-submenu,
  .nav-service__menu {
    position: static;
    width: 100%;
    min-width: 0;
    margin-top: 6px;
    padding: 6px;
    border-radius: 8px;
    background: #fff7f1;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: none;
  }

  .nav-submenu a,
  .nav-service__menu a {
    justify-content: center;
    white-space: normal;
  }

  .menu-button {
    display: block;
    position: fixed;
    z-index: 20;
    top: 28px;
    right: 20px;
  }

  .logo {
    width: 118px;
  }

  .hero,
  .hero-content {
    min-height: 660px;
  }

  .vertical-copy {
    margin-left: 0;
  }

  .grid--3,
  .grid--2,
  .split,
  .room-cta__inner,
  .footer-grid,
  .contact-banners,
  .before-after,
  .about-frailty__inner,
  .about-guide__inner,
  .reason-compare,
  .customer-voice-grid,
  .customer-story-grid,
  .customer-service-grid,
  .comparison-board,
  .comparison-image-grid,
  .support-flyer-grid,
  .monitoring-service__grid,
  .monitoring-plan__grid,
  .monitoring-example__grid,
  .company-overview__inner,
  .reform-service-grid,
  .reform-before-gallery,
  .reform-voice__grid,
  .reform-line__inner,
  .room-detail,
  .room-update-grid,
  .room-update-card,
  .case-card,
  .news-detail-layout {
    grid-template-columns: 1fr;
  }

  .monitoring-page .sub-hero {
    height: 360px;
  }

  .monitoring-page .sub-hero h1 {
    width: min(100%, 330px);
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .monitoring-page .sub-hero h1 span {
    display: block;
  }

  .monitoring-service__panel,
  .monitoring-example__panel {
    padding: 42px 24px;
  }

  .monitoring-service-card {
    margin-inline: auto;
  }

  .monitoring-options {
    border-radius: 20px;
  }

  .monitoring-price-card {
    width: min(340px, 100%);
    margin-inline: auto;
  }

  .monitoring-plan-table-wrap {
    overflow-x: auto;
    border-radius: 8px;
  }

  .monitoring-plan-table {
    min-width: 700px;
  }

  .comparison-table {
    min-width: 820px;
  }

  .monitoring-example-card dl div {
    grid-template-columns: 1fr;
  }

  .customer-voice-panel {
    padding: 42px 24px;
  }

  .customer-voice-card {
    overflow-x: auto;
  }

  .customer-voice-table {
    min-width: 520px;
  }

  .customer-story-card {
    min-height: auto;
  }

  .customer-service-block {
    border-right: 0;
    border-bottom: 1px solid var(--voice-color);
  }

  .customer-service-block:last-child {
    border-bottom: 0;
  }

  .reform-page .sub-hero {
    height: 360px;
  }

  .reform-page .sub-hero h1 {
    width: min(100%, 330px);
  }

  .reform-menu__panel {
    padding: 38px 24px;
  }

  .reform-before-after {
    gap: 26px;
  }

  .reform-before-gallery img {
    height: 220px;
  }

  .reform-voice__grid,
  .reform-line__inner {
    width: calc(100vw - 40px);
    gap: 28px;
  }

  .reform-voice__photos img {
    height: 260px;
  }

  .reform-voice__photos--single img {
    height: 320px;
  }

  .reform-line__visual {
    width: min(520px, 100%);
    height: auto;
    margin-inline: auto;
  }

  .about-frailty,
  .about-reason {
    padding: 56px 0;
  }

  .about-guide {
    padding-bottom: 56px;
  }

  .about-frailty h2 {
    white-space: normal;
  }

  .about-frailty__inner,
  .about-reason__inner {
    width: calc(100vw - 40px);
  }

  .about-frailty__visual {
    min-height: 180px;
  }

  .reason-compare {
    gap: 24px;
    margin-top: 28px;
  }

  .reason-card {
    min-height: auto;
    padding: 24px;
  }

  .reason-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }

  .room-cta__inner {
    grid-template-rows: auto;
    height: auto;
    overflow: visible;
  }

  .room-cta__copy {
    height: auto;
  }

  .room-cta__image {
    height: auto;
    min-height: 180px;
    clip-path: none;
  }

  .photo-stack {
    min-height: 280px;
  }

  .step,
  .post-card,
  .blog-row,
  .news-item {
    grid-template-columns: 1fr;
  }

  .post-card img,
  .blog-row img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 8;
  }

  .post-card--flyer img {
    width: min(240px, 100%);
    height: auto;
    aspect-ratio: 1 / 1.35;
    justify-self: start;
  }

  .case-card__media img,
  .case-card__media--pair img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .news-detail-photo {
    position: static;
  }

  .room-update-card img,
  .room-update-card .video-box {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .triangle {
    transform: rotate(90deg);
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  h1,
  h2,
  h3,
  p,
  a {
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .section-title,
  .lead {
    width: min(100%, 340px);
  }

  .problem-card,
  .service-card,
  .voice-card,
  .price-card,
  .post-card {
    max-width: calc(100vw - 28px);
  }

  .problem-card,
  .service-card,
  .voice-card,
  .price-card,
  .post-card {
    width: calc(100vw - 28px);
  }

  .problem-card {
    padding-right: 14px;
    padding-left: 14px;
  }

  .problem-card h3 {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .problem-card h3 span {
    width: 100%;
    margin-left: 0;
    transform: none;
  }

  .problem-card h3 .fit-line {
    width: 100%;
    margin-left: 0;
    transform: none;
  }

  .customer-voice-panel {
    width: calc(100vw - 28px);
    padding: 30px 14px;
    border-radius: 20px;
  }

  .customer-voice-intro {
    grid-template-columns: 78px 1fr;
    gap: 12px;
  }

  .customer-voice-intro img {
    width: 78px;
    height: 94px;
  }

  .customer-voice-card {
    padding: 18px 14px;
  }

  .customer-voice-summary {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .customer-story-card {
    padding: 22px 16px;
  }

  .customer-story-body,
  .customer-use-head {
    grid-template-columns: 1fr;
  }

  .customer-story-body img,
  .customer-use-head img {
    justify-self: start;
  }

  .customer-service-block p {
    font-size: 15px;
  }

  .company-overview__list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .about-guide figure {
    padding: 8px;
  }

  .blog-preview__circles {
    height: 180px;
  }

  .blog-preview__circles img:first-child {
    left: 46%;
    width: 118px;
    height: 118px;
  }

  .blog-preview__circles img:last-child {
    top: 82px;
    left: 20%;
    width: 78px;
    height: 78px;
  }

  .section {
    padding: 64px 0;
  }

  .sub-hero {
    height: 300px;
  }

  .menu-button {
    right: auto;
    left: min(322px, calc(100vw - 66px));
  }

  .vertical-copy span {
    min-height: 190px;
    font-size: 22px;
  }

  .hero-note {
    font-size: 18px;
    width: min(100%, 330px);
  }

  .voice-band,
  .feature-panel {
    padding: 26px;
  }

  .monitoring-service__panel,
  .monitoring-example__panel {
    width: calc(100vw - 28px);
    padding: 34px 16px;
    border-radius: 20px;
  }

  .monitoring-kicker {
    width: min(100%, 340px);
    max-width: 340px;
    margin-inline: auto;
    line-height: 1.8;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .monitoring-kicker span {
    display: block;
  }

  .monitoring-intro__lead,
  .monitoring-service__panel .lead {
    width: min(100%, 300px);
    max-width: 300px;
    margin-inline: auto;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .monitoring-service__panel .lead {
    max-width: 280px;
  }

  .monitoring-service-card {
    width: min(280px, 100%);
  }

  .monitoring-options {
    display: grid;
    justify-content: flex-start;
    justify-items: start;
    padding: 14px 18px;
  }

  .monitoring-options--panel {
    grid-template-columns: 1fr;
    justify-items: stretch;
    width: min(320px, 100%);
  }

  .reform-menu__panel {
    width: calc(100vw - 28px);
    padding: 30px 16px;
    border-radius: 20px;
  }

  .reform-kicker {
    display: block;
    width: min(100%, 300px);
    margin-inline: auto;
    white-space: normal;
    word-break: break-all;
    overflow-wrap: anywhere;
    font-size: 17px;
    text-align: center;
  }

  .reform-intro__lead,
  .blog-archive-lead,
  .frailty-video-list + .lead {
    width: min(100%, 300px);
    max-width: 300px;
    margin-inline: auto;
    font-size: 16px;
    line-height: 2.15;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .category-filter button,
  .category-filter a {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
    min-height: 34px;
    padding: 5px 14px;
    font-size: 16px;
  }

  .reform-service-card img {
    height: 150px;
  }

  .reform-voice__photos {
    gap: 10px;
  }

  .reform-voice__photos img {
    height: 220px;
  }

  .reform-voice__photos--single img {
    height: 260px;
  }

  .reform-line__visual {
    height: auto;
  }

  .reform-line__list {
    grid-template-columns: 1fr 1fr;
  }

  .comparison-table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .comparison-table,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table th,
  .comparison-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .comparison-table thead {
    display: none;
  }

  .comparison-table tbody {
    display: grid;
    gap: 12px;
  }

  .comparison-table tbody tr {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 12px 26px rgba(72, 48, 30, 0.08);
  }

  .comparison-table tbody th {
    padding: 12px 14px;
    border-right: 0;
    background: #edf7f1;
    text-align: center;
  }

  .comparison-table tbody td {
    position: relative;
    min-height: 64px;
    padding: 12px 12px 12px 132px;
    border-right: 0;
    text-align: left;
    font-size: 14px;
  }

  .comparison-table tbody td::before {
    position: absolute;
    top: 13px;
    left: 12px;
    width: 106px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
  }

  .comparison-table tbody td:nth-of-type(1)::before {
    content: "みまわりジンちゃん";
    color: var(--orange);
  }

  .comparison-table tbody td:nth-of-type(2)::before {
    content: "A社";
  }

  .comparison-table tbody td:nth-of-type(3)::before {
    content: "B社";
  }

  .comparison-table tbody td:nth-of-type(4)::before {
    content: "C社";
  }

  .comparison-table tbody tr:last-child th,
  .comparison-table tbody tr:last-child td {
    border-bottom: 1px solid var(--line);
  }

  .comparison-table tbody tr td:last-child {
    border-bottom: 0;
  }

  .article--news-detail {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    overflow: hidden;
  }

  .news-detail-layout,
  .news-detail-body,
  .news-detail-body p {
    width: 100%;
    max-width: 300px;
  }

  .news-detail-body p {
    font-size: 16px;
    line-height: 2;
  }

  .footer-cta {
    padding-top: 64px;
  }
}

h2,
h2.section-title,
.room-cta__copy h2,
.article h2 {
  font-size: 32px;
}

@media (max-width: 900px) {
  h2,
  h2.section-title,
  .room-cta__copy h2,
  .article h2 {
    font-size: 24px;
  }
}


