@charset "UTF-8";
:root {
  font-size: 62.5%;
  --fs-body: clamp(1.4rem, 2vw, 1.6rem);
  --fs-small: clamp(1.2rem, 2vw, 1.4rem);
  --fs-h1: clamp(3.2rem, 4vw, 4.8rem);
  --fs-h2: clamp(2.8rem, 4vw, 4.8rem);
  --fs-h3: clamp(2.4rem, 3vw, 2.8rem);
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: var(--fs-body);
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-feature-settings: "palt";
}

h1 {
  font-size: var(--fs-h1);
  font-weight: 900;
  line-height: 1.2;
}

h2 {
  font-size: var(--fs-h2);
  text-align: center;
  font-weight: 900;
  line-height: 1.2;
}

h3 {
  font-size: var(--fs-h3);
  line-height: 1.2;
}

h1,
h2,
h3,
h4 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-block-start: 0;
  margin-block-end: 0;
}

p {
  margin-block-start: 0;
  margin-block-end: 0;
}

span {
  font-size: var(--fs-small);
}

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

dl {
  margin-block-start: 0;
  margin-block-end: 0;
}

dd {
  margin-inline-start: 0px;
}

button {
  font-family: "Zen Kaku Gothic New", sans-serif;
  cursor: pointer;
}

input,
textarea {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.pcnone {
  display: none;
}
@media screen and (max-width: 768px) {
  .pcnone {
    display: block;
  }
}

.spnone {
  display: block;
}
@media screen and (max-width: 768px) {
  .spnone {
    display: none;
  }
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  color: #2b2b2b;
  line-height: 1.7;
}

div {
  box-sizing: border-box;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  flex-direction: column;
  box-sizing: border-box;
}
.container p.subtitle {
  font-weight: 700;
  font-size: 1.2rem;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .container {
    gap: 24px;
  }
}

section {
  padding: 64px 0px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  section {
    padding: 40px 0px;
  }
}

section[id] {
  scroll-margin-top: 100px;
}
@media (max-width: 768px) {
  section[id] {
    scroll-margin-top: 70px;
  }
}

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

button,
.btn {
  border: none;
  padding: 10px 32px;
  border-radius: 32px;
  font-size: clamp(1.6rem, 2vw, 2rem);
  transition: background-color 0.3s ease;
  font-weight: 500;
  box-shadow: 0px 0px 8px rgba(28, 103, 223, 0.1);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0d4c83;
  color: #ffffff;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  button,
  .btn {
    padding: 10px 24px;
  }
}
button:hover,
.btn:hover {
  background-color: #a63c3c;
}
button:after,
.btn:after {
  content: "\f105";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  width: 0;
  margin-left: 16px;
}

button.is-loading {
  gap: 8px;
}

button.is-loading::after {
  content: "";
  width: 0.95em;
  height: 0.95em;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #ffffff;
  animation: btn-spin 0.8s linear infinite;
}

button.btn-secondary.is-loading::after {
  border-color: rgba(28, 103, 223, 0.3);
  border-top-color: #1c67df;
}

@keyframes btn-spin {
  to {
    transform: rotate(360deg);
  }
}
ul,
ol {
  list-style: none;
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 0;
}

h2.section__title b.enji {
  color: #a63c3c;
}
h2.section__title b.shuju {
  color: #0d4c83;
}

p.description {
  text-align: center;
  font-weight: 500;
  font-size: clamp(1.6rem, 2vw, 2.4rem);
}
p.description b {
  color: #0d4c83;
  font-weight: 700;
}

#header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #ffffff;
  padding: 8px 0px;
  z-index: 100;
}
#header .header__bar {
  width: 90%;
  max-width: 1200px;
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  gap: 8px;
  box-sizing: border-box;
}
#header .header__bar .logo {
  display: flex;
  justify-content: center;
}
#header .header__bar .logo a {
  line-height: 0;
}
#header .header__bar .logo a img {
  width: 100%;
}
#header .header__bar .menu {
  display: flex;
  gap: 40px;
  align-items: center;
}
#header .header__bar .global-nav {
  box-sizing: border-box;
}
#header .header__bar .global-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 28px;
  width: fit-content;
}
#header .header__bar .global-nav ul li a:hover {
  color: #0d4c83;
}
#header .header__bar .cta-buttons {
  display: flex;
  gap: 16px;
}
#header .header__bar {
  /* =============================
     Mobile header (logo / trial / hamburger)
     - simple toggle: #header.is-menu-open
   ============================= */
}
#header .header__bar .header-actions {
  display: none; /* shown on mobile */
  align-items: center;
  gap: 12px;
}
#header .header__bar .btn--compact {
  padding: 16px 12px;
  font-size: 1.4rem;
  border-radius: 9999px;
  line-height: 1;
  white-space: nowrap;
  height: 16px;
}
#header .header__bar .btn--compact:after {
  margin-left: 8px;
}
#header .header__bar .hamburger {
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: none;
  padding-top: 14px;
}
#header .header__bar .hamburger__bar {
  position: relative;
  width: 22px;
  height: 2px;
  background: #0d4c83;
  border-radius: 999px;
  display: block;
  transition: transform 220ms ease, opacity 220ms ease, background 220ms ease;
}
#header .header__bar .hamburger__bar::before,
#header .header__bar .hamburger__bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #0d4c83;
  border-radius: 9999px;
  transition: transform 220ms ease, top 220ms ease, opacity 220ms ease;
}
#header .header__bar .hamburger__bar::before {
  top: -6px;
}
#header .header__bar .hamburger__bar::after {
  top: 6px;
}
#header .header__bar .hamburger[aria-expanded=true] .hamburger__bar {
  background: transparent;
}
#header .header__bar .hamburger[aria-expanded=true] .hamburger__bar::before {
  top: 0;
  transform: rotate(45deg);
}
#header .header__bar .hamburger[aria-expanded=true] .hamburger__bar::after {
  top: 0;
  transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  #header {
    padding: 8px 16px 8px 8px;
    box-sizing: border-box;
  }
  #header .header__bar {
    width: 100%;
  }
  #header .header__bar .logo img {
    height: 56px;
  }
  #header .header__bar .menu {
    display: flex;
    gap: 40px;
    align-items: center;
  }
  #header .header__bar .global-nav {
    position: fixed;
    top: 52px;
    left: 0;
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
  }
  #header .header__bar .global-nav ul {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
  #header .header__bar .cta-buttons {
    display: none;
  }
  #header .header__bar .header-actions {
    display: flex;
  }
  #header.is-menu-open .global-nav {
    top: 72px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

