:root {
  --ink: #243b36;
  --muted: #6e7e79;
  --green: #2e665b;
  --deep-green: #214e46;
  --mint: #e8f2ee;
  --cream: #f7f5ef;
  --line: rgba(46, 102, 91, 0.16);
  --accent: #c4965a;
  --serif: "Shippori Mincho", "Yu Mincho", serif;
  --sans: "Noto Sans JP", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.9;
}

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

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

.container {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 120px 0;
}

.site-header {
  position: fixed;
  z-index: 10;
  width: 100%;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(46, 102, 91, .09);
  transition: box-shadow .3s;
}

.site-header.scrolled {
  box-shadow: 0 8px 24px rgba(36, 59, 54, .08);
}

.header-inner {
  display: flex;
  height: 86px;
  align-items: center;
  padding: 0 0vw;
  gap: 42px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  margin-left: 20px;
}

.logo-mark {
  position: relative;
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  color: white;
  background: linear-gradient(145deg, var(--deep-green), var(--green));
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16);
}

.logo-mark svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.55;
}

.logo-mark .logo-mark-accent {
  stroke: var(--accent);
}

.logo strong {
  display: block;
  color: var(--deep-green);
  font-family: var(--serif);
  font-size: 21px;
  letter-spacing: .08em;
  line-height: 1.2;
}

.logo small {
  display: block;
  color: var(--green);
  font-size: 8px;
  letter-spacing: .16em;
}

.desktop-nav {
  display: flex;
  gap: 28px;
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
}

.desktop-nav a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  content: "";
  background: var(--green);
  transition: width .25s;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.header-contact {
  align-self: stretch;
  display: flex;
  min-width: 230px;
  flex-direction: column;
  justify-content: center;
  padding: 0 30px;
  color: white;
  background: var(--green);
}

.header-contact span {
  font-size: 11px;
}

.header-contact strong {
  font-size: 19px;
  letter-spacing: .06em;
  line-height: 1.35;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 780px;
  padding-top: 86px;
  overflow: hidden;
  background: #edf4f0;
}

.hero-bg {
  position: absolute;
  inset: 86px 0 0 39%;
  background: linear-gradient(90deg, rgba(237, 244, 240, .35), rgba(237, 244, 240, 0)), url("assets/1.jpg") center/cover;
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, #edf4f0 0%, transparent 28%);
}

.hero-inner {
  position: relative;
  display: flex;
  min-height: 694px;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
  padding-bottom: 20px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.5;
}

h1 {
  font-size: clamp(48px, 5vw, 75px);
}

.hero h1 {
  font-size: clamp(39px, 4.2vw, 64px);
}

h1 em,
h2 em {
  color: var(--green);
  font-style: normal;
}

.hero-text {
  margin: 27px 0 34px;
  color: #435a55;
  line-height: 2.1;
}

.hero-actions {
  display: flex;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 35px;
  padding: 0 24px;
  font-size: 13px;
  font-weight: 600;
  transition: transform .25s, background .25s;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  min-width: 210px;
  color: white;
  background: var(--green);
}

.button-primary:hover {
  background: var(--deep-green);
}

.button-ghost {
  border: 1px solid rgba(46, 102, 91, .3);
}

.hero-hours {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  width: min(650px, 55vw);
  align-items: center;
  justify-content: space-between;
  padding: 23px 52px;
  color: white;
  background: var(--deep-green);
}

.hero-hours div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 18px;
}

.hero-hours .hours-label {
  width: 100%;
  color: #b8d4cd;
  font-size: 11px;
  letter-spacing: .14em;
}

.hero-hours strong {
  font-size: 16px;
  letter-spacing: .06em;
}

.hero-hours small {
  color: #b8d4cd;
  font-size: 11px;
}

.hero-hours a {
  font-size: 12px;
  font-weight: 600;
}

.scroll-guide {
  position: absolute;
  bottom: 14px;
  left: 22px;
  color: var(--green);
  font-size: 9px;
  letter-spacing: .2em;
  writing-mode: vertical-rl;
}

.scroll-guide span {
  display: inline-block;
  width: 1px;
  height: 44px;
  margin-top: 10px;
  background: var(--green);
}

.notice {
  background: var(--cream);
}

.notice-inner {
  display: flex;
  min-height: 75px;
  align-items: center;
  gap: 20px;
  font-size: 13px;
}

.notice-tag {
  color: var(--green);
  font-weight: 700;
  letter-spacing: .16em;
}

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

.notice p {
  margin: 0;
}

.notice a {
  margin-left: auto;
  color: var(--green);
}

.intro-grid {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 8%;
  align-items: center;
}

