@charset "UTF-8";

:root {
  /* 色管理用の変数 */
  --black-color: #232323;
  --white-color: #fff;
  --gray-color: #9a9a9a;
  --primary-color: #ff8d24;
  --primary-color2: #ffd6c1;
  --primary-color3: #fcf1ea;
  --accent-color: #eacd40;
}

:root {
  /* コンテンツ幅管理用の変数 */
  --content-width-sm: 900px;
  --content-width: 1280px;
  --content-width-lg: 1920px;
}

:root {
  /* z-index管理用の変数 */
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-header: 100;
  --z-index-menu: 150;
  --z-index-modal: 200;
}

/* ---------- base ---------- */
body {
  color: var(--black-color);
  font-size: 24px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

/* ---------- utility ---------- */
.u_sp-br {
  display: none;
}
@media screen and (max-width: 500px) {
  .u_sm-dn {
    display: none;
  }
}

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

  .u_sp-br {
    display: block;
  }
}

/* ---------- layout ---------- */

.l_container-sm,
.l_container,
.l_container-lg {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  text-align: center;
}

.l_container-sm {
  max-width: calc(var(--content-width-sm) + 32px);
}

.l_container {
  max-width: calc(var(--content-width) + 32px);
}

.l_container-lg {
  max-width: calc(var(--content-width-lg) + 32px);
}

.l_contents {
  padding: 160px 0;
}

@media screen and (max-width: 768px) {
  .l_contents {
    padding: 48px 0;
  }
}

.l_header {
  height: 100px;
  width: 100%;
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-index-header);
}

@media screen and (max-width: 768px) {
  .l_header {
    height: 50px;
    padding: 0px;
  }
}

.l_header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--content-width-lg);
  width: 100%;
  height: 64px;
  margin: 0 auto;
}

.l_header-logo {
  height: 100%;
  width: 350px;
}

@media screen and (max-width: 768px) {
  .l_header-logo {
    width: 191px;
    margin-top: 24px;
  }
}

.l_header-logo_link img {
  width: 100%;
  height: auto;
}

.l_header-right {
  display: flex;
}

/* ---------- hamburger ---------- */
.l_menu-wrapper {
  display: none;
  position: relative;
}

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

.menu-icon {
  width: 40px;
  height: 30px;
  position: fixed; /* ← fixedにして常に右上固定 */
  top: 20px;
  right: 20px;
  cursor: pointer;
  z-index: var(--z-index-modal);
  display: inline-block;
}

.menu-icon span {
  display: block;
  height: 4px;
  margin: 6px 0;
  background: #333;
  border-radius: 2px;
  transition: 0.4s;
}

/* ハンバーガーがXに変形 */
#menu-toggle:checked + .menu-icon span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
#menu-toggle:checked + .menu-icon span:nth-child(2) {
  opacity: 0;
}
#menu-toggle:checked + .menu-icon span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* オーバーレイ背景 */
.l_overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
  z-index: 1;
}

#menu-toggle:checked ~ .l_overlay {
  opacity: 1;
  pointer-events: auto;
}

/* メニュー本体（右から出す） */
.l_header-nav {
  position: fixed;
  top: 0;
  right: -250px; /* ← 初期位置を右へ */
  width: 250px;
  height: 100%;
  background: #fff;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
  transition: right 0.4s ease;
  z-index: var(--z-index-menu);
}

#menu-toggle:checked ~ .l_header-nav {
  right: 0; /* ← 開いたときは右0へ */
}

.l_header-nav_list {
  list-style: none;
  padding: 60px 20px;
}

.l_header-nav_item {
  margin: 16px 0;
}

.l_header-nav_link {
  text-decoration: none;
  color: var(--black-color);
  font-size: 14px;
  transition: color 0.3s;
}

.l_header-nav_link:hover {
  color: var(--primary-color);
}

.l_footer {
  background-color: var(--black-color);
  text-align: center;
  padding: 124px 0 160px;
}

@media screen and (max-width: 768px) {
  .l_footer {
    padding: 80px 0;
  }
}

