:root {
  --bg: #f7f6f4;
  --paper: #ffffff;
  --cream: #f0ebe3;
  --ink: #211f1c;
  --muted: #5f5a52;
  --subtle: #8a857c;
  --line: #e4dfd6;
  --red: #c0392b;
  --red-dark: #a83125;
  --green: #4a7c59;
  --green-dark: #2f5e3e;
  --green-soft: #e8f1eb;
  --yellow: #d9a441;
  --shadow: 0 18px 48px rgba(33, 31, 28, 0.09);
  --shadow-soft: 0 10px 24px rgba(33, 31, 28, 0.07);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;
  line-height: 1.75;
  letter-spacing: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(228, 223, 214, 0.74);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(1320px, calc(100% - 80px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  font-size: 2.05rem;
  line-height: 1;
  font-weight: 900;
  color: var(--ink);
  white-space: nowrap;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  margin-right: 18px;
  font-size: 0.9rem;
  font-weight: 800;
}

.header-nav a {
  padding: 12px 0;
}

.header-nav a:hover {
  color: var(--green);
}

.header-nav a.active {
  color: var(--green-dark);
  border-bottom: 2px solid var(--green);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
  line-height: 1.2;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}

.header-cta {
  min-height: 58px;
  padding: 0 32px;
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 26px rgba(192, 57, 43, 0.22);
}

.header-cta:hover,
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(192, 57, 43, 0.24);
}

.hero {
  overflow: hidden;
  background: var(--paper);
  padding: 44px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(580px, 1.08fr);
  gap: 48px;
  align-items: center;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 13px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.badge-light {
  background: var(--green-soft);
  color: var(--green-dark);
  border: 1px solid rgba(74, 124, 89, 0.22);
}

.hero h1 {
  margin: 0;
  font-size: 3.24rem;
  line-height: 1.34;
  font-weight: 950;
  word-break: keep-all;
}

.hero-lead {
  max-width: 560px;
  margin: 26px 0 28px;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.95;
}

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

.btn {
  min-width: 248px;
  padding: 0 32px;
  font-size: 1.03rem;
}

.btn span {
  margin-left: 10px;
  font-size: 1.38rem;
  line-height: 1;
}

.btn-primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 14px 28px rgba(192, 57, 43, 0.22);
}

.btn-text {
  min-width: 190px;
  background: transparent;
  color: var(--green-dark);
  border: 1px solid var(--line);
}

.btn-text:hover {
  border-color: var(--green);
  transform: translateY(-1px);
}

.micro-note {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--subtle);
  font-size: 0.82rem;
  line-height: 1.7;
}

.hero-visual {
  position: relative;
  min-height: 650px;
}

.hero-photo-wrap {
  position: absolute;
  top: 22px;
  right: 16px;
  width: min(86%, 680px);
  height: 510px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card {
  position: absolute;
  width: 196px;
  border: 8px solid #1f1f1f;
  border-radius: 30px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 22px 46px rgba(33, 31, 28, 0.24);
}

.card-main {
  left: 0;
  bottom: 42px;
  height: 356px;
}

.card-sub {
  right: 0;
  bottom: 0;
  width: 164px;
  height: 294px;
}

.phone-bar {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
}

.phone-bar span {
  display: block;
  width: 42px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.phone-bar span + span {
  width: 18px;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-caption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 11px 12px;
  border-radius: var(--radius);
  background: rgba(17, 17, 17, 0.74);
  color: #fff;
  font-size: 0.72rem;
  line-height: 1.45;
  backdrop-filter: blur(10px);
}

.post-caption strong,
.post-caption span {
  display: block;
}

.match-panel {
  position: absolute;
  left: 112px;
  bottom: 0;
  width: 260px;
  padding: 18px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.match-panel p {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.match-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.76rem;
}

.match-row span {
  color: var(--subtle);
}

.match-row b {
  text-align: right;
}

.match-meter {
  height: 8px;
  margin-top: 14px;
  border-radius: 999px;
  background: var(--green-soft);
  overflow: hidden;
}

.match-meter span {
  display: block;
  width: 84%;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
}

.section-pad {
  padding: 94px 0;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.left {
  margin: 0;
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.section-heading h2,
.apply-copy h2 {
  margin: 0;
  font-size: 2.52rem;
  line-height: 1.42;
  font-weight: 950;
  word-break: keep-all;
}

.section-heading p,
.apply-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.value {
  background: var(--bg);
}

.value-list {
  max-width: 1040px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.value-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  align-items: start;
  padding: 30px 34px;
  border-bottom: 1px solid var(--line);
}

.value-item:last-child {
  border-bottom: 0;
}

.line-icon,
.step-icon,
.rule-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--green-soft);
}

.line-icon svg,
.step-icon svg,
.rule-icon svg,
.fit-item svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--green);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-item h3,
.flow-step h3,
.rule-item h3 {
  margin: 0 0 7px;
  font-size: 1.18rem;
  line-height: 1.45;
}

.value-item p,
.flow-step p,
.rule-item p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.note-box {
  max-width: 1040px;
  margin: 22px auto 0;
  padding: 18px 22px;
  border-left: 5px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: #fff;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.fit-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(480px, 1fr);
  grid-template-areas:
    "copy list"
    "photo highlight";
  gap: 28px 46px;
  align-items: start;
}

.fit .section-heading {
  grid-area: copy;
}

.fit-list {
  grid-area: list;
  display: grid;
  gap: 12px;
}

.fit-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 13px;
  align-items: center;
  min-height: 68px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-weight: 850;
  box-shadow: 0 8px 20px rgba(33, 31, 28, 0.04);
}

.fit-item span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--green-soft);
}