.intro-highlight {
  position: relative;
  display: grid;
  min-height: 520px;
  align-content: space-between;
  padding: 42px;
  overflow: hidden;
  color: white;
  background: var(--deep-green);
}

.intro-highlight::before {
  position: absolute;
  top: -76px;
  right: -52px;
  width: 230px;
  height: 230px;
  content: "";
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
}

.intro-highlight::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 44%;
  content: "";
  background: rgba(196, 150, 90, .2);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.intro-highlight-main,
.intro-highlight-list {
  position: relative;
  z-index: 1;
}

.intro-highlight-main>span {
  display: inline-block;
  margin-bottom: 26px;
  color: #b8d4cd;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
}

.intro-highlight-main strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 43px);
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.55;
}

.intro-highlight-main p {
  max-width: 430px;
  margin: 24px 0 0;
  color: #d4e5e1;
  font-size: 13px;
  line-height: 2;
}

.intro-highlight-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .18);
  border-left: 1px solid rgba(255, 255, 255, .18);
}

.intro-highlight-list div {
  min-height: 118px;
  padding: 18px 16px;
  border-right: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.intro-highlight-list span {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.intro-highlight-list strong {
  display: block;
  margin-top: 7px;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.45;
}

.intro-highlight-list small {
  display: block;
  margin-top: 4px;
  color: #b8d4cd;
  font-size: 11px;
  line-height: 1.7;
}

h2 {
  font-size: clamp(31px, 3.1vw, 46px);
}

.intro-content>p:not(.section-kicker) {
  margin: 28px 0;
  color: var(--muted);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.feature-list div {
  padding: 18px 12px 0 0;
}

.feature-list span {
  display: block;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
}

.feature-list strong {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.7;
}

.concerns {
  background: var(--cream);
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading.center {
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 14px;
}

.section-heading p:last-child {
  margin: 0;
  color: var(--muted);
}

.concern-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.concern-grid article {
  position: relative;
  min-height: 260px;
  padding: 30px 23px;
  background: white;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: transform .3s, box-shadow .3s;
}

.concern-grid article:hover {
  z-index: 1;
  transform: translateY(-7px);
  box-shadow: 0 14px 35px rgba(36, 59, 54, .1);
}

.concern-number {
  color: var(--accent);
  font-size: 20px;
  font-weight: 700;
}

.line-icon {
  display: flex;
  width: 54px;
  height: 54px;
  align-items: center;
  margin: 25px 0 17px;
  color: var(--green);
}

.line-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.line-icon .icon-accent {
  stroke: var(--accent);
}

.concern-grid h3,
.flow-grid h3 {
  margin: 0 0 9px;
  color: var(--deep-green);
  font-family: var(--serif);
  font-size: 19px;
}

.concern-grid p,
.flow-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.menu {
  background: #edf4f0;
}

.menu-list {
  display: grid;
  gap: 18px;
}

.menu-item {
  display: grid;
  grid-template-columns: 36% 1fr;
  height: 320px;
  background: white;
  box-shadow: 0 7px 20px rgba(36, 59, 54, .045);
}

.menu-image {
  position: relative;
  overflow: hidden;
  height: 100%;
  background: linear-gradient(135deg, #dbe9e5, #b9d2cc);
}

.menu-image::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--green);
  content: "ON-SITE BODY CARE";
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
}

.menu-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .45s;
}

.menu-image img.image-load-failed {
  opacity: 0;
}

.menu-item:hover img {
  transform: scale(1.06);
}

.menu-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 38px;
}

.menu-content span {
  color: var(--accent);
  font-size: 22px;
  font-weight: 700;
}

.menu-content h3 {
  margin: 2px 0 7px;
  font-family: var(--serif);
  font-size: 24px;
}

.menu-content p {
  margin: 0 0 15px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.menu-details {
  display: grid;
  gap: 7px;
  margin: 0 0 15px;
}

.menu-details div {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.menu-details dt {
  min-width: 63px;
  padding: 1px 7px;
  color: var(--green);
  background: var(--mint);
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}

.menu-details dd {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.menu-content a {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}

.price-plans {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.price-plans::before {
  position: absolute;
  top: -135px;
  right: -95px;
  width: 330px;
  height: 330px;
  content: "";
  border: 1px solid rgba(196, 150, 90, .17);
  border-radius: 50%;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 28px 25px 22px;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(46, 102, 91, .13);
  box-shadow: 0 9px 26px rgba(36, 59, 54, .055);
  transition: transform .3s, box-shadow .3s;
}

.price-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 38px rgba(36, 59, 54, .1);
}

.price-card.featured {
  border-top: 4px solid var(--accent);
  padding-top: 25px;
}

.price-rank {
  display: flex;
  width: 74px;
  height: 74px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 19px;
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 50%;
}

.price-rank small {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
}

.price-rank strong {
  font-family: var(--serif);
  font-size: 33px;
  line-height: 1.18;
}

.price-for {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 12px;
}

.price-card h3 {
  min-height: 64px;
  margin: 0 0 9px;
  color: var(--deep-green);
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.45;
}

.price-description {
  margin: 0 0 17px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 7px;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.regular-price {
  color: #8b9794;
  font-size: 12px;
  text-decoration: line-through;
}

.price-arrow {
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
}

.price-row strong {
  color: #d96b5e;
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1;
}

.price-row strong small {
  display: inline-block;
  margin-left: 3px;
  font-size: 17px;
}

.price-card>a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding: 10px 0 0;
  color: var(--green);
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
}

.price-note {
  margin: 19px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.doctor {
  background: white;
}

.doctor-grid {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 9%;
  align-items: center;
}

.doctor-photo {
  position: relative;
}

.doctor-photo::before {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 40%;
  height: 40%;
  content: "";
  border-top: 1px solid var(--accent);
  border-left: 1px solid var(--accent);
}

.doctor-photo img {
  position: relative;
  width: 100%;
  aspect-ratio: .87;
  object-fit: cover;
  object-position: center top;
}

.doctor-copy>p:not(.section-kicker) {
  margin: 22px 0;
  color: var(--muted);
}

.doctor-sign {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.doctor-sign span {
  color: var(--muted);
  font-size: 12px;
}

.doctor-sign strong {
  display: block;
  font-family: var(--serif);
  font-size: 21px;
  letter-spacing: .1em;
}

.flow {
  background: var(--cream);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.flow-grid article {
  position: relative;
  min-height: 202px;
  padding: 35px 27px;
  background: white;
}

.flow-grid span {
  display: block;
  margin-bottom: 24px;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 27px;
}

.contact {
  background: #edf4f0;
}

.contact-form {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: 42px 54px;
  background: white;
  box-shadow: 0 14px 35px rgba(36, 59, 54, .07);
}

.form-row {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 22px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.form-row label {
  padding-top: 10px;
  color: var(--deep-green);
  font-size: 13px;
  font-weight: 700;
}

.form-row label span {
  margin-left: 7px;
  padding: 2px 6px;
  color: white;
  background: var(--accent);
  font-size: 9px;
  font-weight: 600;
}

.form-row label small {
  margin-left: 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 11px 13px;
  color: var(--ink);
  border: 1px solid rgba(46, 102, 91, .22);
  border-radius: 0;
  outline: none;
  background: #fcfdfc;
  font: inherit;
  font-size: 13px;
  transition: border-color .2s, box-shadow .2s;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46, 102, 91, .1);
}

.form-submit {
  padding-top: 27px;
  text-align: center;
}

.form-submit .button {
  border: 0;
  cursor: pointer;
}

.form-submit p {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
}

.site-footer {
  color: #d9e9e5;
  background: #1c403a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 10%;
  padding: 70px 0 55px;
}

.footer-logo .logo-mark {
  background: #dbe9e5;
  color: var(--deep-green);
}

.footer-logo strong {
  color: white;
}

.footer-logo small {
  color: #aec8c2;
}

.footer-grid p {
  margin: 22px 0 9px;
  color: #bbd0cc;
  font-size: 13px;
}

.hours-table>strong {
  display: block;
  margin-bottom: 12px;
  color: white;
  font-family: var(--serif);
  letter-spacing: .1em;
}

table {
  width: 100%;
  border-collapse: collapse;
  color: #d9e9e5;
  font-size: 12px;
  text-align: center;
}

th,
td {
  padding: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

th {
  font-weight: 500;
}

td:first-child {
  text-align: left;
}

.hours-table small {
  display: block;
  margin-top: 10px;
  color: #aec8c2;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 0;
  color: #94b2ac;
  font-size: 9px;
  letter-spacing: .09em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.subpage-hero {
  padding: 170px 0 70px;
  background: linear-gradient(90deg, #edf4f0, #f7f5ef);
}

.subpage-hero h1 {
  margin: 8px 0 0;
  color: var(--deep-green);
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.2;
}

.company-section {
  background: #fcfdfc;
}

.company-panel {
  max-width: 880px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--line);
}

.company-table {
  color: var(--ink);
  font-size: 15px;
  text-align: left;
}

.company-table th,
.company-table td {
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

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

.company-table th {
  width: 190px;
  color: var(--green);
  font-weight: 700;
  white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {

  .desktop-nav,
  .header-contact {
    display: none;
  }

  .header-inner {
    height: 72px;
    padding: 0 22px;
  }

  .logo-mark {
    width: 42px;
    height: 42px;
  }

  .logo strong {
    font-size: 18px;
  }

  .menu-toggle {
    display: flex;
    width: 34px;
    height: 30px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--green);
    transition: transform .25s, opacity .25s;
  }

  .menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-nav {
    position: absolute;
    top: 72px;
    display: flex;
    width: 100%;
    max-height: 0;
    flex-direction: column;
    overflow: hidden;
    background: white;
    box-shadow: 0 15px 20px rgba(36, 59, 54, .08);
    transition: max-height .35s;
  }

  .mobile-nav.open {
    max-height: 340px;
  }

  .mobile-nav a {
    padding: 12px 24px;
    border-top: 1px solid var(--line);
    font-size: 13px;
  }

  .mobile-nav .mobile-contact {
    color: white;
    background: var(--green);
    font-weight: 700;
  }

  .hero {
    min-height: 700px;
    padding-top: 72px;
  }

  .hero-bg {
    inset: 72px 0 0 0;
    opacity: .29;
  }

  .hero-bg::after {
    background: linear-gradient(90deg, #edf4f0 10%, rgba(237, 244, 240, .35));
  }

  .hero-inner {
    min-height: 620px;
  }

  .hero-hours {
    width: calc(100% - 20px);
    padding: 18px 20px;
  }

  .hero-hours a {
    display: none;
  }

  .scroll-guide {
    display: none;
  }

  .section {
    padding: 82px 0;
  }

  .intro-grid,
  .doctor-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .intro-highlight {
    min-height: auto;
    padding: 34px;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .feature-list div {
    padding-bottom: 14px;
  }

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

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

  .price-card {
    min-height: auto;
  }

  .price-card h3 {
    min-height: auto;
  }

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

@media (max-width: 560px) {
  .container {
    width: min(100% - 34px, 1160px);
  }
  .hero {
    min-height: 760px;
  }

  .hero-inner {
    min-height: 680px;
    align-items: flex-start;
    padding-top: 68px;
    padding-bottom: 100px;
  }

  h1 {
    font-size: 38px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-text {
    font-size: 13px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 260px);
  }

  .button {
    width: 100%;
    min-height: 51px;
  }

  .hero-hours {
    left: 6px;
    right: auto;
    width: calc(100% - 12px);
  }

  .hero-hours strong {
    font-size: 14px;
  }

  .hero-hours small {
    font-size: 9px;
  }

  .notice-inner {
    gap: 9px;
    font-size: 11px;
  }

  .notice-inner p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .intro-highlight {
    padding: 28px 22px;
  }

  .intro-highlight-main strong {
    font-size: 28px;
  }

  .intro-highlight-main p {
    font-size: 12px;
  }

  .intro-highlight-list {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .intro-highlight-list div {
    min-height: auto;
    padding: 15px 14px;
  }

  .intro-highlight-list span {
    font-size: 15px;
  }

  .intro-highlight-list strong {
    font-size: 19px;
  }

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

  .concern-grid article {
    min-height: auto;
  }

  .concern-number {
    font-size: 17px;
  }

  .menu-item {
    grid-template-columns: 1fr;
    height: auto;
  }

  .menu-image img {
    min-height: 0;
    max-height: none;
  }

  .menu-image {
    height: 220px;
  }

  .menu-content {
    padding: 22px;
  }

  .menu-content span {
    font-size: 22px;
    line-height: 1.2;
  }

  .price-card {
    padding: 23px 20px 18px;
  }

  .price-card.featured {
    padding-top: 20px;
  }

  .price-rank {
    width: 76px;
    height: 76px;
    margin-bottom: 14px;
  }

  .price-rank small {
    font-size: 8px;
  }

  .price-rank strong {
    font-size: 34px;
  }

  .price-card h3 {
    font-size: 21px;
  }

  .price-row strong {
    font-size: 34px;
  }

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

  .flow-grid article {
    min-height: auto;
    padding: 24px;
  }

  .flow-grid span {
    font-size: 36px;
    margin-bottom: 7px;
  }

  .contact-form {
    padding: 26px 21px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .form-row label {
    padding-top: 0;
  }

  .footer-grid {
    padding-top: 52px;
  }

  table {
    font-size: 10px;
  }

  th,
  td {
    padding: 5px 3px;
  }

  .subpage-hero {
    padding: 125px 0 48px;
  }

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

  .company-table {
    font-size: 14px;
  }

  .company-table th {
    padding: 18px 20px 4px;
  }

  .company-table td {
    padding: 0 20px 18px;
  }

  .footer-bottom .container {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .footer-links {
    justify-content: flex-start;
  }
    .login {
    margin-left:0px;
  }
}