#hero {
  padding: 0;
  background: url(/assets/img/hero.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
#hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 20vw;
  height: 100%;
  background: #ffffff;
  z-index: 1;
}
#hero .container {
  display: flex;
  justify-content: end;
  flex-direction: row;
  align-items: end;
  position: relative;
  z-index: 2;
}
#hero .container .hero__copy {
  width: 20%;
  display: flex;
  justify-content: center;
  padding-top: 160px;
  background: #ffffff;
}
#hero .container .hero__copy h1 {
  -webkit-writing-mode: vertical-rl; /* Safari用 */
  writing-mode: vertical-rl;
}
#hero .container .hero__copy h1 span {
  font-size: clamp(2rem, 2vw, 3.2rem);
}
#hero .container .hero__content {
  width: 80%;
  color: #ffffff;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 40px;
  align-items: start;
}
#hero .container .hero__content .hero__note:before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 4px;
  color: #a63c3c;
}
@media (min-width: 1334px) {
  #hero::before {
    width: calc((100vw - 1200px) / 2 + 240px);
  }
}
@media screen and (max-width: 768px) {
  #hero::before {
    display: none;
  }
  #hero .container {
    flex-direction: column;
    align-items: flex-start;
  }
  #hero .container .hero__copy {
    background: none;
    padding-top: 120px;
    width: auto;
  }
  #hero .container .hero__copy h1 {
    color: #ffffff;
  }
  #hero .container .hero__content {
    width: 100%;
    gap: 20px;
  }
}

#demand {
  background: #ffffff;
}
#demand .container .demand__title {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.8rem);
}
#demand .container .demand__title h2 {
  text-align: left;
  font-size: clamp(1.9rem, 3vw, 4.8rem);
}
#demand .container .demand__title:before {
  content: "事 実";
  font-size: clamp(1.6rem, 2vw, 2.8rem);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2b2b2b;
  border-radius: 50%;
  padding: 10px;
  box-sizing: border-box;
  width: clamp(70px, 10vw, 100px);
  aspect-ratio: 1/1;
  color: #ffffff;
  text-align: center;
}
#demand .container .demand__content {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  #demand .container .demand__content {
    flex-direction: column;
  }
}
#demand .container .demand__content .demand__description {
  display: flex;
  gap: 40px;
  flex-direction: column;
}
#demand .container .demand__content .demand__description h3 {
  font-size: clamp(1.6rem, 2vw, 2.8rem);
}
#demand .container .demand__content figure img {
  width: 100%;
  max-width: 489px;
}