.fit-item svg {
  width: 20px;
  height: 20px;
}

.highlight-panel {
  grid-area: highlight;
  padding: 24px 26px;
  border-left: 5px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--cream);
}

.highlight-panel strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 1.22rem;
  line-height: 1.55;
}

.highlight-panel p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.fit-photo {
  grid-area: photo;
  height: 310px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

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

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

.flow-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.flow-rail::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--line);
}

.flow-step {
  position: relative;
  padding: 78px 20px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.step-number {
  position: absolute;
  top: 18px;
  left: 20px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 950;
}

.step-icon {
  position: absolute;
  top: 8px;
  right: 18px;
  width: 64px;
  height: 64px;
  background: var(--green-soft);
}

.cases {
  background: #fff;
}

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

.case-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid rgba(74, 124, 89, 0.14);
  box-shadow: 0 10px 24px rgba(33, 31, 28, 0.06);
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.case-card:hover {
  transform: translateY(-3px);
  border-color: var(--green);
  box-shadow: var(--shadow-soft);
}

.case-card img {
  width: 100%;
  height: 178px;
  object-fit: cover;
}

.case-card div {
  padding: 18px 20px 22px;
}

.case-card p {
  margin: 0 0 6px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 950;
}

.case-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.55;
}

.cases-note {
  margin: 18px 0 0;
  color: var(--subtle);
  font-size: 0.86rem;
  font-weight: 700;
  text-align: center;
}

.rules {
  background: var(--bg);
}

.rules-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(520px, 1fr);
  gap: 54px;
  align-items: start;
}

.rule-list {
  display: grid;
  gap: 14px;
}

.rule-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 20px rgba(33, 31, 28, 0.04);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.52fr) minmax(620px, 1fr);
  gap: 58px;
  align-items: start;
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 20px rgba(33, 31, 28, 0.04);
}

summary {
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 20px 24px;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--green);
  font-size: 1.2rem;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  font-weight: 700;
}

.apply {
  background: var(--green-dark);
  color: #fff;
}

.apply-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(520px, 1fr);
  gap: 58px;
  align-items: start;
}

.apply .eyebrow {
  color: #dcefe2;
}

.apply-copy h2,
.apply-copy p {
  color: #fff;
}

.apply-copy p {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.78);
}

.apply-copy img {
  width: min(360px, 100%);
  height: 420px;
  margin-top: 34px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.28);
}

.apply-form {
  padding: 30px;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.2);
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.form-row.split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label,
legend {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
}

label span,
legend span {
  display: inline-flex;
  margin-left: 7px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(192, 57, 43, 0.1);
  color: var(--red);
  font-size: 0.68rem;
  line-height: 1.4;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  outline: none;
}

textarea {
  min-height: 108px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.12);
}

.help-text {
  margin: -8px 0 18px;
  color: var(--subtle);
  font-size: 0.8rem;
  font-weight: 700;
}

.genre-field {
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

.genre-field legend {
  margin-bottom: 10px;
}

.genre-field label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  margin: 0 8px 8px 0;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
}

.genre-field input,
.consent input {
  width: 16px;
  min-height: auto;
  height: 16px;
  accent-color: var(--green);
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin: 2px 0 22px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.7;
}

.consent span {
  margin: 0;
  padding: 0;
  background: none;
  color: var(--muted);
  font-size: inherit;
  line-height: inherit;
}

.submit-btn {
  width: 100%;
}

.form-note {
  margin: 14px 0 0;
  color: var(--subtle);
  font-size: 0.82rem;
  text-align: center;
}

.form-error {
  min-height: 24px;
  margin: -4px 0 14px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.6;
  text-align: center;
}

.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 30px 0;
}

