/*===============================
common
===============================*/

section {
  scroll-margin-top: 60px;
}

/*===============================
footer
===============================*/
.footer {
  background-color: #004896;
}

.footer__inner {
  width: 100%;
  max-width: var(--max-base-width);
  padding: 26px var(--padding-x-base-pc) 33px;
  margin: 0 auto;
}

.footer__nav-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.footer__nav-item {
  font-weight: normal;
  font-size: 16px;
  text-align: left;
  color: #fff;
  border-right: 1px solid #fff;
  padding-right: 28px;
  &:last-child {
    border-right: none;
    padding-right: 0;
  }
}

.footer__copyright {
  margin-top: 27px;
}

.footer__copyright-text {
  font-weight: normal;
  font-size: 14px;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 769px) {
  .footer__inner {
    padding-top: 46px;
    padding-bottom: 40px;
  }

  .footer__nav-list {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .footer__nav-item {
    border-right: 0;
    padding-right: 0;
    &:last-child {
      padding-right: 0;
    }
  }
  .footer__copyright {
    margin-top: 40px;
  }
  .footer__copyright-text {
    font-size: 12px;
    line-height: 16px;
    color: #fff;
  }
}

/*===============================
firstView
===============================*/

.fv_inner {
  margin: 0 calc(50% - 50vw);
  padding: 98px calc(50vw - 50%) 0;
  background-image: url("../img/page/lp/flywheel-ups/fv-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.fv_container {
  display: grid;
  grid-template-columns: auto 1fr;
}

.fv_content {
  font-weight: normal;
  font-size: 26px;
  text-align: center;
  color: #fff;
  margin-left: 36px;
}

.fv_hgroup {
  span {
    font-size: 26px;
  }

  h1 {
    margin-top: 20px;
    font-weight: bold;
    font-size: 40px;
    letter-spacing: 0.04em;
  }

  p {
    margin-top: 21px;
    font-size: 14px;
    line-height: 25px;
  }
}

.fv_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 63px;
  margin-left: auto;
  margin-right: auto;

  border: 1px solid #fff;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  color: #fff;
  width: 300px;
  height: 60px;
  span {
    position: relative;
    padding-right: 15px;
    &::after {
      content: "";
      position: absolute;
      top: 50%;
      right: 0;
      transform: translateY(-50%);
      width: 1px;
      height: 40px;
      background-color: #fff;
    }
  }
  .fv_icon {
    position: relative;
    aspect-ratio: 1/1;
    width: 12px;
  }
}

.fv_img1 {
  position: relative;
  top: -30px;
  aspect-ratio: 1198/829;
}

.fv_inner2 {
  margin: 0 calc(50% - 50vw);
  padding: 20px calc(50vw - 50%);
  background-color: #000000;
  color: white;
}

.fv_inner2_container {
  display: grid;
  grid-template-columns: auto 293px;
  gap: 112px;
  align-items: center;
  margin-left: 36px;
  margin-right: 100px;
}

.fv_text {
  font-weight: 500;
  font-size: 20px;
  line-height: 40px;
  text-align: left;
  color: #fff;
}

.fv_img2 {
  position: relative;
  aspect-ratio: 293/149;
}

@media screen and (max-width: 769px) {
  .fv_inner {
    padding-top: 30px;
    padding-bottom: 27px;
  }
  .fv_container {
    grid-template-columns: 1fr;
  }

  .fv_content {
    margin-left: 0;
  }
  .fv_hgroup {
    span {
      font-size: 20px;
    }

    h1 {
      margin-top: 8px;
      font-size: 30px;
    }

    p {
      margin-top: 12px;
      font-size: 14px;
    }
  }

  .fv_img1 {
    top: 0;
    max-width: 315px;
    margin-left: auto;
    margin-right: auto;
  }

  .fv_btn {
    margin-top: 7px;
    height: 45px;
    font-size: 16px;
    span {
      padding-right: 22px;
      text-align: center;
      margin-left: 40px;
      &::after {
        height: 24px;
      }
    }
  }

  .fv_inner2 {
    padding: 18px calc(50vw - 50%) 36px;
  }

  .fv_inner2_container {
    gap: 33px;
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
  }

  .fv_text {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    line-height: 24px;
  }

  .fv_img2 {
    max-width: 277px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

/*===============================
problem
===============================*/
.problem {
  position: relative;
  margin: 0 calc(50% - 50vw);
  padding: 68px calc(50vw - 50%) 60px;
  background-color: #f5f6f6;
  &::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);

    /* 三角形を作るコア部分 */
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 69px 60px 0 60px;
    border-color: #f5f6f6 transparent transparent transparent; /* 上辺以外を透明に */
  }
}

.problem_h2 {
  font-weight: bold;
  font-size: 26px;
  text-align: center;
  color: #555;
}

.problem_list {
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 42px;
  grid-template-rows: 1fr;
}

.problem_item {
  position: relative;
  background-color: #fff;
  padding: 55px 25px 29px;
  max-width: 300px;
  margin: 0 auto;
}

.problem_icon {
  position: absolute;
  top: -36px;
  left: 0;
  right: 0;
  margin: auto;
  aspect-ratio: 1/1;
  width: 80px;
}

.problem_h3 {
  font-weight: bold;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: #555;
}

.problem_text {
  margin-top: 42px;
  font-weight: 500;
  font-size: 16px;
  line-height: 32px;
  text-align: left;
  color: #555;
}

@media screen and (max-width: 769px) {
  .problem {
    padding-top: 50px;
    padding-bottom: 41px;
    &::before {
      border-width: 49px 42px 0 42px;
    }
  }

  .problem_h2 {
    font-size: 20px;
    line-height: 40px;
  }

  .problem_list {
    margin-top: 48px;
    gap: 48px;
  }

  .problem_text {
    margin-top: 32px;
  }
}

/*===============================
solution
===============================*/
.solution {
  padding: 132px 0 121px;
}

.solution_h2 {
  font-weight: bold;
  font-size: 26px;
  text-align: center;
  color: #555;

  em {
    font-style: normal;
    color: #004896;
  }

  span {
    background: linear-gradient(transparent 70%, #f0e478 70%);
  }
}

.solution_container {
  margin-top: 107px;
  display: grid;
  grid-template-columns: auto 1fr;
}

.solution_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 609px;
  margin-left: auto;
  margin-right: auto;
}

.solution_item {
  display: flex;
  gap: 16px;
}
.solution_icon {
  position: relative;
  aspect-ratio: 26 / 21;
  width: 25px;
  height: 21px;
  margin-top: 6px;
}

.solution_text {
  font-weight: 500;
  font-size: 20px;
  text-align: left;
  color: #555;
}

.solution_img-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.solution_img {
  position: absolute;
  top: -130px;
  left: 61px;
  aspect-ratio: 1743/886;
  width: 871px;
}

@media screen and (max-width: 769px) {
  .solution {
    padding-top: 69px;
    padding-bottom: 40px;
  }

  .solution_img {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 177px;
    margin-left: auto;
    margin-right: auto;
    height: auto;
  }

  .solution_h2 {
    margin-top: 18px;
    font-size: 20px;
    line-height: 24px;
  }

  .solution_container {
    display: block;
    margin-top: 17px;
  }
  .solution_list {
    max-width: unset;
  }
  .solution_item {
    gap: 8px;
  }
  .solution_icon {
    width: 16px;
    height: 16px;
  }

  .solution_text {
    font-size: 16px;
    line-height: 24px;
  }
}

/*===============================
cta
===============================*/

.cta {
  margin: 0 calc(50% - 50vw);
  padding: 180px calc(50vw - 50%) 112px;
  background-image: url("../img/page/lp/flywheel-ups/cta/cta-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.cta_text {
  font-weight: bold;
  font-size: 26px;
  text-align: center;
  color: #fff;
}

.cta_btn-wrapper {
  margin: 82px auto 0;
  width: 529px;
  height: 100px;
}

.cta-button {
  position: relative;
  display: grid;
  place-content: center;
  height: 100%;
  background-color: #ffffff;
  border: 2px solid #004896;
  width: 100%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  text-decoration: none;
}

.cta-button:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.cta-button__text {
  font-weight: bold;
  font-size: 25px;
  text-align: center;
  color: #004896;
}

.cta-button__icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  aspect-ratio: 37/60;
  width: 37px;
}

@media screen and (max-width: 769px) {
  .cta {
    padding-top: 55px;
    padding-bottom: 50px;
  }

  .cta_text {
    margin-top: 54px;
    font-size: 20px;
    line-height: 30px;
  }

  .cta_btn-wrapper {
    width: 300px;
    height: 45px;
  }

  .cta-button__text {
    font-size: 16px;
    line-height: 19px;
  }

  .cta-button__icon {
    width: 12px;
  }
}

/*===============================
feature
===============================*/
.feature {
  padding: 68px 0 73px;
}

.feature_h2 {
  font-weight: bold;
  font-size: 26px;
  text-align: center;
  color: #555;
}

.feature_list {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-template-rows: 332px;
  gap: 56px;
}

.feature_item {
  position: relative;
  background-color: #f5f6f6;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 1 / 1;
}

.feature_icon {
  position: absolute;
  top: -19px;
  left: 30px;
  right: 0;
  aspect-ratio: 203 / 142;
  width: 203px;
}

.feature_h3 {
  margin-top: 114px;
  font-weight: bold;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: #004896;
}

.feature_text {
  margin-top: 23px;
  font-weight: normal;
  font-size: 16px;
  line-height: 25px;
  text-align: left;
  color: #555;
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1280px) {
  .feature_list {
    grid-template-rows: repeat(2, 332px);
  }
}

@media screen and (max-width: 769px) {
  .feature {
    padding: 57px 0 50px;
  }

  .feature_list {
    gap: 20px;
    grid-template-rows: repeat(3, 332px);
  }
}

/*===============================
select
===============================*/
.select {
  margin: 0 calc(50% - 50vw);
  padding: 66px calc(50vw - 50%) 58px;
  background-color: #f5f6f6;
}

.select_h2 {
  font-weight: bold;
  font-size: 26px;
  line-height: 1.6;
  text-align: center;
  color: #555;
}

.select_text {
  margin-top: 31px;
  font-weight: normal;
  font-size: 20px;
  text-align: left;
  line-height: 1.6;
  color: #555;
  max-width: 838px;
  margin-left: auto;
  margin-right: auto;
}

.select_table {
  margin-top: 48px;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  border-collapse: separate; /* 必須：隙間を有効にする設定 */
  border-spacing: 20px 0; /* 横に15px、縦に0を指定 */
  span {
    display: block;
    border-bottom: 1px dashed #555555;
    width: 100%;
    padding-bottom: 19px;
  }
}

.select_table-new {
  padding: 0 16px;
  span {
    border-bottom: 1px dashed #fff;
  }
}

.select_table tr:first-child th,
.select_table tr:first-child td {
  font-weight: bold;
  font-size: 16px;
}

.select_table tr:first-child th {
  position: relative;
  top: 13px;
}
.select_table tr:first-child td {
  border-bottom: 0;
}

.select_table tr:first-child {
  border-bottom: 0;
}

.select_table tr:last-child td,
.select_table tr:last-child th {
  span {
    border-bottom: 0;
  }
}

.select_table-new {
  em {
    width: 100%;
    display: block;
    font-weight: bold;
    font-style: normal;
    font-size: 20px;
    line-height: 30px;
    text-align: left;
    background-color: #fff;
    padding: 20px 40px;
    color: #004896;
  }
}

.select_table-old {
  em {
    width: 100%;
    display: block;
    background-color: #f5f6f6;
    padding: 20px 40px;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: #555;
  }
}

.select_table-new {
  background-color: #004896;
  color: #fff;
}

.select_table-old {
  background-color: #fff;
  color: #555;
}

.select_table th,
.select_table td {
  padding: 22px 16px 0;
  font-size: 16px;
  line-height: 1.6;
  vertical-align: middle;
}

.select_table th {
  width: 20%;
  font-weight: 500;
  text-align: left;
  color: #555;
  background-color: transparent;
  text-align: center;
}

.select_table td {
  width: 40%;
  text-align: center;
}

@media screen and (max-width: 769px) {
  .select {
    padding-top: 50px;
    padding-bottom: 40px;
  }

  .select_h2 {
    font-size: 20px;
    line-height: 40px;
  }

  .select_text {
    margin-top: 20px;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }

  .select_table {
    margin-top: 30px;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .select_table th,
  .select_table td {
    position: relative;
    padding: 12px 10px;
    font-size: 12px;
    white-space: nowrap;
  }
}

.select_table tr:first-child th,
.select_table tr:first-child td {
  font-size: 16px;
}

.select_table th {
  min-width: 100px;
}

.select_table td {
  min-width: 140px;
}

/*===============================
usecase（最適なユースケース）
===============================*/
.usecase {
  padding: 80px 0;
}

.usecase__title {
  font-weight: bold;
  font-size: 26px;
  text-align: center;
  color: #555;
}

.usecase__container {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.usecase__card {
  background-color: #f5f6f6;
  border-radius: 8px;
  padding: 52px 28px;
  position: relative;
}

.usecase__card--flywheel {
  position: relative;
  border: 2px dashed #004896;
}

.usecase__card--battery {
  position: relative;
  border: 2px dashed #d2e2f2;
}

.usecase__card-title {
  display: inline-table;
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  margin: auto;
  font-weight: bold;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: #555;
  background: #f5f6f6;
}

.usecase__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.usecase__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.usecase__icon {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 7px;
}

.usecase__text {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

@media screen and (max-width: 769px) {
  .usecase {
    padding: 50px 0;
  }

  .usecase__title {
    font-size: 20px;
    line-height: 1.4;
  }

  .usecase__container {
    margin-top: 30px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .usecase__card {
    padding: 24px 20px;
  }

  .usecase__card-title {
    font-size: 18px;
  }

  .usecase__text {
    font-size: 14px;
  }
}

/*===============================
patent（特許技術）
===============================*/
.patent {
  background-image: url("../img/page/lp/flywheel-ups/patent/skil-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px calc(50vw - 50%);
  margin: 0 calc(50% - 50vw);
}

.patent__inner {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 384px 1fr;
  align-items: center;
  gap: 40px;
}

.patent__title {
  font-weight: bold;
  font-size: 26px;
  line-height: 40px;
  text-align: center;
  color: #fff;
}

.patent__text {
  margin-top: 50px;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  text-align: left;
  color: #fff;
}

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

.patent_icon {
  position: relative;
  aspect-ratio: 213/284;
  width: 100%;
}

@media screen and (max-width: 1280px) {
  .patent__inner {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 769px) {
  .patent {
    padding: 50px calc(50vw - 50%);
  }

  .patent__title {
    font-size: 22px;
    line-height: 1.4;
  }

  .patent__text {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.6;
  }

  .patent_list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .patent_icon {
    aspect-ratio: 14/5;
    width: 100%;
  }
}

/*===============================
flow（導入までの流れ）
===============================*/
.flow {
  margin: 0 calc(50% - 50vw);
  padding: 68px calc(50vw - 50%) 73px;
  background-color: #f5f6f6;
}

.flow_h2 {
  font-weight: bold;
  font-size: 26px;
  text-align: center;
  color: #555;
}

.flow_list {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-template-rows: 332px;
  gap: 56px;
}

.flow_item {
  position: relative;
  background-color: #fff;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 1 / 1;
}

.flow_icon {
  position: absolute;
  top: 5px;
  left: 20px;
  right: 0;
  aspect-ratio: 203 / 142;
  width: 203px;
}

.flow_h3 {
  margin-top: 114px;
  font-weight: bold;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: #004896;
}

.flow_text {
  margin-top: 23px;
  font-weight: normal;
  font-size: 16px;
  line-height: 25px;
  text-align: left;
  color: #555;
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1280px) {
  .flow_list {
    grid-template-rows: repeat(2, 332px);
  }
}

@media screen and (max-width: 769px) {
  .flow {
    padding: 57px calc(50vw - 50%) 50px;
  }

  .flow_list {
    gap: 20px;
    grid-template-rows: repeat(3, 332px);
  }
}

/*===============================
faq（よくあるご質問）
===============================*/
.faq {
  padding: 68px 0 119px;
}

.faq__title {
  font-weight: bold;
  font-size: 26px;
  text-align: center;
  color: #555;
}

.faq_list {
  margin-top: 77px;
}

.faq_details {
  border-bottom: 1px dashed #707070;
  padding: 22px 60px 20px;
  &:first-child {
    border-top: 1px dashed #707070;
  }
  &[open] {
    .faq_summary {
      &::after {
        background-image: url("../img/icon/accordion-close.svg");
      }
    }
  }
}

.faq_summary {
  display: flex;
  align-items: center;
  justify-content: space-between;

  font-weight: bold;
  font-size: 20px;
  line-height: 30px;
  text-align: left;
  color: #004896;

  &::after {
    content: "";
    aspect-ratio: 1 / 1;
    height: 30px;
    background-image: url("../img/icon/accordion-open.svg");
    background-repeat: no-repeat;
  }
}

.faq_answer {
  padding: 19px 13px;
  background-color: #f5f6f6;
  margin-top: 18px;
  font-weight: normal;
  font-size: 16px;
  line-height: 25px;
  text-align: left;
  color: #555;
}

@media screen and (max-width: 769px) {
  .faq {
    padding: 57px 0 50px;
  }

  .faq_list {
    margin-top: 33px;
  }

  .faq_details {
    padding: 20px 0 21px;
  }

  .faq_summary {
    font-size: 16px;
    line-height: 30px;
  }

  .faq_answer {
    padding: 8px 12px 12px;
  }
}

/*===============================
contact-form（お問い合わせフォーム）
===============================*/
.contact-form {
  background-color: #f5f6f6;
  padding: 50px calc(50vw - 50%) 60px;
  margin: 0 calc(50% - 50vw);
}

.contact-form__title {
  font-weight: bold;
  font-size: 26px;
  text-align: center;
  color: #555;
}

.contact-form__lead {
  margin-top: 28px;
  font-weight: normal;
  font-size: 20px;
  line-height: 1.6;
  text-align: center;
  color: #555;
}

.contact-form__form {
  margin-top: 32px;
  background-color: #fff;
  padding: 47px 50px 50px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.contact-form__field {
  margin-bottom: 20px;
}

.contact-form__fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.contact-form__label {
  display: block;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.5;
  color: #555;
  margin-bottom: 8px;
}

.contact-form__required {
  color: #e53935;
  margin-left: 2px;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  line-height: 1.5;
  color: #555;
  background-color: #f5f6f6;
  border: 1px solid #d0d4d4;
  border-radius: 4px;
  transition: border-color 0.2s ease;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: #004896;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: #aaa;
}

.contact-form__textarea {
  resize: vertical;
  height: 71px;
  min-height: 46px;
}

.contact-form__checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  row-gap: 16px;
}

.contact-form__checkbox-label {
  display: flex;
  gap: 8px;
  cursor: pointer;
}

.contact-form__checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-top: 5px;
  aspect-ratio: 1/1;

  /* Custom Style */
  appearance: none;
  -webkit-appearance: none;
  background-color: #f5f6f6;
  border: 1px solid #d0d4d4;

  position: relative;
}

.contact-form__checkbox:checked {
  background-color: #004896;
  border-color: #004896;
}

.contact-form__checkbox:checked::after {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 10px;
  height: 6px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
}

.contact-form__checkbox-text {
  font-weight: normal;
  font-size: 16px;
  line-height: 25px;
  text-align: left;
  color: #555;
}

.contact-form__field--privacy {
  margin-top: 14px;
  text-align: center;
}

.contact-form__field--privacy .contact-form__checkbox-label {
  justify-content: center;
}

.contact-form__link {
  color: #004896;
  text-decoration: underline;
}

.contact-form__link:hover {
  text-decoration: none;
}

.contact-form__submit {
  margin-top: 56px;
  text-align: center;
}

.contact-form__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-weight: bold;
  font-size: 25px;
  color: #fff;

  background-color: #004896;
  width: 529px;
  height: 100px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.contact-form__icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  aspect-ratio: 19/30;
  width: 36px;
}

.contact-form__button:hover {
  background-color: #003670;
  transform: translateY(-2px);
}

.contact-form__button:active {
  transform: translateY(0);
}

@media screen and (max-width: 769px) {
  .contact-form {
    padding: 50px calc(50vw - 50%);
  }

  .contact-form__title {
    font-size: 20px;
    line-height: 1.6;
  }

  .contact-form__lead {
    margin-top: 31px;
    font-size: 16px;
    text-align: left;
  }

  .contact-form__form {
    margin-top: 30px;
    padding: 27px 24px 50px;
  }

  .contact-form__row {
    display: block;
  }

  .contact-form__field {
    margin-bottom: 20px;
  }

  .contact-form__label {
    font-size: 16px;
  }

  .contact-form__input,
  .contact-form__textarea {
    padding: 12px 14px;
    font-size: 16px;
  }

  .contact-form__checkbox-group {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .contact-form__checkbox-text {
    font-size: 16px;
  }

  .contact-form__submit {
    margin-top: 30px;
  }

  .contact-form__button {
    width: 100%;
    font-size: 16px;
    color: #fff;
    width: 300px;
    height: 45px;
  }

  .contact-form__icon {
    width: 15px;
    right: 6px;
  }
}
