:root {
  --paper: #fffaf2;
  --white: #ffffff;
  --ink: #26312f;
  --muted: #71807b;
  --line: #eadfcb;
  --green: #1f8f49;
  --green-deep: #27604f;
  --green-soft: #edf8ef;
  --gold: #d9a514;
  --gold-soft: #fff3c9;
  --blue: #146ee8;
  --blue-soft: #eaf3ff;
  --red: #e93c45;
  --red-soft: #fff0f0;
  --orange: #ff8732;
  --orange-soft: #fff1e4;
  --rose: #fff0eb;
  --shadow: 0 18px 60px rgba(38, 49, 47, 0.12);
  --radius: 8px;
  --header-height: 72px;
  font-family:
    "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    Meiryo,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.75;
  letter-spacing: 0;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px clamp(18px, 5vw, 56px);
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid rgba(220, 229, 223, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-logo {
  width: 38px;
  height: 48px;
  flex: 0 0 38px;
  object-fit: contain;
  border-radius: 8px;
  background: transparent;
}

.brand-name,
.brand-sub {
  display: block;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.1;
  color: #1f4f93;
}

.brand-sub {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.text-link {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.inline-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.section {
  padding: 72px clamp(20px, 5vw, 72px);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height) - 28px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 34px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.94), rgba(255, 250, 242, 0.74) 52%, rgba(255, 250, 242, 0.38)),
    linear-gradient(90deg, rgba(255, 250, 242, 0.98), rgba(255, 250, 242, 0.76) 55%, rgba(255, 250, 242, 0.16));
}

.hero::after {
  display: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
}

.eyebrow {
  margin: 0 0 12px;
  color: #a98210;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Hiragino Mincho ProN", serif;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: 0;
}

h1 {
  max-width: 12em;
  font-size: clamp(32px, 9vw, 74px);
}

h2 {
  font-size: clamp(29px, 8vw, 50px);
}

h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
}

.hero-lead {
  max-width: 670px;
  margin: 22px 0 0;
  color: #42514c;
  font-size: 16px;
}

.hero-actions,
.header-actions,
.apply-copy {
  align-items: center;
}

.hero-actions {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(33, 51, 47, 0.14);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-deep), var(--green));
}

.button-line {
  color: var(--green-deep);
  background: var(--green-soft);
  border-color: #c9ded4;
}

.button-small {
  min-height: 38px;
  padding: 9px 12px;
  font-size: 13px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 24px 0 0;
}

.hero-facts div {
  min-width: 0;
  padding: 14px 10px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(38, 49, 47, 0.07);
}

.hero-facts dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.hero-facts dd {
  margin: 3px 0 0;
  font-weight: 800;
}

.hero-event-card {
  display: grid;
  gap: 10px;
  width: min(100%, 680px);
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(31, 143, 73, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 38px rgba(38, 49, 47, 0.08);
}

.hero-event-card p {
  margin: 0;
  color: #42514c;
  font-size: 13px;
}

.hero-event-kicker {
  color: var(--green-deep) !important;
  font-size: 12px !important;
  font-weight: 900;
}

.hero-event-options {
  display: grid;
  gap: 8px;
}

.hero-event-options span {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: var(--green-soft);
  color: var(--green-deep);
  font-size: 14px;
  font-weight: 900;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  overflow: hidden;
  background: var(--white);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.04) brightness(1.03);
}

.visual-story {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.visual-story-grid {
  display: grid;
  gap: 18px;
}

.story-figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.story-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.story-figure-large img {
  aspect-ratio: 1.35 / 1;
  object-position: center center;
}

.story-figure figcaption {
  padding: 18px;
  color: var(--muted);
  font-size: 14px;
}

.story-figure figcaption span {
  display: block;
  margin-bottom: 4px;
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 700;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.section-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
}

.philosophy {
  background:
    linear-gradient(90deg, rgba(255, 243, 201, 0.58), transparent 34%),
    var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.philosophy-layout {
  display: grid;
  gap: 30px;
  align-items: center;
}

.philosophy-symbol {
  width: min(100%, 260px);
  margin: 0;
  justify-self: center;
}

.philosophy-symbol img {
  width: 100%;
  border-radius: var(--radius);
  filter: drop-shadow(0 20px 34px rgba(38, 49, 47, 0.08));
}

.philosophy-body {
  display: grid;
  gap: 18px;
  max-width: 820px;
  color: #42514c;
}

.philosophy-body p {
  margin: 0;
}

.future-vision {
  padding: 20px 22px;
  border-left: 4px solid rgba(217, 165, 20, 0.72);
  background: rgba(255, 255, 255, 0.62);
  color: #31413c;
  font-weight: 700;
}

.vision-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.vision-strip span {
  min-height: 64px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--green-deep);
  font-weight: 900;
}

.team-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(91, 181, 111, 0.12), transparent 24%),
    linear-gradient(180deg, #fffdf8, var(--paper));
}

