:root {
  --navy: #07375a;
  --deep: #052d4d;
  --teal: #16898b;
  --teal-pale: #edf8f7;
  --gold: #c9953f;
  --cream: #fff2d9;
  --line: #dce4e8;
  --text: #233b4d;
  --muted: #687987;
  --white: #fff;
  --shadow: 0 8px 24px rgba(5,45,77,.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Noto Sans JP","游ゴシック体", YuGothic,"Yu Gothic","Hiragino Kaku Gothic ProN",Meiryo,sans-serif;
  font-size: 14px;
  line-height: 1.5;
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, p {
  margin-top: 0;
}
h1, h2, h3{
  font-weight: bold;
}

button {
  font: inherit;
}

.site-header {
  height: 70px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.97);
  position: sticky;
  top: 0;
  z-index: 20;
}

#inquiry .site-header {
  position: unset;
}

.header-inner {
  max-width: 1180px;
  height: 100%;
  margin: auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 36px;
}



.brand {
  display: flex;
  align-items: center;
}

.brand img {
  display: block;
  width: 185px;
  height: auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
}

.global-nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
}

.global-nav a {
  position: relative;
}

.global-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--teal);
  transition: .25s;
}

.global-nav a:hover:after {
  right: 0;
}

.header-contact {
  display: grid;
  margin-left: auto;
  text-align: right;
  line-height: 1.35;
}

.header-contact span {
  color: var(--muted);
  font-size: 10px;
}

.header-contact strong {
  color: var(--navy);
  font-size: 18px;
}

.header-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 4px;
  font-weight: 700;
  transition: transform .2s,box-shadow .2s,background .2s;
}

.header-cta {
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
  font-size: 16px;
}

.header-cta:hover, .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(6,52,85,.18);
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px;
}

.hero {
  min-height: 560px;
  background: linear-gradient(90deg,#fff 0%,#fffdf8 45%,#f9fbfb 100%);
  overflow: hidden;
  position: relative;
  background: var(--hero-bg-image, url("img/herobg.png")) no-repeat center #e9f1f4;
  background-size: auto 560px;
}

.hero-inner {
  max-width: 1180px;
  min-height: 560px;
  margin: auto;
  padding: 54px 24px 0;
  display: grid;
  grid-template-columns: 53% 47%;
  position: relative;
}

.hero-copy {
  z-index: 2;
  padding-left: 40px;
}

.greentext{
  color: #16898b;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--teal);
  font-weight: 800;
  margin-bottom: 12px;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 16px;
  border: 1px solid #aebbc3;
  border-radius: 999px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  background: #F6FBFF
}

.hero h1 {
  font-size: 43px;
  line-height: 1.2;
  letter-spacing: .06em;
  color: var(--navy);
  margin-bottom: 20px;
  font-weight: bold;
}

.hero-headline-line {
  display: inline-block;
  white-space: nowrap;
  font-size: clamp(30px, 3.5vw, 43px);
  letter-spacing: .04em;
}

.hero h1 em {
  font-style: normal;
  color: var(--teal);
}

.hero-lead {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.65;
}

.hero-text {
  font-size: 13px;
}

.check-list {
  padding: 0;
  margin: 18px 0;
  list-style: none;
  display: grid;
  gap: 4px;
  font-weight: 700;
  font-size: 12px;
}

.check-list li:before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 17px;
  height: 17px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 10px;
}

.button {
  padding: 15px 25px;
  font-size: 16px;
}

.button-label {
  text-align: center;
}

.button-sp-break {
  display: none;
}

.button-gold {
  background: var(--gold);
  color: #fff;
}

.hero-copy small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 9px;
}

.hero-visual {
  position: relative;
  min-height: 500px;
  
}



.ico_txt{
  display:inline-block;
  vertical-align:middle;
}
.ico_txt svg{
  width:auto;
  height:16px;
  padding-right: 5px;
  stroke: #4b687a;
}