#worries {
  background: #f8f4e8;
}
#worries .container {
  text-align: center;
}
#worries .container .cards {
  display: flex;
  gap: 20px;
}
#worries .container .cards .card {
  background: #ffffff;
  box-sizing: border-box;
  padding: 20px;
  border-radius: 8px;
  border: 3px solid #d9d9d9;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#worries .container .cards .card img {
  height: 72px;
}
#worries .container .cards .card h3 {
  text-align: center;
  font-size: clamp(1.8rem, 2vw, 2.2rem);
}
#worries .container .cards .card p {
  text-align: left;
}
#worries .container .conclusion {
  font-size: clamp(2.4rem, 4vw, 4.8rem);
  text-align: center;
  font-weight: 800;
}
#worries .container .conclusion .enji {
  color: #a63c3c;
}
#worries .container .conclusion .shuju {
  color: #0d4c83;
}
#worries .container .conclusion:after {
  content: "";
  background: #ffffff;
  width: clamp(300px, 50vw, 570px);
  height: clamp(15px, 50vw, 10px);
  display: block;
  margin: -15px auto 0;
}
#worries .container b.shuju {
  color: #0d4c83;
}
@media screen and (max-width: 768px) {
  #worries .container .cards {
    flex-direction: column;
  }
}

#plans {
  background: #ffffff;
}
#plans .container .plans__title {
  display: flex;
  align-items: center;
  margin: 0 auto;
  justify-content: space-between;
}
#plans .container .plans__title img {
  height: 64px;
}
#plans .container .plans__title h2 {
  font-size: clamp(2.5rem, 4vw, 4.8rem);
}
#plans .container .plans__flex {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 90%;
  margin: 0 auto;
}
#plans .container .plans__flex .plan {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
#plans .container .plans__flex .plan .plan__title {
  background: #0d4c83;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  text-align: center;
  font-size: 4rem;
  line-height: 3.2rem;
  font-weight: 600;
  justify-content: center;
}
#plans .container .plans__flex .plan .plan__title span {
  display: block;
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
  line-height: 1.6rem;
}
#plans .container .plans__flex .plan img {
  width: 100%;
  border-radius: 8px;
  border: 3px solid #d9d9d9;
  box-sizing: border-box;
}
#plans .container .plans__flex .plan h3 {
  text-align: center;
}
@media screen and (max-width: 768px) {
  #plans .container .plans__flex {
    flex-direction: column;
    width: 100%;
  }
  #plans .container .plans__flex .plan {
    width: 100%;
  }
}

#strength .container h2 {
  text-align: left;
}
@media screen and (max-width: 768px) {
  #strength .container h2 {
    text-align: center;
  }
}
#strength .container .description {
  text-align: left;
}
#strength .container .strength__content {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}
#strength .container .strength__content .text {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#strength .container .strength__content table {
  border: 3px solid #d9d9d9;
  text-align: center;
  border-spacing: 0px;
  border-radius: 6px;
  width: calc(55% - 20px);
}
#strength .container .strength__content table th.nomal {
  border-radius: 4px 0px 0px 0px;
}
#strength .container .strength__content table th.shuju {
  background: #0d4c83;
  color: #ffffff;
  padding: 16px 10px;
  border-radius: 0px 4px 0px 0px;
}
#strength .container .strength__content table td {
  background: #ffffff;
  padding: 16px 10px;
  font-weight: 600;
  border-top: 1px solid #d9d9d9;
}
#strength .container .strength__content table td.last {
  border-radius: 0px 0px 0px 4px;
}
#strength .container .strength__content table td.shuju {
  background: #ebf6ff;
}
#strength .container .strength__content table td.shuju.last {
  border-radius: 0px 0px 4px 0px;
}
#strength .container .strength__content table td span {
  display: block;
  font-weight: 400;
}
#strength .container .strength__content table td small {
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  #strength .container .strength__content {
    flex-direction: column;
  }
  #strength .container .strength__content .text {
    width: 100%;
  }
  #strength .container .strength__content table {
    width: 100%;
  }
}

#revenue {
  background: #ffffff;
}
#revenue .container .revenue__title {
  display: flex;
  width: 100%;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