.l_footer_logo {
  width: 518px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .l_footer_logo {
    width: 191px;
  }
}

.l_footer_desc {
  display: flex;
  flex-direction: column;
  gap: 32px;
  color: var(--white-color);
  margin: 56px 0 56px;
}

@media screen and (max-width: 768px) {
  .l_footer_desc {
    gap: 16px;
    color: var(--white-color);
    font-size: 12px;
    margin: 32px 0 56px;
  }
}

.l_footer_txt {
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .l_footer_txt {
    font-size: 12px;
  }
}

.l_footer_txt_strong {
  font-weight: bold;
  font-size: 28px;
}

@media screen and (max-width: 768px) {
  .l_footer_txt_strong {
    font-size: 12px;
  }
}

.l_footer_copyright {
  font-size: 16px;
  color: var(--white-color);
}

@media screen and (max-width: 768px) {
  .l_footer_copyright {
    font-size: 10px;
  }
}
/* ---------- kv ---------- */
.kv_box {
  width: 100%;
}

.kv_img_pc {
  width: 100%;
  height: auto;
  display: block;
}

.kv_box__sp {
  display: none;
}

@media screen and (max-width: 500px) {
  .kv_box {
    display: none;
  }

  .kv_box__sp {
    display: block;
    width: 100%;
  }

  .kv_img_sp {
    width: 100%;
    height: auto;
    display: block; /* ← 謎の余白防止 */
  }
}

/* ---------- matter ---------- */
#matter {
  background-color: var(--primary-color3);
  text-align: center;
}

.matter_wrapper {
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
}

.matter_box__sp {
  display: none;
}

@media screen and (max-width: 1280px) {
  .matter_box__sp {
    display: block;
    margin-top: 40px;
  }

  .matter_wrapper {
    display: none;
  }
}

.matter_bg {
  background-image:
    url(../img/matter-frame-up.png), url(../img/matter-frame-bottom.png);
  min-height: 100vh;
  background-repeat: no-repeat, no-repeat;
  background-position:
    top left,
    right bottom;
}

@media screen and (max-width: 768px) {
  .matter_bg {
    background-image:
      url(../img/matter-frame-up.png), url(../img/matter-frame-bottom.png);
    background-size: 50%, 50%;
  }
}

.matter_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-bottom: 80px;
}

.matter_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.matter_box_img {
  width: 269px;
}

.matter_solution-button {
  max-width: 1280px;
  margin: 0 auto;
}

/* ---------- feature ---------- */
.feature_triangle {
  background-image: url(../img/triangle.png);
  background-repeat: no-repeat;
  background-position: top;
}

@media screen and (max-width: 768px) {
  .feature_triangle {
    background: none;
  }
}

.feature_bg {
  background-image: url(../img/feature-bg.png);
}

.feature_wrapper {
  margin-top: 120px;
}

@media screen and (max-width: 768px) {
  .feature_wrapper {
    margin-top: 48px;
  }
}

.feature_flex {
  display: flex;
  justify-content: center;
  align-items: stretch;
  height: 754px;
  gap: 24px;
  margin-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .feature_flex {
    flex-direction: column;
    height: auto;
    gap: 32px;
    margin-bottom: 48px;
  }
}

.feature_box {
  width: 33%;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 768px) {
  .feature_box {
    width: 100%;
  }
}

.feature_box_title {
  display: inline-block;
  margin: 0 auto -5px;
  z-index: 1;
  width: 146px;
  height: 80px;
  border-radius: 50% / 100% 100% 0 0;
  background: var(--primary-color);
}

.feature_box_title__small {
  font-size: 24px;
  font-family: "Alike", serif;
  color: var(--white-color);
}

@media screen and (max-width: 768px) {
  .feature_box_title__small {
    margin-top: 8px;
    font-size: 18px;
  }
}

.feature_box_title__number {
  font-size: 36px;
  font-family: "Alike", serif;
  color: var(--white-color);
}

@media screen and (max-width: 768px) {
  .feature_box_title__number {
    font-size: 30px;
  }
}