.category-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.category-inner {
  max-width: 1180px;
  margin: auto;
  min-height: 58px;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 12px;
}

.category-inner strong {
  color: var(--navy);
  padding-right: 22px;
  border-right: 1px solid var(--line);
}

.category-inner span {
  color: #4b687a;
}

.category-inner span::first-letter {
  color: var(--teal);
}

.section {
  padding: 60px 24px;
  position: relative;
}

.problem-section, .plans-section, .result-section, .faq-section {
  background: linear-gradient(90deg,#fff 0%,var(--cream) 50%,#fff 100%);
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.section-heading>span {
  font-family: Georgia,serif;
  color: #7b8b96;
  font-size: 10px;
}


.section-heading h2 {
  font-size: 27px;
  line-height: 1.3;
  letter-spacing: .06em;
  color: var(--navy);
  margin: 6px 0 20px;
  font-weight: bold;
}

.section-heading p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

.sp-only-break {
  display: none;
}

.card-grid {
  max-width: 960px;
  margin: auto;
  display: grid;
}

.problem-grid {
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}

.mini-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 20px;
  display: flex;
  gap: 15px;
  min-height: 130px;
  box-shadow: var(--shadow);
}

.mini-card i {
  flex: 0 0 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  font-style: normal;
  font-size: 21px;
}

.mini-card h3 {
  font-size: 13px;
  line-height: 1.55;
  color: var(--navy);
  margin-bottom: 5px;
}

.mini-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.merit-grid {
  max-width: 950px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 26px;
}

.merit-grid article {
  text-align: center;
  padding: 28px 35px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.merit-grid article:not(:last-child):after {
  display: none;
}

.line-icon svg{
  height: 50px;
  width: auto;
}

.merit-grid h3 {
  font-size: 14px;
  color: var(--navy);
  margin: 9px 0;
}

.merit-grid strong {
  font-size: 12px;
}

.merit-grid p {
  font-size: 12px;
  color: var(--muted);
  margin: 8px 0 0;
}

.note {
  text-align: center;
  font-size: 9px;
  color: var(--muted);
  margin: 18px 0 0;
}

.plans-section {
  overflow: hidden;
}



.plan-grid {
  max-width: 920px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: relative;
}

.plan-grid article {
  padding: 25px 32px;
  border-radius: 8px;
  background: rgba(255,255,255,.9);
  border: 2px solid #9fcfd0;
  box-shadow: var(--shadow);
}

.plan-grid article+article {
  border-color: #e8d2ad;
}

.plan-grid h3 {
  text-align: center;
  color: var(--navy);
  font-size: 16px;
}

.plan-grid ul {
  padding-left: 0;
  font-size: 12px;
  min-height: 65px;
  list-style: none;
}

.plan-grid li {
  position: relative;
  padding-left: 18px;
}

.plan-grid li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 800;
}

.button-teal {
  background: var(--teal);
  color: #fff;
  width: 100%;
  padding: 13px 16px;
}

.result-board {
  width: 100%;
  max-width: 950px;
  margin: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 28px;
  display: grid;
  grid-template-columns: 250px minmax(0,1fr);
  box-shadow: var(--shadow);
}

.amount {
  min-width: 0;
  padding: 8px 28px;
  border-right: 1px solid var(--line);
}

.amount>span {
  font-size: 11px;
}

.amount strong {
  display: inline-block;
  color: var(--navy);
  font-size: 17px;
  margin: 12px 0;
  padding: 2px 18px;
  background: var(--cream);
}

.amount strong b {
  font-size: 42px;
}

.amount p {
  font-size: 10px;
  font-weight: 700;
  margin: 0;
}

.uses {
  min-width: 0;
  padding-left: 22px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 12px;
}

.uses .uses-title {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 100%;
  margin: 0;
  padding: 4px 14px;
  border: 0;
  background: var(--cream);
  text-align: center;
  font-size: 14px;
}

.uses article {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
}

.uses h3 {
  font-size: 12px;
  color: var(--navy);
  margin-bottom: 3px;
}

.uses p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

.use-grid {
  max-width: 950px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}

.use-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  text-align: center;
}

