@charset "UTF-8";

/* 基本スタイル */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Shippori Mincho", serif;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  transition: 0.2s;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

h2 {
  display: block;
}

*:focus {
  outline: none;
}

.br-sp, .sp_only {
  display: none;
}

@media (max-width: 768px) {
  .br-sp, .sp_only {
    display: block;
  }
  .pc_only {
    display: none;
  }
}

/* ヘッダー */
header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  margin: 0 auto;
}

.logo img {
  height: 40px;
}

.buttons img {
  height: 70px;
}

.buttons a {
  position: relative;
  display: inline-block;
  text-align: center;
  cursor: pointer;
}

/* FV */
.fv {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 700px;
  background: url("../img/fv-bg.png") center/cover;
  margin-top: -100px;
}

.fv-content {
  display: flex;
  width: 100%;
  max-width: 1200px;
  padding: 20px;
}

.text-image-left, .text-image-right {
  width: 50%;
  text-align: center;
}

.text-image-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.text-image-right img {
  position: relative;
  top: 50px;
  max-width: 100%;
  height: auto;
}

.text-image-left img {
  max-width: 100%;
  height: auto;
}

.fv-buttons {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.fv-buttons a:hover {
  transform: scale(1.1);
}


/* パートナー */
.partner {
  padding: 50px 0;
  background-color: #f4f0ee;
}

.partner h2 {
  display: block;
  position: relative;
  margin-bottom: 100px;
}

.partner h2 img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.slider_parent {
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

.slider_parent .slider {
  display: flex;
}

.logos {
  flex-shrink: 0;
}

.slider_parent ul {
  display: flex;
  padding: 0;
  margin: 0;
}

.slider_parent ul li {
  display: inline-block;
  margin: 0 10px;
}

.slider_parent ul li img {
  max-width: 100%;
}

.text_scroll {
  animation: scroll 60s linear infinite;
}

.text_scroll_reverse {
  animation: scroll 35s linear infinite reverse;
}

@keyframes scroll {
  to {
    transform: translateX(-100%);
  }
}

@media (max-width: 991px) {
  .slider_parent ul li {
    margin: 0 5px;
  }
  .slider_parent ul li img {
    height: 50px;
  }
  .text_scroll {
    animation-duration: 30s;
  }
}

/* 事例紹介 */
.case {
  padding: 50px 0;
  background: url("../img/case-bg.png") center/cover;
  overflow: hidden;
}

.case_content {
  position: relative;
  min-height: 480px;
  width: 700px;
  margin: 0 20px;
  padding: 30px;
  border-radius: 10px;
  background-color: #f5f5f5;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.campany {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.campany img {
  width: 200px;
}

.campany h3 span {
  padding: 2px 5px;
  color: white;
  background-color: #ba9a42;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.campany p {
  font-size: 24px;
  font-weight: bold;
}

.case_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.case_inner img {
  width: 50%;
  height: auto;
}

.case_inner h4 span {
  position: relative;
  color: #ba9a42;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.case_inner h4 span::before {
  content: "";
  position: relative;
  top: -2px;
  display: inline-block;
  width: 15px;
  height: 2px;
  margin-right: 5px;
  background-color: #ba9a42;
}

.case_inner p {
  font-size: 14px;
}

.slick-list {
  overflow: visible;
}

.slider2 {
  position: relative;
  padding: 10px 0;
}

.slick-prev, .slick-next {
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
}

.slick-prev { left: 20%; }
.slick-next { right: 20%; }

.slick-dots li button::before {
  font-size: 15px;
}

/* 課題と解決策 */
.problem {
  padding: 50px 0 80px;
  background: url("../img/problem-bg.png") top/cover;
  position: relative;
}

.problem h2 {
  position: relative;
  max-width: 900px;
  margin: 0 auto 200px;
}

.problem h2 img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.problem_content {
  display: flex;
  justify-content: center;
  gap: 20%;
}

.problem_content:nth-child(3) {
  gap: 30%;
}

.problem_content p {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  font-size: 24px;
  text-align: center;
  color: white;
  background: linear-gradient(#969696, #3c3c3c);
}

.problem-arrow {
  position: absolute;
  bottom: -18%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 600px;
  margin: 0 auto;
}

/* ソリューション */
.solution {
  padding: 80px 0;
  background: url("../img/solution-bg.png") center/cover;
  text-align: center;
}

.solution img {
  max-width: 800px;
  margin: auto;
}

/* 選ばれる理由 */
.reason {
  padding: 80px 0;
  background: url("../img/reason-bg.png") center/cover;
}

.reason h2 {
  position: relative;
  margin: 0 auto 200px;
}

.reason h2 img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.grad-border-block {
  max-width: 1000px;
  margin: 40px auto;
  padding: 2px;
  border-radius: 15px;
  background: linear-gradient(to right, #e1c665, #c59f40, #b1883b, #a47623);
}

.reason_content {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 350px;
  padding: 30px;
  gap: 40px;
  border-radius: 14px;
  background-color: white;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

.number {
  padding: 2px 4px;
  border-radius: 5px;
  color: white;
  background-color: #ba9a42;
}

.reason_content h3 {
  font-size: 24px;
  line-height: 1.4;
}

.red {
  background: linear-gradient(transparent 60%, #ffffbc 60%);
  color: #b92e41;
}

.big {
  font-size: 2em;
}

.reason_content p {
  margin-top: 10px;
  font-size: 16px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.reason_content img {
  width: 40%;
}

/* サービス対象範囲 */
.area {
  padding: 80px 0;
  background: url("../img/area-bg.png") center/cover;
}

.area h2 img {
  display: block;
  max-width: 500px;
  margin: 0 auto 50px;
}

.area_content {
  display: flex;
  justify-content: center;
  margin: 40px 0;
  gap: 40px;
}

.area_box {
  max-width: 400px;
  border-radius: 10px;
  background-color: white;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

.area_box h3 {
  padding: 5px;
  font-size: 24px;
  text-align: center;
  color: white;
  border-radius: 10px 10px 0 0;
  background-color: #4d4d4d;
}

.area_box img {
  display: block;
  width: 90%;
  margin: 10px auto;
}

/* CTA */
.cta {
  display: flex;
  justify-content: center;
  padding: 60px 0;
  gap: 50px;
  background: url("../img/cta-bg.png") center/cover;
}

.cta a img {
  max-width: 500px;
}
.cta a:hover {
  transform: scale(1.1);
}

/* 特徴 */
.feature {
  padding: 80px 0 50px;
  background: url("../img/feature-bg.png") center/cover;
}

.feature h2 {
  position: relative;
  max-width: 650px;
  margin: 0 auto 200px;
}

.feature h2 img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.feature_content {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.feature_inner, .feature_inner_right {
  position: absolute;
  top: 55%;
  transform: translate(-50%, -50%);
}

.feature_inner { left: 30%; }
.feature_inner_right { right: -15%; }

.feature_content h4 span {
  padding: 5px;
  font-size: 24px;
  background-color: #eee6d0;
}

.small-text {
  margin: 10px 0;
  font-size: 14px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.commitment {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 20px;
  font-size: 18px;
  font-weight: bold;
}

.commitment img {
  width: 70px;
}

/* コンサルタント紹介 */
.consultant {
  padding: 80px 0;
  background: linear-gradient(90deg, #fff, #e1d3ad);
}

.consultant_content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  border-radius: 10px;
  text-align: center;
  background-color: white;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

.consultant_content h2 {
  position: relative;
  width: 80%;
  margin: 0 auto;
  padding: 0 65px;
}

.consultant_content h2::before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ba9a42;
}

.consultant_content h2 span {
  position: relative;
  padding: 0 1em;
  font-size: 32px;
  background-color: white;
}

.consultant_img {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 20px;
}

.profile {
  width: 20%;
  height: auto;
}

.seo {
  width: 300px;
  margin-bottom: 10px;
}

.consultant_img p {
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
}

.consultant_img p span {
  padding-bottom: 4px;
  border-bottom: 1.5px dashed #ccc;
}

.profile_img {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 20px;
}

.profile_img img {
  width: 255px;
}

/* 費用 */
.cost {
  padding: 80px 0;
  background: url("../img/cost-bg.png") center/cover;
}

.cost h2 img {
  display: block;
  max-width: 500px;
  margin: 0 auto 50px;
}

.plan_content {
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: center;
}

.plan_content img {
  max-width: 343px;
}

.comments {
  text-align: center;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 14px;
  font-weight: bold;
}

.step-container {
  max-width: 1000px;
  margin: 20px auto;
  padding: 0 40px 20px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

.step-item {
  display: grid;
  align-items: center;
  gap: 20px;
  grid-template-columns: 80px 200px 1fr;
  grid-template-areas: "number title text";
  grid-template-rows: auto;
}

.step-number {
  grid-area: number;
  padding: 10px 0;
  font-size: 14px;
  text-align: center;
  line-height: 1.4rem;
  color: #fff;
}

.step-item:nth-child(1) .step-number { background-image: linear-gradient(to bottom, #c9b06b, #c2a658); }
.step-item:nth-child(2) .step-number { background-image: linear-gradient(to bottom, #c2a658, #bb9c45); }
.step-item:nth-child(3) .step-number { background-image: linear-gradient(to bottom, #bb9c45, #b59233); }
.step-item:nth-child(4) .step-number { background-image: linear-gradient(to bottom, #b59233, #ae8820); }
.step-item:nth-child(5) .step-number { background-image: linear-gradient(to bottom, #ae8820, #a67c0b); position: relative; }

.step-item:nth-child(5) .step-number::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 20px solid #a67c0a;
}

.step-number span {
  font-size: 32px;
}

.step-title {
  grid-area: title;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.step-text {
  grid-area: text;
  font-size: 14px;
  text-align: left;
  font-weight: bold;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.step-text a {
  color: #ba9a42;
  text-decoration: underline;
}

/* FAQ */
.qa {
  padding: 80px 0;
  background-color: #f2f2f2;
}

.qa h2 {
  position: relative;
  max-width: 550px;
  margin: 0 auto 200px;
}

.qa h2 img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.accordion {
  width: 80%;
  max-width: 1000px;
  margin: 20px auto;
}

.accordion-item {
  margin-bottom: 20px;
  border-radius: 10px;
  background-color: white;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  cursor: pointer;
}

.question-mark {
  padding: 5px 15px;
  font-size: 28px;
  color: white;
  border-radius: 10px 0 0 10px;
  background-color: #ba9a42;
  font-family: "DM Sans", sans-serif;
}

.toggle-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  margin-right: 10px;
  border-radius: 50%;
  color: white;
  background-color: #808080;
}

.accordion-content {
  position: relative;
  padding: 20px;
  font-size: 14px;
  text-align: center;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  display: none;
}

.accordion-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5px;
  height: 12px;
  background-color: #333;
}

.accordion-content.open {
  display: block;
}

.accordion-header.open .question-mark {
  border-radius: 10px 0 0 0;
}

/* フォーム */
.form {
  padding: 80px 0;
}

.form h2 {
  font-size: 40px;
  text-align: center;
}

.form h2::before {
  content: "CONTACT";
  display: block;
  font-size: 24px;
  text-align: center;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.hbspt-form {
  width: 90%;
  max-width: 800px;
}

fieldset {
  width: 100% !important;
  max-width: 1000px !important;
}

.hs-form-field {
  display: grid;
  grid-template-columns: auto 1fr;
  margin-bottom: 20px;
  align-items: flex-start;
  width: 100%;
}

.hs-email {
  margin-bottom: 0px;
}

.hs-phone {
  margin-top: 20px;
}

.hs-fieldtype-radio {
  align-items: center;
}

.hs-form-field > label {
  background-color: #808080; /* 項目の背景色 */
  color: white; /* 項目の文字色（背景色に合わせて変更すると見やすくなります） */
  padding: 8px; /* 必要に応じてpaddingを追加 */
  width: 200px;
  text-align: center;
}

.hs-form-field > .input > input[type="text"],
.hs-form-field > .input > input[type="email"],
.hs-form-field > .input > input[type="tel"],
.hs-form-field > .input > textarea {
  width: 100% !important;
  padding: 8px;
  background-color: #f2f2f2; /* 入力欄の背景色（親要素に指定） */
  border: none;
  box-sizing: border-box;
}

#label-message-85e7d0cf-9ff2-421a-b80a-8dff0959a33f {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hs-form-field > .input > textarea {
  min-height: 150px;
}

.inputs-list {
  display: flex;
}

.inputs-list li {
  margin-left: 10px;
}

.hs-field-desc {
  display: none !important;
}

.legal-consent-container {
  margin-bottom: 20px;
}

.actions {
  text-align: center;
  margin-top: 30px;
}

.hs-button {
  background-color: #b92e41;
  border: none;
  color: white;
  width: 300px;
  border-radius: 5px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  padding: 10px;
  position: relative;
  font-weight: bold;
  font-size: 24px;
  cursor: pointer;
}


/* フッター */
footer {
  padding: 10px;
  font-size: 14px;
  text-align: center;
  color: white;
  background-color: #4d4d4d;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

/* レスポンシブ */
@media (max-width: 768px) {
  header, .fv-content {
    display: none;
  }

  .fv {
    display: block;
    height: auto;
    background: none;
    margin-top: 0;
  }

  .cta-area {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
  }

  .cta-button {
    position: relative;
    display: inline-block;
    padding: 25px 5px;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    text-align: center;
    border: none;
  }

  .consulting { background-color: #b92e41; width: 50%; }
  .document { background-color: #4d4d4d; width: 50%; }

  .consulting::before, .document::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid #fff;
  }

  /* パートナー */
  .partner {
    padding: 20px 0;
  }

  .partner h2 {
    width: 90%;
    max-width: 450px;
    margin: 0 auto 130px;
  }

  /* 事例紹介 */
  .case {
    padding: 20px 0;
    overflow: hidden;
  }

  .case_content {
    width: 90%;
    margin: 0 10px;
    padding: 20px;
  }

  .campany {
    display: block;
    text-align: center;
    margin-bottom: 10px;
    gap: 0px;
  }

  .campany img {
    width: 200px;
    display: block;
    margin: 0 auto 10px;
  }

  .campany h3 {
    margin-bottom: 10px;
  }

  .campany h3 span {
    padding: 2px 5px;
    color: white;
    background-color: #ba9a42;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
  }

  .campany p {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .case_inner {
    display: block;
    margin-top: 20px;
    gap: 20px;
    align-items: center;
    justify-content: center;
  }

  .case_inner img {
    width: 50%;
    height: auto;
  }

  .case_inner h4 span {
    position: relative;
    color: #ba9a42;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
  }

  .case_inner h4 span::before {
    content: "";
    position: relative;
    top: -2px;
    display: inline-block;
    width: 15px;
    height: 2px;
    margin-right: 5px;
    background-color: #ba9a42;
  }

  .case_inner p {
    font-size: 14px;
  }

  .slick-list {
    overflow: visible;
  }

  .slider2 {
    position: relative;
    padding: 10px 0;
  }

  .slick-prev, .slick-next {
    position: absolute;
    top: 50%;
    z-index: 1;
    width: 40px;
    height: 40px;
    transform: translateY(-50%);
  }

  .slick-prev { left: 2%; }
  .slick-next { right: 2%; }

  .slick-dots li button::before {
    font-size: 15px;
  }

  /* 課題と解決策 */
  .problem {
    padding: 50px 0 0;
  }

  .problem h2 {
    width: 90%;
    max-width: 450px;
    margin: 0 auto 120px;
  }

  .problem_content {
    display: flex;
    margin: 5px 0;
    gap: 10px;
    justify-content: center;
  }

  .problem_content:nth-child(3) {
    gap: 10px;
  }

  .problem-arrow {
    position: relative;
    bottom: -50px;
    left: 50%;
    width: 95%;
    margin: -50px 0;
    transform: translateX(-50%);
  }

  .problem_content p {
    width: 150px;
    height: 150px;
    font-size: 18px;
  }

  .solution {
    padding: 0;
    background: none;
  }

  .solution img {
    width: 100%;
  }

  .reason {
    padding: 40px 0;
    background: url(../img/reason-bg.png) right top / 200%;
    background-repeat: no-repeat;
  }

  .reason h2 {
    width: 90%;
    max-width: 450px;
  }

  .grad-border-block {
    width: 90%;
    margin: 20px auto;
  }

  .reason_content {
    display: block;
    padding: 20px;
  }

  .reason_content h3 {
    margin-top: -10px;
  }

  .reason_content img {
    width: 100%;
  }

  .area {
    padding: 40px 0 20px;
    background: url("../img/area-bg.png") left top /cover;
  }

  .area h2 img {
    width: 90%;
    margin: 0 auto 30px;
  }

  .area_content {
    display: block;
  }

  .area_box {
    width: 90%;
    margin: 20px auto;
  }

  .cta {
    display: block;
    padding: 20px 0;
    background: url("../img/cta-bg.png") center/cover;
  }

  .cta a img {
    width: 95%;
    margin: auto;
  }

  .feature {
    padding: 40px 0 50px;
  }

  .feature h2 {
    width: 90%;
    margin: 0 auto 220px;
    max-width: 450px;
  }

  .feature_content {
    width: 95%;
    margin: 0 auto;
    position: relative;
  }

  .feature_inner, .feature_inner_right {
    top: 73%;
    left: 50%;
    width: 88%;
    position: absolute;
    transform: translate(-50%, -50%);
  }

  .feature_content h4 span {
    padding: 0px;
  }

  .commitment {
    gap: 10px;
    margin-top: 10px;
    font-size: 16px;
  }

  .commitment img {
    width: 70px;
  }

  .consultant {
    padding: 40px 0;
  }

  .consultant_content {
    padding: 20px;
    width: 95%;
  }

  .consultant_content h2 {
    width: 95%;
    padding: 0;
  }

  .consultant_content h2::before {
    display: none;
  }

  .consultant_content h2 span {
    padding: 0;
  }

  .consultant_img {
    display: block;
    margin-top: 20px;
    gap: 20px;
    justify-content: center;
  }

  .profile {
    width: 60%;
    max-width: 300px;
    display: block;
    margin: auto;
    height: auto;
  }

  .seo {
    width: 300px;
    margin: 10px auto;
    display: block;
  }

  .profile_img {
    display: flex;
    margin-top: 20px;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .profile_img img {
    width: 46%;
  }

  .profile_img img:nth-child(3) {
    width: 46%;
  }

  .cost {
    padding: 40px 0;
    background: url("../img/cost-bg.png") right top /cover;
  }

  .cost h2 img {
    width: 90%;
    margin: 0 auto 20px;
  }

  .plan_content {
    width: 95%;
    margin: auto;
    display: block;
  }
  
  .plan_content img {
    width: 100%;
    max-width: 500px;
    margin: auto;
  }
  
  .comments {
    font-size: 12px;
  }
  
  .step-container {
    width: 90%;
    margin: 20px auto;
    padding: 0 20px 20px;
  }
  
  .step-item {
    display: grid;
    gap: 10px;
    align-items: center;
    grid-template-areas: "number title title" "number text text";
    grid-template-columns: 80px 200px 1fr;
    grid-template-rows: auto auto;
  }
  
  .step-number {
    padding: 40px 0;
  }
  
  .step-title {
    font-size: 24px;
    text-align: left;
    font-weight: bold;
  }
  
  .step-text {
    font-size: 14px;
    text-align: left;
    font-weight: bold;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
  }
  
  .step-text a {
    color: #ba9a42;
    text-decoration: underline;
  }
  
  .qa {
    padding: 40px 0;
  }
  
  .qa h2 {
    width: 90%;
    margin: 0 auto 250px;
    max-width: 450px;
  }
  
  .accordion {
    width: 95%;
    margin: 20px auto;
  }
  
  .accordion-item {
    margin-bottom: 10px;
  }
  
  .accordion-header {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .question-mark {
    padding: 10px 20px;
    font-size: 32px;
    margin-right: 10px;
  }
  
  .toggle-icon {
    width: 25px;
    height: 25px;
  }
  
  .accordion-content {
    font-size: 14px;
    padding: 10px;
  }
  
  .form {
    padding: 20px 0;
  }
  
  .form h2 {
    font-size: 30px;
  }
  
  .form h2::before {
    font-size: 20px;
  }

  form {
    text-align: center;
  }
  
  .hs-form-field {
    display: block;
    margin-bottom: 10px;
}
  
  .hs-phone {
    margin-top: 10px;
  }
  
  .hs-form-field > label {
    width: 100%;
    display: block;
    padding: 4px;
  }
  
  .hs-form-field > .input > input[type="text"],
  .hs-form-field > .input > input[type="email"],
  .hs-form-field > .input > input[type="tel"],
  .hs-form-field > .input > textarea {
    text-align: center;
    width: 102.5% !important;
  }
  
  #label-message-85e7d0cf-9ff2-421a-b80a-8dff0959a33f {
    min-height: 0px;
  }
  
  .inputs-list {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    gap: 10px;
  }
  
  .inputs-list li {
    margin-left: 0px;
  }
  
  .hs-field-desc {
    display: none !important;
  }

  form p {
    font-size: 14px;
  }
  
  .legal-consent-container {
    margin-bottom: 20px;
  }
  
  .actions {
    text-align: center;
    margin-top: 30px;
  }
  
  .hs-button {
    background-color: #b92e41;
    border: none;
    color: white;
    width: 300px;
    border-radius: 5px;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    padding: 10px;
    position: relative;
    font-weight: bold;
    font-size: 24px;
    cursor: pointer;
  }
}
    