.feature_box_wrapper {
  flex: 1;
  border: 5px solid var(--primary-color);
  background-color: var(--primary-color3);
  border-radius: 50px;
  padding: 20px 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature_box_img img {
  width: 80%;
  height: 206px;
  object-fit: contain;
}

.feature_txt {
  font-size: 20px;
  font-weight: bold;
  text-align: justify;
}

@media screen and (max-width: 768px) {
  .feature_txt {
    font-size: 14px;
  }
}

.feature_movie {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9のアスペクト比 */
  height: 0;
}

.feature_movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ---------- support ---------- */
#support {
  background-color: var(--primary-color3);
  text-align: center;
}

.support_comment {
  margin-top: 120px;
}

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

.support_comment__image {
  max-width: 1090px;
}

.support_comment__sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .support_comment__sp {
    display: block;
    max-width: 90%;
    margin: 0 auto;
    margin-top: 40px;
  }
}

.support_memo {
  margin-top: 24px;
}

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

.support_memo__image {
  max-width: 1280px;
}

.support_memo__sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .support_memo__sp {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    margin-top: 12px;
  }
}

.support_desc {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

@media screen and (max-width: 768px) {
  .support_desc {
    gap: 6px;
    margin-top: 12px;
  }
}

.support_desc__img {
  width: 57px;
}

@media screen and (max-width: 768px) {
  .support_desc__img {
    width: 39px;
  }
}

.support_desc__text {
  font-size: 32px;
}

@media screen and (max-width: 768px) {
  .support_desc__text {
    font-size: 14px;
  }
}

/* ---------- voices ---------- */
.voices_bg {
  background:
    linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),
    url(../img/voices-bg.png) no-repeat left top / cover;
}

.voices_wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  margin-top: 120px;
}

@media screen and (max-width: 1280px) {
  .voices_wrapper {
    flex-direction: column;
    gap: 24px;
    margin-top: 48px;
  }
}

.voices-box {
  background-color: var(--white-color);
  border-radius: 30px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
  width: 33%;
}

@media screen and (max-width: 1280px) {
  .voices-box {
    width: 100%;
  }
}

.voices-box_title {
  background-color: var(--primary-color);
  border-radius: 30px 30px 0 0;
  padding: 8px 13px;
  color: var(--white-color);
  font-weight: bold;
}

.voices-box_title__job {
  font-size: 32px;
}

.voices-box_title__age {
  font-size: 24px;
}

.voices-box_movie {
  height: 240px;
  background-color: var(--white-color);
}

/* @media screen and (max-width: 1280px) {
  .voices-box_movie {
    height: 240px;
    background-color: var(--white-color);
  }
} */

.voices-box_ba {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 24px;
}

@media screen and (max-width: 768px) {
  .voices-box_ba {
    gap: 0px;
    padding: 24px 0;
  }
}

.voices-img {
  margin: 0 auto;
}

.voices-box_txt {
  background-color: var(--primary-color3);
  font-size: 20px;
  padding: 12px;
  border-radius: 18px;
  margin: 0 24px 40px;
  text-align: justify;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .voices-box_txt {
    font-size: 14px;
  }
}

.voices_notes {
  text-align: right;
  font-size: 20px;
  font-weight: bold;
  margin-top: 24px;
}

@media screen and (max-width: 768px) {
  .voices_notes {
  text-align: left;
  font-size: 12px;
  margin-top: 8px;
}
}

/* ---------- comparison ---------- */
#comparison {
  background-color: #ffae54;
}

.comparison_wrapper {
  margin-top: 104px;
}

@media screen and (max-width: 1280px) {
  .comparison_wrapper {
    margin-top: 40px;
  }
}

.comparison_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
}

@media screen and (max-width: 1280px) {
  .comparison_wrapper {
    flex-direction: column-reverse;
    gap: 48px;
  }
}

.comparison-txt_logo {
  width: 140px;
  height: 104px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .comparison-txt_logo {
    width: 74px;
    height: 55px;
  }
}

.comparison-txt_title {
  font-size: 32px;
  font-weight: bold;
  color: var(--white-color);
  padding: 26px 0 16px;
}