.team-grid {
  display: grid;
  gap: 14px;
}

.team-item {
  position: relative;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.team-item::before {
  content: "";
  width: 36px;
  height: 6px;
  display: block;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--green);
}

.team-item:nth-child(2)::before {
  background: var(--gold);
}

.team-item:nth-child(3)::before {
  background: var(--blue);
}

.team-item p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.activity-grid,
.reassurance-grid,
.future-grid {
  display: grid;
  gap: 14px;
}

.activity-card,
.reassurance-card,
.future-grid article {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.activity-card {
  min-height: 184px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.activity-card::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -22px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--blue-soft);
  opacity: 0.88;
}

.activity-icon {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  color: #1f4f93;
  background: linear-gradient(135deg, var(--gold-soft), var(--white));
  border: 1px solid #f0d891;
  font-size: 24px;
  box-shadow: 0 10px 24px rgba(217, 165, 20, 0.12);
}

.activity-card:nth-child(2) .activity-icon {
  color: var(--red);
  background: var(--red-soft);
  border-color: #ffd0d0;
}

.activity-card:nth-child(3) .activity-icon {
  color: var(--blue);
  background: var(--blue-soft);
  border-color: #cfe2ff;
}

.activity-card:nth-child(4) .activity-icon {
  color: var(--green);
  background: var(--green-soft);
  border-color: #ccead4;
}

.activity-card:nth-child(5) .activity-icon {
  color: var(--orange);
  background: var(--orange-soft);
  border-color: #ffd9bd;
}

.activity-card h3,
.activity-card p {
  position: relative;
  z-index: 1;
}

.activity-card p,
.reassurance-card p,
.future-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.age-section {
  background:
    linear-gradient(180deg, var(--white), #fbfcfb);
}

.age-section .section-heading {
  margin-bottom: 18px;
}

.age-section h2 {
  font-size: clamp(26px, 3.5vw, 36px);
}

.age-layout {
  display: grid;
  gap: 18px;
  align-items: start;
}

.age-main {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(38, 49, 47, 0.06);
}

.age-number {
  color: var(--green-deep);
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.35;
}

.age-label {
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--green);
  background: var(--green-soft);
  font-size: 11px;
  font-weight: 800;
}

.age-detail {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.age-notes {
  color: #42514c;
}

.age-notes p {
  margin-top: 0;
}

.age-notes ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.age-notes li {
  position: relative;
  padding-left: 26px;
}

.age-notes li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.flow-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: flow;
}

.flow-item {
  counter-increment: flow;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.flow-item::before {
  content: counter(flow, decimal-leading-zero);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #1f4f93;
  background: var(--blue-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 700;
}

.flow-item p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.reassurance {
  background:
    radial-gradient(circle at 8% 10%, rgba(233, 60, 69, 0.08), transparent 20%),
    var(--white);
}

.opening-section {
  background:
    linear-gradient(180deg, var(--paper), var(--white)),
    var(--white);
}

.opening-grid {
  display: grid;
  gap: 14px;
}

.opening-card {
  min-height: 100%;
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 42px rgba(38, 49, 47, 0.08);
}

.opening-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 250, 242, 0.42));
}

.opening-media {
  position: relative;
  margin: 0;
  background: #f8f4ea;
}

.opening-media img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  filter: saturate(0.98) brightness(1.04);
}

.opening-media-logo {
  display: grid;
  place-items: center;
  min-height: 0;
  aspect-ratio: 1.5 / 1;
  padding: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.88), rgba(255, 250, 242, 0.66) 50%, rgba(237, 248, 239, 0.86));
}

.opening-media-logo img {
  width: min(220px, 66%);
  height: auto;
  max-height: 78%;
  max-width: 78%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 16px 22px rgba(38, 49, 47, 0.08));
}

.opening-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.opening-kicker {
  display: block;
  margin-bottom: 8px;
  color: #a98210;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.opening-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.future-section {
  background:
    radial-gradient(circle at 76% 20%, rgba(255, 255, 255, 0.12), transparent 26%),
    linear-gradient(135deg, #225e8f, var(--green-deep));
  color: var(--white);
}

.future-section .eyebrow,
.future-section .section-heading p {
  color: #d8c38e;
}

.future-grid article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
}