.footer-inner {
  width: min(1320px, calc(100% - 80px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner .brand {
  color: #fff;
  font-size: 1.5rem;
}

.footer-inner div {
  display: flex;
  gap: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 800;
}

.thanks-page {
  min-height: 100vh;
  background: var(--green-dark);
}

.thanks-main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 16px;
}

.thanks-panel {
  width: min(680px, 100%);
  padding: 44px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.22);
}

.thanks-panel .brand {
  display: inline-block;
  margin-bottom: 34px;
}

.thanks-panel h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: 1.34;
  font-weight: 950;
}

.thanks-panel p {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.thanks-panel .thanks-note {
  padding: 16px 18px;
  border-left: 5px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--green-soft);
  font-size: 0.88rem;
}

.thanks-panel .btn {
  margin-top: 28px;
}

@media (max-width: 1080px) {
  .container {
    width: min(100% - 48px, 980px);
  }

  .header-inner {
    width: calc(100% - 48px);
  }

  .header-nav {
    gap: 20px;
    margin-right: 4px;
  }

  .hero-grid,
  .fit-grid,
  .rules-grid,
  .faq-grid,
  .apply-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 610px;
  }

  .hero-photo-wrap {
    width: 82%;
    right: 0;
  }

  .fit-grid {
    grid-template-areas:
      "copy"
      "list"
      "highlight"
      "photo";
  }

  .fit-photo {
    height: 360px;
  }

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

  .flow-rail::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .container,
  .header-inner,
  .footer-inner {
    width: calc(100% - 32px);
  }

  .site-header {
    position: static;
  }

  .header-inner {
    min-height: 66px;
  }

  .brand {
    font-size: 1.55rem;
  }

  .header-nav {
    display: none;
  }

  .header-cta {
    min-height: 44px;
    padding: 0 16px;
    font-size: 0.82rem;
  }

  .hero {
    padding: 34px 0 24px;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero h1 {
    font-size: clamp(2.08rem, 9vw, 2.72rem);
    line-height: 1.36;
  }

  .hero-lead {
    margin: 20px 0 22px;
    font-size: 0.96rem;
    line-height: 1.9;
  }

  .badge-row {
    gap: 8px;
    margin-bottom: 18px;
  }

  .badge {
    min-height: 29px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .btn {
    min-width: 0;
  }

  .btn-text {
    min-width: 0;
    min-height: 48px;
  }

  .hero-visual {
    min-height: 540px;
  }

  .hero-photo-wrap {
    top: 0;
    right: 0;
    width: 88%;
    height: 370px;
  }

  .video-card {
    border-width: 6px;
    border-radius: 24px;
  }

  .card-main {
    width: 154px;
    height: 278px;
    left: 0;
    bottom: 78px;
  }

  .card-sub {
    width: 126px;
    height: 232px;
    right: 0;
    bottom: 58px;
  }

  .match-panel {
    left: 22px;
    right: 22px;
    bottom: 0;
    width: auto;
  }

  .section-pad {
    padding: 68px 0;
  }

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

  .section-heading h2,
  .apply-copy h2 {
    font-size: clamp(1.72rem, 7vw, 2.12rem);
    line-height: 1.45;
  }

  .value-item,
  .rule-item {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 22px 18px;
  }

  .line-icon,
  .rule-icon {
    width: 44px;
    height: 44px;
  }

  .line-icon svg,
  .rule-icon svg {
    width: 22px;
    height: 22px;
  }

  .fit-item {
    grid-template-columns: 30px 1fr;
    min-height: auto;
    padding: 14px;
    font-size: 0.91rem;
  }

  .fit-item span {
    width: 30px;
    height: 30px;
  }

  .fit-photo {
    height: 260px;
  }

  .flow-rail,
  .case-grid,
  .form-row.split {
    grid-template-columns: 1fr;
  }

  .flow-step {
    padding: 72px 18px 22px;
  }

  .case-card img {
    height: 192px;
  }

  .apply-form {
    padding: 22px 16px;
  }

  .apply-copy img {
    height: 280px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .thanks-panel {
    padding: 30px 20px;
  }
}

@media (max-width: 420px) {
  .container,
  .header-inner,
  .footer-inner {
    width: calc(100% - 26px);
  }

  .header-cta {
    padding: 0 12px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-photo-wrap {
    height: 330px;
  }

  .card-main {
    width: 144px;
    height: 256px;
  }

  .card-sub {
    width: 116px;
    height: 212px;
  }

  .post-caption {
    padding: 8px 9px;
    font-size: 0.66rem;
  }

  .match-panel {
    left: 12px;
    right: 12px;
    padding: 14px;
  }

  .value-item h3,
  .flow-step h3,
  .rule-item h3,
  .case-card h3 {
    font-size: 1rem;
  }
}