@media screen and (max-width: 768px) {
  .comparison-txt_title {
    font-size: 18px;
    padding: 16px 0 16px;
  }
}

.comparison-txt_copy {
  padding: 33px 0 13px;
  width: 80%;
  margin: 0 auto;
}

.comparison-txt_sub {
  color: var(--white-color);
  font-size: 24px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .comparison-txt_sub {
    font-size: 16px;
  }
}

.comparison-txt_p {
  color: var(--white-color);
  font-size: 18px;
  margin-top: 32px;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .comparison-txt_p {
    font-size: 10px;
    margin-top: 24px;
  }
}

/* ---------- flow ---------- */
.flow_wrapper {
  margin-top: 98px;
}

@media screen and (max-width: 768px) {
  .flow_wrapper {
    margin-top: 32px;
  }
}

.flow_container:not(:last-child) {
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .flow_container:not(:last-child) {
    margin-bottom: 24px;
  }
}

.flow_title-box img {
  height: 93px;
  width: auto;
  margin-bottom: 16px;
}

.flow_title-box__sp {
  display: none;
}

@media screen and (max-width: 1280px) {
  .flow_title-box {
    display: none;
  }
  .flow_title-box__sp {
    display: block;
  }
  .flow_title-box__sp img {
    height: 46px;
    width: auto;
    margin-bottom: 16px;
  }
}

.flow_title-box_title {
  font-size: 32px;
  color: var(--primary-color);
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .flow_title-box_title {
    font-size: 18px;
  }
}

.flow_comment-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 26px;
}

@media screen and (max-width: 1280px) {
  .flow_comment-wrapper {
    flex-direction: column;
    gap: 8px;
    margin-top: 52px;
  }
}

.flow_comment-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 36px;
  width: calc(100% / 3);
  border: 5px solid var(--primary-color);
  border-radius: 30px;
  background-color: var(--primary-color3);
}

@media screen and (max-width: 1280px) {
  .flow_comment-box {
    width: 100%;
    padding: 16px;
  }
}

.flow_comment-box .fa-comment-dots {
  font-size: 64px;
}

.flow_comment-box_title {
  font-size: 24px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .flow_comment-box_title {
    font-size: 14px;
  }
}

.flow_txt-box {
  background-color: var(--primary-color3);
  box-shadow: 5px 5px var(--primary-color2);
  padding: 24px 0 32px;
  border-radius: 30px;
}

.flow_txt_first {
  margin: 16px 0 56px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .flow_txt_first {
    font-size: 14px;
  }
}

.flow_txt {
  font-size: 24px;
  font-weight: bold;
  margin-top: 16px;
}

@media screen and (max-width: 768px) {
  .flow_txt {
    font-size: 12px;
  }
}

/* ---------- faq ---------- */
#faq {
  background-color: var(--primary-color3);
}

.faq_bg {
  background-image:
    url(../img/matter-frame-up.png), url(../img/matter-frame-bottom.png);
  min-height: 100vh;
  background-repeat: no-repeat, no-repeat;
  background-position:
    top left,
    right bottom;
}

@media screen and (max-width: 768px) {
  .faq_bg {
    background-image:
      url(../img/matter-frame-up.png), url(../img/matter-frame-bottom.png);
    background-size: 50%, 50%;
  }
}

.faq_wrapper {
  margin-top: 120px;
}

@media screen and (max-width: 768px) {
  .faq_wrapper {
    margin-top: 40px;
  }
}

.faq_q {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ff8c1a;
  color: #fff;
  padding: 14px 20px;
  font-weight: 600;
  text-align: left;
}

.faq_q p {
  margin: 0;
}

@media screen and (max-width: 768px) {
  .faq_q {
    font-size: 14px;
    padding: 12px 8px;
  }
}

.faq_a {
  display: flex;
  background: #fff;
}

@media screen and (max-width: 768px) {
  .faq_a {
    font-size: 12px;
  }
}