.future-grid span {
  color: #d8c38e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 700;
}

.future-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.future-grid .inline-link {
  color: #f4dfaa;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
}

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.apply {
  display: grid;
  gap: 26px;
  background: var(--rose);
}

.apply-copy {
  display: grid;
  justify-items: start;
  gap: 16px;
}

.apply-copy p {
  margin: 0;
  color: #5d5a54;
}

.entry-panel {
  display: grid;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border: 1px solid rgba(217, 165, 20, 0.36);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.entry-panel h3 {
  margin: 0;
  color: var(--green-deep);
}

.entry-steps {
  display: grid;
  gap: 10px;
}

.entry-steps div {
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid #d9e5df;
  border-radius: var(--radius);
  background: #fbfdfb;
}

.entry-steps span {
  grid-row: 1 / 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 800;
}

.entry-steps strong {
  color: var(--ink);
  line-height: 1.25;
}

.entry-steps small {
  color: var(--muted);
  font-size: 12px;
}

.entry-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.event-options {
  display: grid;
  gap: 10px;
}

.event-option {
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 1px solid #ccd9d3;
  border-radius: var(--radius);
  background: #fbfdfb;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.event-option:hover,
.event-option:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(31, 143, 73, 0.48);
  box-shadow: 0 12px 26px rgba(38, 49, 47, 0.08);
}

.event-option span {
  color: #a98210;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-option strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.event-option small {
  color: var(--muted);
  font-size: 13px;
}

.area-block {
  padding-top: 8px;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.area-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid #cfe1d8;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 800;
}

.form-status {
  margin: 0;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.site-footer {
  padding: 34px clamp(20px, 5vw, 72px);
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.site-footer .inline-link {
  margin-top: 6px;
}

.site-footer p {
  margin: 0;
}

.site-footer p + p {
  margin-top: 4px;
}

@media (min-width: 560px) {
  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 560px;
  }

  .activity-grid,
  .reassurance-grid,
  .future-grid,
  .opening-grid,
  .visual-story-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 880px) {
  .hero {
    padding-top: 34px;
    padding-bottom: 20px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(255, 250, 242, 0.92), rgba(255, 250, 242, 0.6) 52%, rgba(255, 250, 242, 0.18)),
      linear-gradient(90deg, rgba(255, 250, 242, 0.99), rgba(255, 250, 242, 0.8) 48%, rgba(255, 250, 242, 0.12) 72%, rgba(255, 250, 242, 0.02));
  }

  h1 {
    font-size: clamp(56px, 5vw, 60px);
    line-height: 1.14;
  }

  .philosophy {
    display: grid;
    align-items: start;
  }

  .philosophy-layout {
    grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
    gap: 52px;
  }

  .philosophy-symbol {
    position: sticky;
    top: calc(var(--header-height) + 34px);
  }

  .visual-story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

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

  .age-layout {
    grid-template-columns: 0.85fr 1.15fr;
  }

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

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

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

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

  .apply {
    grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
    align-items: start;
  }

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

  .entry-steps div {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .entry-steps span {
    grid-row: auto;
    margin-bottom: 8px;
  }
}

@media (max-width: 879px) {
  body {
    overflow-x: hidden;
  }

  .hero {
    min-height: auto;
    padding-top: 38px;
    padding-bottom: 44px;
  }

  .hero-copy {
    width: min(100%, 340px);
    max-width: 340px;
    min-width: 0;
  }

  h1 {
    max-width: 100%;
    font-size: 34px;
    line-height: 1.18;
  }

  .hero-lead {
    max-width: 100%;
    font-size: 14px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    display: block;
    min-width: 0;
    padding: 10px 12px;
  }

  .hero-facts dd {
    margin-top: 3px;
    font-size: 13px;
    text-align: left;
  }

  .hero-event-card {
    width: 100%;
    max-width: 100%;
    padding: 14px;
  }

  .hero-event-options span {
    font-size: 13px;
  }

  .section-heading,
  .philosophy-body,
  .age-notes,
  .apply-copy {
    width: min(100%, 340px);
    max-width: 340px;
  }

  h2 {
    font-size: 30px;
    line-height: 1.24;
  }
}

@media (max-width: 420px) {
  .site-header {
    gap: 10px;
    padding-inline: 14px;
  }

  .brand-name {
    font-size: 16px;
  }

  .brand-logo {
    width: 34px;
    height: 44px;
    flex-basis: 34px;
  }

  .brand-sub,
  .text-link {
    display: none;
  }

  .button-small {
    min-height: 36px;
    padding-inline: 10px;
  }
}