#revenue .container .revenue__title h3:before {
  content: "●";
  color: #a63c3c;
}
#revenue .container .revenue__title span {
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 500;
}
#revenue .container .revenue__content {
  display: flex;
  gap: 40px;
  align-items: end;
}
#revenue .container .revenue__content .graph {
  width: 40%;
  min-width: 291px;
}
#revenue .container .revenue__content .graph img {
  display: block;
  width: 100%;
}
#revenue .container .revenue__content .description {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#revenue .container .revenue__content .description dl {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#revenue .container .revenue__content .description dl dt {
  color: #0d4c83;
  font-weight: 600;
  border-bottom: 3px solid #0d4c83;
  width: fit-content;
  padding: 0px 4px 4px;
}
#revenue .container .revenue__content .description .cause {
  background: #f5f5f5;
  padding: 40px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#revenue .container p.note {
  text-align: center;
}
@media screen and (max-width: 768px) {
  #revenue .container .revenue__content {
    flex-direction: column;
    align-items: center;
  }
  #revenue .container .revenue__content .description .cause {
    padding: 20px;
  }
  #revenue .container p.note {
    text-align: left;
    font-size: 1.2rem;
  }
}

#cta .container .cta-title {
  display: flex;
  margin: 0 auto;
}
#cta .container .cta-title h3 {
  font-size: clamp(2rem, 3vw, 4rem);
  text-align: center;
}
#cta .container .cta-title h3 span {
  font-size: clamp(1.4rem, 2vw, 2.8rem);
  display: block;
}
#cta .container .cta-title img {
  display: block;
  width: clamp(30px, 2vw, 50px);
}

#operation {
  background: #ebf6ff;
}
#operation .container .cards {
  display: flex;
  gap: 20px;
}
#operation .container .cards .card {
  background: #ffffff;
  border-radius: 8px;
  border: 3px solid #d9d9d9;
  box-sizing: border-box;
  width: calc((100% - 40px) / 3);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
#operation .container .cards .card h3 {
  text-align: center;
}
#operation .container .cards .card img {
  display: block;
  height: 100px;
}
#operation .container .cards .card ul li {
  display: flex;
  gap: 8px;
}
#operation .container .cards .card ul li:before {
  content: "\f00c";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  color: #a63c3c;
}
@media screen and (max-width: 768px) {
  #operation .container .cards {
    flex-direction: column;
  }
  #operation .container .cards .card {
    width: 100%;
  }
  #operation .container .cards .card img {
    height: 72px;
  }
}

#local {
  background: #ffffff;
}
#local .container ul {
  display: flex;
  gap: 20px;
}
#local .container ul li {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: calc((100% - 40px) / 3);
}
#local .container ul li img {
  border-radius: 8px;
  border: 3px solid #d9d9d9;
  box-sizing: border-box;
}
#local .container ul li h3 {
  text-align: center;
}
@media screen and (max-width: 768px) {
  #local .container ul {
    flex-direction: column;
    gap: 24px;
  }
  #local .container ul li {
    width: 100%;
  }
}

#features {
  background: #f8f4e8;
}
#features .container .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
#features .container .cards .card {
  background: #ffffff;
  box-sizing: border-box;
  border-radius: 8px;
  border: 3px solid #d9d9d9;
  background: #ffffff;
  padding: 24px;
  width: calc((100% - 40px) / 3);
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
#features .container .cards .card img {
  width: 30%;
}
@media screen and (max-width: 768px) {
  #features .container .cards {
    flex-direction: column;
  }
  #features .container .cards .card {
    width: 100%;
  }
}

#flow {
  background: #f5f5f5;
}
#flow .container {
  max-width: 1080px;
}
#flow .container ol {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
#flow .container ol .steps__item {
  background: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-sizing: border-box;
  border: 3px solid #d9d9d9;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
#flow .container ol .steps__item img {
  width: 13%;
}
#flow .container ol .steps__item .steps__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#flow .container ol .steps__item .steps__content h3 {
  font-size: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#flow .container ol .steps__item .steps__content h3 span {
  font-family: "Montserrat", sans-serif;
  font-size: 2.4rem;
  color: #0d4c83;
  display: block;
}
#flow .container ol .steps__item .steps__content h3 span b {
  font-size: 3.2rem;
  font-weight: 700;
  margin-left: 8px;
}
#flow .container ol .steps__item .steps__content ul {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
#flow .container ol .steps__item .steps__content ul li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
#flow .container ol .steps__item .steps__content ul li .btn {
  width: 100%;
  min-width: 200px;
  font-size: var(--fs-body);
}
#flow .container ol .steps__item .steps__content ul li .tel {
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: clamp(0.1rem, 2vw, 0.3rem);
  color: #0d4c83;
}
#flow .container ol .steps__item .steps__content ul li .tel:before {
  content: "\f095";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 4px;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}