.faq_triangle {
  position: relative;
  width: 0;
  height: 0;
  border-top: 100px solid transparent;
  border-bottom: 100px solid transparent;
  border-left: 100px solid #ffe6d0;
}

.faq_label_a__sp {
  display: none;
}

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

  .faq_label_a__sp {
    position: static;
    transform: none;
    margin-right: 8px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: var(--primary-color2);
    height: 20px;
    padding: 4px 6px;
    margin-top: 16px;
    font-weight: 700;
  }
}

.faq_a_body {
  display: flex;
  gap: 12px;
  padding: 40px;
  align-items: center;
  text-align: justify;
}

.faq_a_body p {
  margin: 0;
}

@media screen and (max-width: 768px) {
  .faq_a_body {
    padding: 16px 16px 16px 6px;
  }
}

.faq_label {
  font-weight: 700;
  white-space: nowrap;
}

.faq_label_a {
  position: absolute;
  top: 50%;
  left: -48px;
  transform: translateY(-50%);
  font-weight: 700;
  color: var(--black-color);
  font-size: 32px;
}

.faq_item:last-child .faq_a {
  border-bottom: 2px solid #ff8c1a;
}

.faq_triangle_bottom {
  background-image: url(../img/triangle02.png);
  background-repeat: no-repeat;
  background-position: top;
  height: 68px;
}

@media screen and (max-width: 768px) {
  .faq_triangle_bottom {
    background-image: url(../img/triangle02.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: contain;
    height: 34px;
  }
}

.faq_cta_txt {
  display: none;
}

@media screen and (max-width: 768px) {
  .faq_cta_txt {
  display: block;
  font-size: 14px;
  font-weight: bold;
  margin-top: 24px;
}
}

/* ---------- cta ---------- */
.cta_bg {
  background:
    linear-gradient(rgba(35, 35, 35, 0.5), rgba(35, 35, 35, 0.5)),
    url(../img/cta-bg.png) no-repeat left top / cover;
}

.cta_wrapper {
  background-color: var(--white-color);
  border: 5px solid var(--primary-color);
  border-radius: 30px;
  padding: 64px 96px;
}

@media screen and (max-width: 768px) {
  .cta_wrapper {
    padding: 36px 8px;
  }
}

.cta_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 104px;
}

@media screen and (max-width: 768px) {
  .cta_flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 18px;
  }
}

.cta_logo {
  width: 436px;
  margin: 0 auto;
}

.cta_logo__sp {
  display: none;
}

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

  .cta_logo__sp {
    display: block;
    width: 74px;
    margin: 0 auto;
  }
}

.cta_txt {
  font-size: 28px;
  font-weight: bold;
  padding: 42px 0 48px;
}

@media screen and (max-width: 1280px) {
  .cta_txt {
    font-size: 14px;
    padding: 10px 0 16px;
  }

  .cta_img {
    width: 80%;
  }
}

.cta_banner {
  margin-top: 64px;
}

.fa-caret-down {
  font-size: 64px;
}

@media screen and (max-width: 1280px) {
  .fa-caret-down {
    font-size: 32px;
  }
}

/* ---------- module ---------- */
.m_triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 24px solid transparent;
  border-left: 24px solid transparent;
  border-top: 33px solid var(--primary-color);
  border-bottom: 0;
  margin: 0 auto;
}

.m_button-line {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  line-height: 1;
  text-decoration: none;
  color: #ffffff;
  font-size: 20px;
  border-radius: 28px;
  width: 315px;
  height: 55px;
  font-weight: bold;
  transition: 0.3s;
  box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.25);
  background-color: [object object];
  background-image: linear-gradient(
    180deg,
    rgba(2, 250, 2, 1),
    rgba(0, 195, 0, 1) 50%,
    rgba(28, 172, 28, 1) 92%,
    rgba(22, 147, 22, 1)
  );
}

.m_button-line::before {
  font: var(--fa-font-solid);
  content: "\f4ad";
  display: block;
  margin-right: 16px;
}

.m_button-line:hover {
  transform: translate(3px, 3px);
}

@media screen and (max-width: 768px) {
  .m_button-line {
    position: fixed;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 56px;
    font-size: 16px;
  }
}