.use-grid .case-label {
  display: block;
  margin: -26px -26px 18px;
  padding: 8px;
  background: #eef1f2;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.use-grid strong {
  display: block;
  min-height: 0;
  margin: 8px 0 4px;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
}

.use-grid i {
  font-style: normal;
  font-size: 33px;
  color: var(--navy);
}

.use-grid h3:not(.case-label) {
  font-size: 14px;
  color: var(--navy);
  margin: 7px;
}

.use-grid p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
  text-align: left;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 18px;
}

.slider-dots b {
  width: 7px;
  height: 7px;
  border: 1px solid #9aabb5;
  border-radius: 50%;
}

.slider-dots b:first-child,
.slider-dots b:nth-child(2) {
  border-color: var(--navy);
  background: var(--navy);
}

.service-flow {
  padding-top: 35px;
  background: url("img/bg.png") repeat-x bottom;
}

.assurance {
  max-width: 1000px;
  margin: 0 auto 65px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 32px;
}

.assurance li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  position: relative;
}

.assurance li:not(:last-child):after {
  content: "›";
  position: absolute;
  right: -20px;
  color: #9aacb8;
  font-size: 22px;
}

.assurance b {
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  height: 46px;
  margin-top: 22px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
}

.assurance div {
  min-width: 0;
}

.assurance strong {
  display: block;
  color: var(--navy);
  font-size: 12px;
  line-height: 1.45;
  white-space: nowrap;
}

.assurance p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.compact {
  margin-bottom: 26px;
}

.process-list {
  max-width: 1000px;
  margin: auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 26px;
}

.process-list li {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px 10px;
  position: relative;
  background: #ffffff;
}

.process-list li:not(:last-child):after {
  content: "›";
  position: absolute;
  right: -20px;
  top: 45%;
  color: var(--navy);
  font-size: 24px;
}

.process-list span {
  display: inline-block;
  font-size: 9px;
  background: #dce4e8;
  border-radius: 20px;
  padding: 2px 5px;
  font-weight: bold;
}

.process-list i {
  display: block;
  font-style: normal;
  font-size: 27px;
  color: var(--navy);
  margin: 5px;
}

.process-list strong {
  display: block;
  font-size: 12px;
  color: var(--navy);
}

.process-list p {
  font-size: 12px;
  color: var(--muted);
  margin: 4px 0 0;
  text-align: left;
}
.process-list p.step-ico{
  text-align: center;
}
.step-ico svg{
  height: 50px;
  width: auto;
  padding-top: 10px;
}


.faq-list {
  max-width: 1000px;
  margin: auto;
  border-top: 1px solid var(--line);
}

details {
  display: grid;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

details:not([open]) > :not(summary) {
  display: none;
}

summary {
  cursor: pointer;
  list-style: none;
  padding: 12px 20px 12px 45px;
  font-size: 12px;
  font-weight: 700;
  position: relative;
}

summary:before {
  content: "Q";
  position: absolute;
  left: 15px;
  color: var(--teal);
  font-weight: 800;
}

summary:after {
  content: "+";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--navy);
  font-size: 18px;
}

details[open] summary:after {
  content: "−";
}

details p {
  padding: 0px 45px 12px 45px;
  font-size: 11px;
  color: var(--muted);
  margin: 0;
}