@media screen and (max-width: 768px) {
  #flow .container ol .steps__item {
    padding: 20px;
    justify-content: center;
    gap: 16px;
  }
  #flow .container ol .steps__item img {
    width: 30%;
  }
  #flow .container ol .steps__item .steps__content ul {
    flex-direction: column;
  }
  #flow .container ol .steps__item .steps__content ul li {
    width: 100%;
  }
  #flow .container ol .steps__item .steps__content ul li .btn {
    width: 100%;
  }
}
#flow .container ol i {
  font-size: 3rem;
  color: #707070;
}

#faq {
  background: #ffffff;
}
#faq .container {
  flex-direction: column;
  max-width: 1080px;
}
#faq .container .faq__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#faq .container .faq__list .faqItem {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#faq .container .faq__list .faqItem summary.faqItem__q {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: 0.1rem;
}
#faq .container .faq__list .faqItem summary.faqItem__q::marker {
  display: none;
}
#faq .container .faq__list .faqItem summary.faqItem__q:before {
  content: url(/assets/img/faq_Q.svg);
}
#faq .container .faq__list .faqItem .faqItem__a {
  display: flex;
  gap: 24px;
  align-items: center;
}
#faq .container .faq__list .faqItem .faqItem__a:before {
  content: url(/assets/img/faq_A.svg);
}
#faq .container .faq__list .faqItem {
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 20px;
}
#faq .container .faq__list .faqItem:last-child {
  border-bottom: none;
  padding-bottom: 0px;
}

input,
textarea {
  border: 1px solid #d9d9d9;
  background: #f5f5f5;
  padding: 10px;
  border-radius: 5px;
  font-size: 16px;
}

input:focus,
textarea:focus {
  border-color: #d9d9d9;
  outline: none;
}

#contact {
  background: #0d4c83;
}
#contact .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1080px;
}
#contact .container .contact__info {
  display: flex;
  flex-direction: column;
  color: #ffffff;
  align-items: start;
  gap: 48px;
  width: 45%;
  box-sizing: border-box;
}
#contact .container .contact__info .contact__tel a {
  font-size: clamp(3rem, 4vw, 3.6rem);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.3rem;
  display: block;
}
#contact .container .contact__info .contact__tel a:before {
  content: "\f095";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 4px;
  font-size: clamp(2.6rem, 3vw, 3rem);
}
#contact .container .contact__info .contact__address p:before {
  content: "\f3c5";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 4px;
}
#contact .container .contact__form {
  background: #ffffff;
  padding: 24px;
  box-sizing: border-box;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 50%;
}
#contact .container .contact__form h3 {
  text-align: center;
}
#contact .container .contact__form form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
#contact .container .contact__form form.is-submitting .btn {
  opacity: 0.75;
  cursor: wait;
}
#contact .container .contact__form form .contactForm__trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
#contact .container .contact__form form .contactForm__row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#contact .container .contact__form form .contactForm__row .text {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: var(--fs-body);
}
#contact .container .contact__form form .contactForm__row .text span {
  background: #a63c3c;
  font-size: 1rem;
  color: #ffffff;
  padding: 2px 6px;
  border-radius: 20px;
  font-weight: 500;
}
#contact .container .contact__form form .contactForm__row .checkboxes {
  display: flex;
  flex-direction: column;
}
#contact .container .contact__form form .contactForm__status {
  margin: -8px 0 0;
  font-weight: 600;
}
#contact .container .contact__form form .contactForm__status[hidden] {
  display: none;
}
#contact .container .contact__form form .contactForm__status--success {
  color: #197a30;
}
#contact .container .contact__form form .contactForm__status--error {
  color: #a63c3c;
}
@media screen and (max-width: 768px) {
  #contact .container .contact__info {
    width: 100%;
  }
  #contact .container .contact__form {
    width: 100%;
  }
}

footer {
  background: #2b2b2b;
  padding: 64px 0px;
  color: #ffffff;
}
footer .container {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 40px 0px;
  }
  footer .container {
    flex-direction: column;
  }
  footer .container .footer__nav p {
    display: block;
    text-align: center;
    margin-top: 20px;
  }
}