.m_flow_button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  line-height: 1;
  text-decoration: none;
  color: #ffffff;
  font-size: 32px;
  border-radius: 80px;
  width: 80%;
  height: 100px;
  font-weight: bold;
  margin-top: 56px;
  transition: 0.3s;
  box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.25);
  background-color: [object object];
  background-image: linear-gradient(
    180deg,
    rgba(2, 250, 2, 1),
    rgba(0, 195, 0, 1) 50%,
    rgba(28, 172, 28, 1) 92%,
    rgba(22, 147, 22, 1)
  );
}

.m_flow_button::before {
  font: var(--fa-font-solid);
  content: "\f4ad";
  display: block;
  margin-right: 16px;
}

.m_flow_button:hover {
  transform: translate(3px, 3px);
}

@media screen and (max-width: 1280px) {
  .m_flow_button {
    width: 90%;
    font-size: 16px;
    height: 50px;
  }
}

.m_cta_button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  line-height: 1;
  text-decoration: none;
  color: #ffffff;
  font-size: 32px;
  border-radius: 80px;
  width: 612px;
  height: 100px;
  font-weight: bold;
  margin-top: 40px;
  transition: 0.3s;
  box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.25);
  background-color: [object object];
  background-image: linear-gradient(
    180deg,
    rgba(2, 250, 2, 1),
    rgba(0, 195, 0, 1) 50%,
    rgba(28, 172, 28, 1) 92%,
    rgba(22, 147, 22, 1)
  );
}

.m_cta_button::before {
  font: var(--fa-font-solid);
  content: "\f4ad";
  display: block;
  margin-right: 16px;
}

.m_cta_button:hover {
  transform: translate(3px, 3px);
}

@media screen and (max-width: 1280px) {
  .m_cta_button {
    width: 100%;
    font-size: 16px;
    height: 50px;
    margin-top: 24px;
  }
}

.m_button-mail {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  line-height: 1;
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
  border-radius: 80px;
  width: 300px;
  height: 55px;
  font-weight: bold;
  margin-top: 40px;
  transition: 0.3s;
  box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.25);
  background-color: var(--primary-color);
}

.m_button-mail::before {
  font: var(--fa-font-solid);
  content: "\f0e0";
  display: block;
  margin-right: 16px;
  font-size: 24px;
}

.m_button-mail:hover {
  transform: translate(3px, 3px);
}

@media screen and (max-width: 1280px) {
  .m_button-mail {
    width: 50%;
    font-size: 10px;
    height: 33px;
    margin-top: 24px;
  }
}

.m_section_title {
  font-size: 48px;
  font-weight: bold;
  display: inline-block;
  font-weight: bold;
  border-bottom: solid 4px var(--accent-color);
  margin: 0 auto;
  padding: 0 0 5px 0;
}

@media screen and (max-width: 768px) {
  .m_section_title {
    font-size: 20px;
  }
}
.m_section_title__white {
  font-size: 48px;
  font-weight: bold;
  display: inline-block;
  color: var(--white-color);
  font-weight: bold;
  border-bottom: solid 4px var(--accent-color);
  margin: 0 auto;
  padding: 0 0 5px 0;
}

@media screen and (max-width: 768px) {
  .m_section_title__white {
    font-size: 20px;
  }
}

.m_point_title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 48px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  margin-top: 22px;
}

.m_strong {
  font-size: 64px;
}

.m_point_title::before,
.m_point_title::after {
  content: "";
  width: 70px;
  height: 3px;
  background-color: var(--primary-color);
}

.m_point_title::before {
  margin-right: 20px;
}
.m_point_title::after {
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  .m_point_title {
    font-size: 20px;
    margin-top: 8px;
  }
  .m_strong {
    font-size: 28px;
  }
  .m_point_title::before,
  .m_point_title::after {
    content: "";
    width: 35px;
    height: 2px;
  }
}

.m_title {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .m_title {
    font-size: 18px;
  }
}

.m_p_strong {
  font-weight: bold;
}