.contact-footer {
  background: linear-gradient(115deg,#06385e,#032947);
  color: #fff;
  position: relative;
  overflow: hidden;
}



.footer-inner {
  max-width: 1000px;
  margin: auto;
  padding: 55px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.footer-inner p {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}

.footer-inner h2 {
  font-size: 25px;
  margin-bottom: 7px;
}

.footer-message > span {
  font-size: 11px;
}

.footer-action {
  width: 410px;
}

.footer-action h3 {
  margin: 0 0 10px;
  font-size: 12px;
}

.footer-action ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px 18px;
  padding: 0;
  margin: 0 0 16px;
  list-style: none;
  font-size: 10px;
}


.footer-action li {
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
}

.footer-action li:before {
  content: "\2713";
  display: inline-grid;
  place-items: center;
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.footer-action li strong,
.footer-action li small {
  display: block;
}

.footer-action li small {
  opacity: .75;
}

.footer-inner .button {
  min-width: 390px;
}

.copyright {
  text-align: center;
  font-size: 9px;
  opacity: .6;
  padding-bottom: 15px;
  margin: 0;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 14px 20px 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: #333333;
  font-size: 11px;
  background: #f5f5f5;
}

@media(max-width:900px) {
  .pc-only-break {
    display: none;
  }
  .assurance strong {
    white-space: normal;
  }
  .assurance b {
    margin-top: 0;
  }
  .header-inner {
    gap: 16px;
  }
  .result-board {
    padding: 24px;
    grid-template-columns: 220px minmax(0,1fr);
  }
  .amount {
    padding: 8px 16px;
  }
  .amount strong {
    padding: 2px 12px;
  }
  .amount strong b {
    font-size: 36px;
  }
  .uses {
    padding-left: 18px;
  }
  .global-nav {
    position: fixed;
    inset: 70px 0 auto;
    background: #fff;
    display: grid;
    gap: 0;
    padding: 12px 24px;
    transform: translateY(-140%);
    transition: .3s;
    box-shadow: 0 12px 24px rgba(5,45,77,.12);
  }
  .global-nav.is-open {
    transform: translateY(0);
  }
  .global-nav a {
    padding: 13px;
    border-bottom: 1px solid var(--line);
  }
  .menu-button {
    display: block;
    margin-left: auto;
  }
  .header-contact {

    display: none;
  }
  .header-cta{
    flex: 0 0 auto;
    margin-left: auto;
    white-space: nowrap;
    font-size: 12px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 45px;
  }
  .hero-copy {
    padding-left: 25px;
  }
  .hero-visual {
    position: absolute;
    inset: 0;
    opacity: .22;
  }
  .visual-title {
    display: none;
  }
  .building {
    right: -70px;
  }
  .teal-slope {
    left: 40%;
  }
  .category-inner {
    overflow-x: auto;
    justify-content: flex-start;
    white-space: nowrap;
  }
  .problem-grid {
    grid-template-columns: 1fr 1fr;
  }
  .assurance {
    grid-template-columns: 1fr 1fr;
  }
  .process-list {
    grid-template-columns: repeat(2,1fr);
  }
  .process-list li:nth-child(2):after {
    display: none;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-action {
    width: min(100%,410px);
  }
  .footer-inner p,.footer-inner h3{
    text-align: left;
  }
}
@media(max-width:380px) {
.header-cta{
    font-size: 10px;
  padding: 5px 10px;
  }
    .brand img {
        width: 100px!important;
    }
}
@media(max-width:620px) {
  .sp-only-break {
    display: inline;
  }
  .sp-hide-break {
    display: none;
  }
  body {
    font-size: 13px;
  }
  .hero {
    background-position: 58% center;
  }
  .site-header {
    height: 60px;
  }
  .header-inner {
    width: 100%;
    padding: 0 16px;
  }
  .brand {
    min-width: 0;
  }
  .brand img {
    max-width: 100%;
    width: 145px;
  }
  .global-nav {
    inset: 60px 0 auto;
  }
  .hero, .hero-inner {
    min-height: 500px;
  }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(
      90deg,
      rgba(233, 241, 244, .95) 0%,
      rgba(233, 241, 244, .88) 52%,
      rgba(233, 241, 244, .55) 76%,
      rgba(233, 241, 244, .12) 100%
    );
  }
  .hero-inner {
    padding: 38px 20px 28px;
    position: relative;
    z-index: 1;
  }
  .hero-copy {
    padding: 0;
  }
  .hero h1,
  .hero-lead,
  .hero-text,
  .check-list {
    text-shadow:
      0 0 7px rgba(233, 241, 244, .95),
      0 1px 2px rgba(233, 241, 244, .95);
  }
  .hero h1 {
    font-size: 34px;
  }
  .hero-headline-line {
    font-size: clamp(21px, 6.6vw, 30px);
  }
  .hero-lead {
    font-size: 16px;
  }
  .hero-text br {
    display: none;
  }
  .hero-visual {
    opacity: .14;
  }
  .building {
    height: 510px;
  }
  .button {
    width: 100%;
    padding: 15px 14px;
  }
  .section {
    padding: 56px 18px;
  }
  .section-heading h2 {
    font-size: 22px;
    font-weight: bold;
  }
  .problem-grid, .plan-grid, .use-grid {
    grid-template-columns: 1fr;
  }
  .mini-card {
    min-height: auto;
  }
  .merit-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    max-width: 360px;
  }
  .merit-grid article+article {
    border: 1px solid var(--line);
  }
  .result-board {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .amount {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    text-align: center;
    padding: 0 10px 18px;
  }
  .uses {
    grid-template-columns: 1fr 1fr;
    padding: 18px 0 0;
  }
  .assurance {
    grid-template-columns: 1fr;
    gap: 38px;
    max-width: 360px;
    margin-bottom: 45px;
  }
  .assurance li:not(:last-child):after {
    content: "▼";
    display: block;
    top: auto;
    right: auto;
    bottom: -31px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 15px;
    color: var(--teal);
  }
  .process-list {
    grid-template-columns: 1fr;
    gap: 38px;
    max-width: 360px;
  }
  .process-list li:not(:last-child):after {
    content: "▼";
    display: block;
    top: auto;
    right: auto;
    bottom: -31px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 15px;
    color: var(--teal);
  }
  .process-list li:nth-child(3):after {
    display: block;
  }
  .process-list li:nth-child(2):after {
    display: block;
  }
  details {
    grid-template-columns: 1fr;
  }
  summary {
    padding-right: 45px;
  }
  summary:after {
    right: 18px;
  }
  details p {
    padding: 0 45px 14px;
  }
  .footer-inner {
    padding: 45px 20px;
  }
  .footer-inner .button {
    min-width: 0;
  }
  .footer-inner h2 {
    font-size: 18px;
    margin-bottom: 18px;
  }
  .category-inner {
    padding-left: 18px;
  }
}

@media(max-width:411px) {
  .button-sp-break {
    display: inline;
  }
}

@media(max-width:360px) {
  .footer-action .button {
    padding: 14px 6px;
    gap: 6px;
    font-size: 16px;
  }
  .footer-action .button-label {
    letter-spacing: -.02em;
  }
  .hero-copy > .button {
    width: 100%;
    padding: 14px 10px;
    gap: 7px;
    font-size: 13px;
    line-height: 1.4;
    white-space: nowrap;
  }
  .hero-copy > .button > .button-arrow {
    flex: 0 0 auto;
    font-size: 17px;
  }
  .footer-inner h2 {
    font-size: 16px;
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *:before, *:after {
    transition: none!important;
  }
}

.telbox a{ color: #4b7ff7;
}
.field-error {
  color: #c62828;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  margin: 8px 0 0;
}

.formbox input[aria-invalid="true"],
.formbox select[aria-invalid="true"],
.formbox textarea[aria-invalid="true"] {
  border-color: #c62828;
  box-shadow: 0 0 0 1px #c62828;
}

.privacycheck input[aria-invalid="true"] {
  outline: 2px solid #c62828;
  outline-offset: 2px;
}
