@charset "UTF-8";
/*--------------------------------------------------------------
共通でインポートモジュール
# mixinや変数の定義を行う
--------------------------------------------------------------*/
:root {
  --text-color: #0c0c0c;
  --main-color: #00bf67;
  --sub-color: #e0f5ff;
  --accent-color: #ffff1f;
  --accent-color-2: #b50d23;
  --bg-color: #fff;
  --bg-sub-color: #e6f6e0;
  --link-color: var(--main-color);
  --border-color: #babbbc;
  --fw-medium: 500;
  --fw-regular: 400;
  --fw-bold: 700;
  --fw-black: 900;
  --site-width: 1920px;
  --content-width: 1236px;
  --site-inline-padding: 15px;
  --header-height: 69px;
  --header-inline-padding: 27px 24px;
  --banner-height: 75px;
  --transition-time: 0.5s;
  --transidion: var(--transition-time) ease;
  --min-viewport: 520;
  --max-viewport: 1025;
  --max-size: 80px;
  --min-size: 20px;
  /* a 傾き */
  --slope: calc((var(--max-size) - var(--min-size)) / (var(--max-viewport) - var(--min-viewport)));
  /* b 切片 */
  --intercept: calc(var(--min-size) - var(--slope) * var(--min-viewport));
  /* y = ax + b */
  --fluid-size: calc(var(--slope) * 100vw + var(--intercept) / 16 * 1rem);
  /* clamp( 最小サイズ , 可変サイズ , 最大サイズ) */
  --clamp-size: clamp(var(--min-size) / 16 * 1rem, var(--fluid-size), var(--max-size) / 16 * 1rem);
}
@media screen and (min-width: 1025px) {
  :root {
    --site-inline-padding: 20px;
  }
}
@media screen and (min-width: 1441px) {
  :root {
    --site-inline-padding: 0;
  }
}
@media screen and (min-width: 1241px) {
  :root {
    --header-height: 105px;
    --menu-fsz: 16px;
    --header-inline-padding: 13px 18px;
  }
}
@media screen and (min-width: 1025px) {
  :root {
    --banner-height: 95px;
  }
}

html,
body,
div,
span,
object,
iframe,
button,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
sub,
sup,
var,
b,
i,
a,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  font-weight: inherit;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  word-break: normal;
  line-break: strict;
  word-wrap: normal;
  word-break: normal;
  line-height: inherit;
}

textarea,
input[type=button],
input[type=text],
input[type=image],
input[type=submit] {
  -webkit-appearance: none;
  word-break: normal;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

* {
  outline: none;
}

body {
  font-size: 15px;
  word-break: break-all;
  -webkit-text-size-adjust: none;
}

* html body {
  font-size: small;
  font: x-small;
}

*:first-child + html body {
  font-size: small;
  font: x-small;
}

img {
  border: 0;
  vertical-align: bottom;
}

ul,
dl {
  text-indent: 0;
}

ul li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

ol ul li {
  list-style: none;
}

address,
caption,
cite,
code,
dfn,
em,
var {
  font-style: normal;
  font-weight: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

* html input,
* html textarea,
* html select {
  font-size: 100%;
}

*:first-child + html + input,
*:first-child html + textarea,
*:first-child + html select {
  font-size: 100%;
}

table {
  border-collapse: separate;
  border-spacing: 0;
  font-size: inherit;
  font: 100%;
}

th,
td {
  text-align: left;
  vertical-align: top;
}

caption {
  text-align: left;
}

pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
}

* html pre,
* html code,
* html kbd,
* html samp,
* html tt {
  font-size: 108%;
  line-height: 100%;
}

*:first-child + html pre,
*:first-child html + code,
*:first-child html + kbd,
*:first-child + html + samp,
*:first-child + html tt {
  font-size: 108%;
  line-height: 100%;
}

input,
select,
textarea {
  font-size: 100%;
  font-family: Verdana, Helvetica, sans-serif;
  margin: 0;
}

button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  line-height: inherit;
}

figure {
  line-height: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  backface-visibility: hidden;
}

input,
textarea {
  border-radius: 0;
}

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

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

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

body {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", "メイリオ", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-color);
}

@media screen and (min-width: 1025px) {
  .br_sp {
    display: none;
  }
}

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

@media screen and (max-width: 1024px) {
  .is-pc {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  .is-mobile {
    display: none !important;
  }
}

.ut_flex_row {
  display: flex;
  flex-wrap: wrap;
}

.ly_siteHeader {
  width: 100%;
  background: transparent;
}
@media screen and (max-width: 1240px) {
  .ly_siteHeader {
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media screen and (min-width: 1241px) {
  .ly_siteHeader {
    background: #fff;
    background-image: url(../images/bg_header.svg);
    background-repeat: repeat-x;
    background-position: left 0 bottom 0;
  }
}

.ly_siteHeader_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height 0.5s ease;
  height: var(--header-height);
  width: 100vw;
  max-width: var(--content-width);
  margin-inline: clamp(0px, -64.125rem + 71.25vw, 342px);
  padding-inline: var(--header-inline-padding);
  position: relative;
  gap: 15px;
  padding-block: 15px 18px;
}
@media screen and (min-width: 1921px) {
  .ly_siteHeader_content {
    margin-inline: auto;
  }
}
.ly_siteHeader_content .el_siteHeader_logo {
  width: 312px;
  flex-shrink: 0;
}
.ly_siteHeader_content .header_logo_image {
  margin-right: 20px;
}
.ly_siteHeader_content .bl_header_title {
  padding-inline: 10px;
}

@media screen and (min-width: 1025px) {
  .ly_siteHeader_nav {
    margin-left: auto;
  }
}

.ly_header_nav {
  margin-inline: auto;
  max-width: var(--site-width);
}
@media screen and (min-width: 1025px) {
  .ly_header_nav {
    display: flex;
    justify-content: space-around;
  }
}

@media screen and (max-width: 1240px) {
  .ly_fixed_header {
    margin-top: var(--header-height);
  }
  .ly_fixed_header .ly_siteHeader {
    position: fixed;
    top: 0;
    left: 0;
  }
}
.ly_fixed_header.admin-bar {
  margin-top: calc(var(--header-height));
}
.ly_fixed_header.admin-bar .ly_siteHeader {
  top: 32px;
}

@media screen and (max-width: 1024px) {
  .ly_mainVisual {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
}

.ly_content_header {
  margin-inline: auto;
  max-width: var(--site-width);
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--content-header-height, 150px);
  padding: 20px;
}

.ly_siteMain {
  margin-inline: auto;
  width: 100%;
  background-color: var(--bg-color);
}

.ly_mainContent {
  max-width: var(--site-width);
  margin-inline: auto;
}

.ly_pageHeader {
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: var(--site-inline-padding);
  padding-block: 20px;
  background-color: var(--main-color);
  color: #fff;
  margin-top: 30px;
  min-height: 100px;
  background: linear-gradient(131deg, #007fe5 22%, var(--main-color) 22%);
}

.ly_article {
  margin-inline: auto;
}
.ly_article .bl_postThumbnail {
  margin-bottom: var(--article-mt);
}
.ly_article .bl_article_content {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: var(--site-inline-padding);
}
.ly_article .bl_article_content > * + * {
  margin-top: var(--article-mt);
}
.ly_article .bl_article_content > * + h2,
.ly_article .bl_article_content > * + h3,
.ly_article .bl_article_content > * + h4,
.ly_article .bl_article_content > * + h5,
.ly_article .bl_article_content > * + h6 {
  margin-top: var(--artilce-heading-mt);
}

.ly_siteFooter {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-block: 31px 40px;
}
@media screen and (min-width: 1025px) {
  .ly_siteFooter {
    padding-block: 100px 15px;
  }
}
.ly_siteFooter .bl_siteFooter {
  padding-inline: var(--site-inline-padding);
  max-width: var(--content-width);
  width: 100%;
}

@media screen and (max-width: 1240px) {
  .el_siteHeader_logo {
    display: none;
  }
}
.el_siteHeader_logo a {
  display: flex;
  position: relative;
  align-items: flex-end;
}

.bl_header_nav_wrapper {
  background-color: var(--global-menu-bg);
}
@media screen and (max-width: 1240px) {
  .bl_header_nav_wrapper {
    display: none;
  }
}

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

.bl_siteHeader_contacts {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1240px) {
  .bl_siteHeader_contacts {
    display: none;
  }
}
.bl_siteHeader_contacts .el_linkButton {
  font-size: 18px;
  box-shadow: 4px 4px 0 var(--text-color);
  border-radius: 8px;
  color: var(--text-color);
}
.bl_siteHeader_contacts .el_linkButton::before {
  content: "\e61d";
  font-family: "Material Symbols Outlined";
  color: var(--text-color);
  font-size: 30px;
  line-height: 1.3;
  flex-shrink: 0;
}
@media screen and (min-width: 1241px) {
  .bl_siteHeader_contacts .el_linkButton + .el_linkButton {
    margin-left: 15px;
  }
}
@media screen and (min-width: 1367px) {
  .bl_siteHeader_contacts .el_linkButton + .el_linkButton {
    margin-left: 25px;
  }
}
.bl_siteHeader_contacts .el_linkButton.for_request {
  background-color: var(--accent-color);
  width: clamp(140px, 1.6389rem + 11.1111vw, 178px);
  height: 63px;
}
.bl_siteHeader_contacts .el_linkButton.for_request::before {
  content: "\e873";
  font-size: 30px;
}
.bl_siteHeader_contacts .el_linkButton.for_contact {
  width: 208px;
  width: clamp(180px, 6.0102rem + 8.1871vw, 208px);
  height: 63px;
  background-color: #fff;
  border: 1px solid var(--main-color);
}
.bl_siteHeader_contacts .el_linkButton.for_contact::before {
  content: "\e158";
  font-size: 30px;
}
.bl_siteHeader_contacts .el_siteHeader_freeDial {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-right: 10px;
}
@media screen and (min-width: 1367px) {
  .bl_siteHeader_contacts .el_siteHeader_freeDial {
    margin-right: 30px;
  }
}
.bl_siteHeader_contacts .el_siteHeader_freeDial .el_fleeDial_number {
  white-space: nowrap;
  font-size: 28px;
  font-size: clamp(18px, 2.39vw, 28px);
  line-height: 1.4;
}
.bl_siteHeader_contacts .el_siteHeader_freeDial .el_fleeDial_number > span {
  line-height: 1;
  font-size: 15px;
  font-size: 0.54em;
  display: block;
}
.bl_siteHeader_contacts .el_siteHeader_freeDial::before {
  content: "\e61d";
  font-family: "Material Symbols Outlined";
  color: var(--main-color);
  font-size: 47px;
  margin-top: 6px;
  line-height: 1;
  flex-shrink: 0;
}

@media screen and (max-width: 1240px) {
  .ly_siteHeader_nav {
    visibility: hidden;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    z-index: 0;
    background-color: #fff;
    color: var(--text-color);
    justify-content: center;
    overflow-y: auto;
    overflow-x: hidden;
    padding-block: 70px 24px;
    padding-inline: 24px;
    transform: translateX(110%);
    transition: all var(--transition-time) ease;
  }
  .is_open .ly_siteHeader_nav {
    transform: translateX(0);
    visibility: visible;
    z-index: 99;
  }
}

@media screen and (max-width: 1240px) {
  .bl_siteHeader_nav {
    height: -moz-fit-content;
    height: fit-content;
    padding-bottom: 30px;
    max-width: 480px;
    margin-inline: auto;
  }
  .bl_siteHeader_nav li {
    font-size: 18px;
  }
  .bl_siteHeader_nav li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 10px;
    padding-inline: 10px;
    font-weight: 500;
    height: 60px;
    line-height: 1.2;
    border-bottom: 1px solid #ccc;
  }
  .bl_siteHeader_nav .el_header_button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 164px;
    height: 56px;
    padding: 10px;
    background-color: var(--main-color);
    color: #fff;
    margin-inline: auto;
  }
  .bl_siteHeader_nav .el_linkButton {
    color: #fff;
    height: 48px;
    max-width: 400px;
    width: 100%;
    margin-top: 20px;
    border-bottom: none;
    justify-content: center;
  }
  .bl_siteHeader_nav .el_linkButton.for_login {
    background-color: #4662a4;
    border-radius: 5px;
  }
  .bl_siteHeader_nav .el_linkButton.for_contact {
    background-color: #47a446;
    border-radius: 999px;
  }
}
@media screen and (min-width: 1241px) {
  .bl_siteHeader_nav {
    width: auto;
    display: flex;
    gap: 16px;
    align-items: flex-end;
    justify-content: flex-end;
    margin-inline: auto;
  }
  .bl_siteHeader_nav a {
    transition: color 0.5s ease;
  }
  .bl_siteHeader_nav li.is_home_menu {
    display: none;
  }
  .bl_siteHeader_nav > li {
    width: auto;
    position: relative;
    font-size: var(--menu-fsz);
    font-weight: var(--fw-bold);
  }
  .bl_siteHeader_nav > li > a {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    white-space: nowrap;
    height: 100%;
    position: relative;
    padding-inline: 15px;
    padding-inline: clamp(5px, -4.5313rem + 6.25vw, 15px);
    transition: opacity var(--transition-time);
  }
  .bl_siteHeader_nav > li > a:hover {
    opacity: 0.7;
  }
  .bl_siteHeader_nav .el_linkButton {
    color: #fff;
    height: 48px;
    max-width: 206px;
    max-width: clamp(150px, -17.75rem + 35vw, 206px);
    width: 100vw;
  }
  .bl_siteHeader_nav .el_linkButton.for_login {
    background-color: #4662a4;
    border-radius: 5px;
  }
  .bl_siteHeader_nav .el_linkButton.for_contact {
    background-color: #47a446;
    border-radius: 999px;
  }
}

.el_siteHeader_mobile {
  gap: 15px;
  margin-bottom: 40px;
}
@media screen and (min-width: 1241px) {
  .el_siteHeader_mobile {
    display: none;
  }
}
.el_siteHeader_mobile .bl_ctaBuutons {
  grid-template-columns: 1fr;
  color: var(--text-color);
}
.el_siteHeader_mobile .el_linkButton {
  padding-left: 30px;
}
.el_siteHeader_mobile .el_linkButton::before {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  width: 38px;
  height: 38px;
  position: absolute;
  left: 25px;
}

/* スライドメニューボタン */
.bl_menuToggleButton {
  z-index: 99;
  transition: all var(--transition-time) ease;
  position: fixed;
  right: 20px;
  top: 44px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: auto;
  /*ボタン内側*/
}
@media screen and (min-width: 1241px) {
  .bl_menuToggleButton {
    display: none;
	z-index: 99;
  }
}
.is_open .bl_menuToggleButton {
  background-color: transparent;
}
.bl_menuToggleButton .openbtn1 {
  position: relative; /*ボタン内側の基点となるためrelativeを指定*/
  width: 36px;
  height: 26px;
  top: -10px;
}
.bl_menuToggleButton .openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  height: 2px;
  background: #222;
  width: 100%;
}
.bl_menuToggleButton .openbtn1 span:nth-of-type(1) {
  top: 0;
}
.bl_menuToggleButton .openbtn1 span:nth-of-type(2) {
  top: 11px;
}
.bl_menuToggleButton .openbtn1 span:nth-of-type(3) {
  top: 22px;
}
.bl_menuToggleButton.is_open .openbtn1 span {
  background: var(--text-color);
}
.bl_menuToggleButton.is_open .openbtn1 span:nth-of-type(1) {
  transform: translateY(11px) rotate(-45deg);
}
.bl_menuToggleButton.is_open .openbtn1 span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  animation: active-btn05-bar02 0.8s forwards;
}
.bl_menuToggleButton.is_open .openbtn1 span:nth-of-type(3) {
  transform: translateY(-11px) rotate(45deg);
}

@keyframes active-btn05-bar02 {
  100% {
    height: 0;
  }
}
body.is_open {
  overflow: hidden;
}

.global-menu-toggle {
  cursor: pointer;
}
@media screen and (min-width: 1241px) {
  .global-menu-toggle {
    display: none;
  }
}
.global-menu-toggle:before {
  content: "";
  background-image: url(../images/header/slide-menu-toggle.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 20px;
  height: 20px;
  transition: transform var(--transition-time) ease;
}
.global-menu-toggle.is-open::before {
  transform: rotate(180deg);
}

.overlay {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100% - var(--header-height));
  z-index: 0;
  visibility: hidden;
  opacity: 0;
  transition: all var(--transition-time);
}
.is_open .overlay {
  z-index: 1;
  background-color: #000;
  opacity: 0.5;
  visibility: visible;
}

.bl_siteFooter {
  display: flex;
  justify-content: center;
}

.bl_siteFooter_content {
  display: flex;
  flex-wrap: wrap;
  max-width: 1038px;
  width: 100%;
  justify-content: space-between;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .bl_siteFooter_content {
    justify-content: center;
  }
}

ul.bl_siteFooter_menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-inline: 40px;
  flex-direction: column;
  margin-top: 30px;
}
@media screen and (min-width: 1025px) {
  ul.bl_siteFooter_menu {
    margin-top: 0;
    gap: 40px;
    flex-direction: row;
  }
}
ul.bl_siteFooter_menu a {
  transition: opacity var(--transidion);
}
@media (hover: hover) {
  ul.bl_siteFooter_menu a:hover {
    opacity: 0.7;
  }
}

.bl_siteFooter_tel {
  width: 100%;
  text-align: center;
  margin-top: 20px;
  line-height: 1.2;
}
@media screen and (min-width: 1025px) {
  .bl_siteFooter_tel {
    margin-top: 0;
    text-align: right;
  }
}
.bl_siteFooter_tel span {
  font-size: 13px;
}

.bl_siteFooter_copyRight {
  font-size: 12px;
  text-align: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin-top: 30px;
}
@media screen and (min-width: 1025px) {
  .bl_siteFooter_copyRight {
    margin-top: 9px;
  }
}

.bl_fixedBanner {
  background-color: var(--main-color);
  height: var(--banner-height);
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  padding-inline: var(--site-inline-padding);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  transform: translateY(100px);
  transition: all var(--transidion);
  z-index: 10;
}
.bl_fixedBanner.is_show {
  visibility: visible;
  transform: translateY(0);
}
.bl_fixedBanner .bl_fixedBanner_buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1063px;
  margin-inline: auto;
  width: 100%;
  gap: 21px;
}
@media screen and (max-width: 1024px) {
  .bl_fixedBanner .bl_fixedBanner_buttons {
    gap: 9px;
  }
}
.bl_fixedBanner .bl_ctaBuutons_button {
  min-height: 73px;
  font-size: 22px;
}
@media screen and (max-width: 1024px) {
  .bl_fixedBanner .bl_ctaBuutons_button {
    min-height: 50px;
    font-size: 15px;
    letter-spacing: 0.04em;
    padding-inline: 5px;
  }
}
.bl_fixedBanner .bl_ctaBuutons_button.for_request .el_ctaButtons_subCopy {
  font-size: 15px;
}
@media screen and (max-width: 1024px) {
  .bl_fixedBanner .bl_ctaBuutons_button.for_tel {
    gap: 5px;
  }
  .bl_fixedBanner .bl_ctaBuutons_button.for_tel::before {
    font-size: 24px;
  }
}
.bl_fixedBanner .bl_ctaBuutons_button .el_ctaButtons_tel {
  font-size: 26px;
}
@media screen and (max-width: 1024px) {
  .bl_fixedBanner .bl_ctaBuutons_button .el_ctaButtons_tel {
    font-size: 15px;
    letter-spacing: 0.04em;
  }
}
.bl_fixedBanner .bl_ctaBuutons_button .el_ctaButtons_tel span {
  font-size: 12px;
}
.bl_fixedBanner .el_ctaButtons_subCopy {
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .bl_fixedBanner .el_ctaButtons_subCopy {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .bl_fixedBanner .for_pc {
    display: none !important;
  }
}
@media screen and (min-width: 1025px) {
  .bl_fixedBanner .for_sp {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .bl_fixedBanner .el_ctaButtons_request,
  .bl_fixedBanner .el_ctaButtons_contact {
    gap: 5px;
  }
  .bl_fixedBanner .el_ctaButtons_request::before,
  .bl_fixedBanner .el_ctaButtons_contact::before {
    font-size: 22px;
  }
}

a.el_floatingBanner {
  position: fixed;
  bottom: 90px;
  right: 0;
  cursor: pointer;
  z-index: 20;
  transition: opacity var(--transidion);
}
@media screen and (max-width: 1024px) {
  a.el_floatingBanner {
    display: none;
  }
}
@media (hover: hover) {
  a.el_floatingBanner:hover {
    opacity: 0.8;
  }
}

a.el_goTop {
  position: fixed;
  bottom: 20px;
  right: 15px;
  font-weight: var(--fw-bold);
  cursor: pointer;
  z-index: 20;
  transition: opacity var(--transidion);
}
@media (hover: hover) {
  a.el_goTop:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1024px) {
  a.el_goTop {
    display: none;
  }
}

.el_linkButton {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
}

.bl_main > section {
  padding-inline: var(--site-inline-padding);
}
.bl_main > section .ly_sectionInner {
  margin-inline: auto;
  max-width: var(--content-width);
  width: 100%;
}

.has_bg_color.is_green {
  background-color: var(--bg-sub-color);
}

.bl_main {
  overflow: hidden;
}

h2.el_heading_subtext {
  text-align: center;
  font-size: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  font-weight: var(--fw-bold);
}
h2.el_heading_subtext span {
  margin-top: 10px;
  font-size: 12px;
}
@media screen and (min-width: 1025px) {
  h2.el_heading_subtext {
    font-size: 52px;
  }
  h2.el_heading_subtext span {
    margin-top: 15px;
    font-size: 24px;
  }
}

@media screen and (max-width: 1024px) {
  .bl_mv {
    background-image: linear-gradient(0deg, #fff 0%, #fff 39%, rgba(255, 255, 255, 0) 100%), url(../images/bg-mv-sp-2.png), url(../images/bg-mv-sp.jpg);
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: 100% 75px, 520px, cover;
    background-position: bottom center, top 65px center, center center;
    height: 998px;
    padding-block: 92px 0;
  }
}
@media screen and (min-width: 1025px) {
  .bl_mv {
    background-size: cover;
    background-image: url(../images/bg-mv-pc.webp);
    max-height: 900px;
    overflow: hidden;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1920px) {
  .bl_mv {
    aspect-ratio: 1920/900;
  }
}
.bl_mv .bl_mv_inner {
  max-width: 1500px;
  display: flex;
  font-size: clamp(20px, -5.375rem + 8.2813vw, 73px);
  height: 100%;
}
@media screen and (min-width: 1025px) {
  .bl_mv .bl_mv_inner {
    margin-left: 210px;
    margin-left: clamp(0px, -46.875rem + 50vw, 210px);
    gap: 73px;
    gap: clamp(0.9375rem, -6.3125rem + 9.0625vw, 4.5625rem);
  }
}
@media screen and (min-width: 1921px) {
  .bl_mv .bl_mv_inner {
    margin-inline: auto;
  }
}
.bl_mv .el_mv_image {
  display: block;
  max-width: none;
}
@media screen and (max-width: 1024px) {
  .bl_mv .el_mv_image {
    display: none;
  }
}
.bl_mv .bl_mv_content {
  display: flex;
  flex-direction: column;
  max-width: 700px;
  margin-inline: auto;
  flex-shrink: 0;
}
@media screen and (min-width: 1025px) {
  .bl_mv .bl_mv_content {
    margin-left: 33px;
    margin-left: clamp(1px, -0.375rem + 2.0313vw, 33px);
    padding-block: 70px 0;
    padding-top: clamp(1.875rem, -0.9881284916rem + 4.469273743vw, 4.375rem);
    width: 48%;
  }
}
.bl_mv .el_mv_catchCopy {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.8);
  font-weight: var(--fw-bold);
  line-height: 1;
  font-size: 17px;
  height: 35px;
  width: 331px;
  border-radius: 15px;
  margin-inline: auto;
  flex-shrink: 0;
}
@media screen and (min-width: 1025px) {
  .bl_mv .el_mv_catchCopy {
    font-size: 29px;
    font-size: clamp(0.9375rem, -0.0645949721rem + 1.5642458101vw, 1.8125rem);
    width: clamp(20.625rem, 5.6651536313rem + 23.3519553073vw, 33.6875rem);
    height: clamp(2.1875rem, 0.6127793296rem + 2.4581005587vw, 3.5625rem);
    padding-inline: 20px;
  }
}
@media screen and (min-width: 1441px) {
  .bl_mv .el_mv_catchCopy {
    margin-left: 0;
  }
}
.bl_mv .el_mv_copy {
  font-weight: normal;
  font-size: 26px;
  margin-top: -20px;
  max-width: none;
  max-width: 375px;
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  .bl_mv .el_mv_copy {
    max-width: clamp(31.25rem, 2.25rem + 36.25vw, 45.75rem);
    max-width: clamp(28.125rem, 7.9399441341rem + 31.5083798883vw, 45.75rem);
  }
}
@media screen and (min-width: 1441px) {
  .bl_mv .el_mv_copy {
    margin-left: clamp(-1.125rem, 0.875rem - 2.5vw, -2.125rem);
  }
}
@media screen and (min-width: 1025px) {
  .bl_mv .el_mv_image_sp {
    display: none;
  }
}
.bl_mv .el_mv_subCopy {
  color: #164e16;
  font-weight: var(--fw-bold);
  line-height: 1.33333333;
  font-size: 27px;
  margin-top: 280px;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .bl_mv .el_mv_subCopy {
    font-size: clamp(1.1875rem, -0.0625rem + 1.5625vw, 1.8125rem);
    font-size: clamp(1.0625rem, 0.2035614525rem + 1.3407821229vw, 1.8125rem);
    line-height: 1.34482759;
    margin-top: 33px;
    margin-top: 0;
  }
}
.bl_mv .el_linkButton {
  color: #fff;
  background: linear-gradient(0deg, #47a446 0%, #3ea23d 53.4%, #5adb57 100%);
  font-weight: 600;
  margin-inline: auto;
  width: 100%;
  max-width: 289px;
  font-size: 22px;
  height: 51px;
  border-radius: 30px;
  transition: filter var(--transidion);
  margin-top: 26px;
}
@media screen and (min-width: 1025px) {
  .bl_mv .el_linkButton {
    height: clamp(2.8125rem, -0.4375rem + 4.0625vw, 4.4375rem);
    max-width: 679px;
    max-width: clamp(30rem, 5.125rem + 31.09375vw, 42.4375rem);
    font-size: clamp(1.25rem, -0.25rem + 1.875vw, 2rem);
    margin-top: clamp(1.25rem, -1.125rem + 2.96875vw, 2.4375rem);
  }
}
@media (hover: hover) {
  .bl_mv .el_linkButton:hover {
    filter: brightness(1.1);
  }
}
.bl_mv .el_mv_features {
  gap: 13px;
  margin-top: 17px;
  margin-top: clamp(0.5625rem, -0.0101256983rem + 0.8938547486vw, 1.0625rem);
  margin-inline: auto;
  width: 700px;
  width: clamp(21.875rem, -3.1773743017rem + 39.1061452514vw, 43.75rem);
  font-weight: var(--fw-bold);
}
@media screen and (max-width: 1024px) {
  .bl_mv .el_mv_features {
    display: none;
  }
}
.bl_mv .el_mv_features .el_mv_featureItem {
  gap: 14px;
  gap: clamp(0.4375rem, -0.4375rem + 1.09375vw, 0.875rem);
  border-width: clamp(0.125rem, -0.125rem + 0.3125vw, 0.25rem);
}
.bl_mv .el_mv_features .el_mv_featureItem_copy {
  font-size: 24px;
  font-size: clamp(0.75rem, -0.1089385475rem + 1.3407821229vw, 1.5rem);
  line-height: 1.35;
}
.bl_mv .el_mv_features .el_mv_featureItem_number {
  font-size: 21px;
  font-size: clamp(0.6875rem, -0.0282821229rem + 1.1173184358vw, 1.3125rem);
}
.bl_mv .el_mv_features .el_number {
  font-size: 3.33333333em;
}
.bl_mv .el_mv_list {
  font-size: clamp(1rem, 0.5rem + 0.625vw, 1.25rem);
  font-size: clamp(0.875rem, 0.4455307263rem + 0.6703910615vw, 1.25rem);
  align-self: flex-end;
}
@media screen and (max-width: 1024px) {
  .bl_mv .el_mv_list {
    display: none;
  }
}
.bl_mv .el_mv_list li {
  --list-icon-size: 27px;
}
.bl_mv .el_mv_banner {
  background-color: #fda900;
}
@media screen and (max-width: 1024px) {
  .bl_mv .el_mv_banner {
    color: #fff;
    padding: 10px;
    width: 100%;
    max-width: 600px;
    display: flex;
    gap: 8px;
    align-items: center;
    padding-block: 13px 12px;
    padding-inline: 27px 14px;
    line-height: 1.3;
    margin-top: 24px;
    font-size: 20px;
    font-weight: var(--fw-bold);
    border-radius: 10px;
    max-width: 375px;
    margin-inline: auto;
  }
  .bl_mv .el_mv_banner .button {
    background-color: #fff;
    color: #ff7600;
    font-size: 16px;
    font-weight: var(--fw-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    width: 107px;
    border-radius: 5px;
  }
}
@media screen and (min-width: 1025px) {
  .bl_mv .el_mv_banner {
    position: absolute;
    top: clamp(10.625rem, -4.273255814rem + 23.2558139535vw, 13.75rem);
    right: 0;
    width: 180px;
    height: 224px;
    width: clamp(7.1875rem, 2.5349162011rem + 7.2625698324vw, 11.25rem);
    height: clamp(8.9375rem, 3.1396648045rem + 9.0502793296vw, 14rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px 0 0 10px;
    padding-inline: 10px;
    text-align: center;
    font-weight: var(--fw-bold);
    font-size: clamp(0.6875rem, 0.0432960894rem + 1.0055865922vw, 1.25rem);
    line-height: 1.6;
    background-image: url(../images/mv-banner-bg.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: clamp(6.25rem, 1.9553072626rem + 6.7039106145vw, 10rem);
  }
}
@media screen and (min-width: 1025px) and (min-width: 1241px) {
  .bl_mv .el_mv_banner {
    top: clamp(15.625rem, 1.3093575419rem + 22.3463687151vw, 28.125rem);
  }
}
@media screen and (min-width: 1025px) {
  .bl_mv .el_mv_banner .is_green {
    color: #47a446;
  }
  .bl_mv .el_mv_banner .button {
    font-size: clamp(0.6875rem, 0.0432960894rem + 1.0055865922vw, 1.25rem);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e7501f;
    color: #fff;
    font-weight: var(--fw-medium);
    width: 100%;
    height: 33px;
    height: clamp(1.1875rem, 0.1854050279rem + 1.5642458101vw, 2.0625rem);
    margin-top: 13px;
    border-radius: 5px;
  }
}

.el_mv_features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-inline: 15px;
  margin-top: 20px;
}
.el_mv_features .el_mv_featureItem {
  border: 2px solid #47a446;
  border-radius: 100%;
  aspect-ratio: 1/1;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #47a446;
  font-weight: var(--fw-bold);
  gap: 8px;
}
@media screen and (min-width: 1025px) {
  .el_mv_features .el_mv_featureItem {
    border-width: 4px;
  }
}
.el_mv_features .el_mv_featureItem_copy {
  font-weight: var(--fw-bold);
  font-size: 11px;
  line-height: 1.36363636;
}
.el_mv_features .el_mv_featureItem_number {
  display: flex;
  align-items: baseline;
  font-size: 11px;
  line-height: 1;
}
.el_mv_features .el_number {
  font-size: 35px;
}
.el_mv_features .el_unit {
  align-self: center;
  line-height: 1;
}

.el_mv_list {
  font-weight: var(--fw-bold);
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.5;
  margin-inline: 27px;
}
.el_mv_list li {
  display: flex;
  gap: 7px;
  --list-icon-size: 24px;
}
.el_mv_list li::before {
  flex-shrink: 0;
  display: inline-block;
  content: "";
  background-image: url(../images/mv-list-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: var(--list-icon-size);
  height: var(--list-icon-size);
}

.bl_mv_sp {
  margin-bottom: 29px;
  max-width: 375px;
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  .bl_mv_sp {
    display: none;
  }
}

.bl_problem .ly_sectionInner {
  position: relative;
}
.bl_problem .el_problem_question {
  position: relative;
  z-index: 5;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background-color: #47a446;
  color: #fff;
  font-weight: var(--fw-bold);
  text-align: center;
  padding-inline: 20px;
  padding-block: 30px 25px;
  margin-bottom: 120px;
}
@media screen and (max-width: 1024px) {
  .bl_problem .el_problem_question {
    display: none;
  }
}
.bl_problem .el_problem_question .el_problem_subcopy {
  font-size: 27px;
}
.bl_problem .el_problem_question .el_problem_copy {
  font-size: 41px;
  font-weight: 600;
  margin-top: 20px;
}
.bl_problem .el_problem_question::after {
  content: "";
  width: 5px;
  height: 74px;
  position: absolute;
  bottom: -98px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #47a446 0%, #23dc91 100%);
}
.bl_problem .bl_problem_items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 11px;
       column-gap: 11px;
  row-gap: 12px;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 1025px) {
  .bl_problem .bl_problem_items {
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 27px;
         column-gap: 27px;
    row-gap: 28px;
  }
}
.bl_problem .el_problem_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 3px solid #47a446;
  background-color: #fff;
  padding-block: 18px 10px;
  padding-inline: 5px;
  text-align: center;
  font-size: 14px;
  font-weight: var(--fw-bold);
  border-radius: 10px;
}
@media screen and (min-width: 1025px) {
  .bl_problem .el_problem_item {
    font-size: 27px;
    line-height: 1.4;
    padding-inline: 20px;
    padding-block: 55px 19px;
  }
}
.bl_problem .el_problem_bg {
  position: absolute;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .bl_problem .el_problem_bg {
    display: none;
  }
}
.bl_problem .el_problem_bg.is_left {
  top: 44px;
  left: -1157px;
  max-width: none;
}

.bl_about {
  padding-block: 56px 49px;
  position: relative;
  z-index: 2;
}
.bl_about .ly_sectionInner {
  position: relative;
}
@media screen and (min-width: 1025px) {
  .bl_about {
    padding-block: 126px 192px;
  }
}
.bl_about .el_about_header {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  text-align: center;
  background-image: url(../images/bg_about_header.svg);
  background-repeat: repeat-x;
  background-position: bottom;
  padding-bottom: 60px;
  position: relative;
  z-index: 10;
  padding-inline: 15px;
}
@media screen and (max-width: 1024px) {
  .bl_about .el_about_header {
    padding-bottom: 25px;
    background-size: auto 36px;
  }
}
.bl_about .el_about_copy {
  font-size: 28px;
  font-weight: var(--fw-bold);
  margin-top: 50px;
  line-height: 1.32;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  .bl_about .el_about_copy {
    margin-top: 60px;
    font-size: 59px;
    font-size: clamp(40px, -0.7458rem + 5.0667vw, 59px);
  }
}
.bl_about h2.el_heading_subtext {
  margin-top: 71px;
  max-width: 300px;
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  .bl_about h2.el_heading_subtext {
    margin-top: 174px;
    max-width: none;
  }
}
.bl_about p {
  margin-top: 35px;
  font-size: 17px;
  font-weight: var(--fw-bold);
  line-height: 1.41176471;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  .bl_about p {
    font-size: 28px;
    line-height: 1.92857143;
    margin-top: 79px;
  }
}
.bl_about p + img {
  display: block;
  margin-inline: auto;
  margin-top: 45px;
}
@media screen and (min-width: 1025px) {
  .bl_about p + img {
    margin-top: 30px;
  }
}
.bl_about .el_about_detail {
  max-width: 1037px;
  margin-inline: auto;
  font-size: 14px;
  line-height: 1.29;
  margin-top: 52px;
}
@media screen and (min-width: 1025px) {
  .bl_about .el_about_detail {
    font-size: 20px;
    line-height: 1.5;
    margin-top: 60px;
  }
}
.bl_about .el_about_detail li {
  list-style: none;
  text-indent: -2em;
  padding-left: 2em;
}
.bl_about .el_about_bg {
  position: absolute;
}
@media screen and (max-width: 1024px) {
  .bl_about .el_about_bg {
    display: none;
  }
}
.bl_about .el_about_bg.is_right {
  top: 380px;
  right: -215px;
  z-index: 2;
}
.bl_about .el_about_bg.is_left {
  bottom: -156px;
  left: -300px;
}
.bl_about .el_about_bg.is_right_2 {
  top: 474px;
  right: -1005px;
  z-index: 1;
}

.bl_feature {
  padding-block: 39px 85px;
}
@media screen and (min-width: 1025px) {
  .bl_feature {
    padding-block: 126px 130px;
  }
}
.bl_feature h2 {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-weight: var(--fw-bold);
  font-size: 29px;
  line-height: 1.41;
  max-width: 280px;
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  .bl_feature h2 {
    font-size: 41px;
    max-width: none;
  }
}
.bl_feature h2 img {
  vertical-align: baseline;
}
.bl_feature h2 span {
  display: inline-block;
  white-space: nowrap;
}
.bl_feature .bl_feature_items {
  display: flex;
  flex-direction: column;
  gap: 57px;
  margin-top: 36px;
}
@media screen and (min-width: 1025px) {
  .bl_feature .bl_feature_items {
    flex-direction: row;
    gap: 63px;
    margin-top: 84px;
  }
}
.bl_feature .el_feature_item {
  font-size: 15px;
  line-height: 1.1;
  text-align: center;
  font-weight: var(--fw-medium);
  position: relative;
}
@media screen and (min-width: 1025px) {
  .bl_feature .el_feature_item {
    font-size: 22px;
    font-size: clamp(18px, 0.1932rem + 1.4545vw, 22px);
  }
}
.bl_feature .el_feature_item figure {
  position: relative;
  margin-inline: auto;
  display: block;
}
@media screen and (max-width: 1024px) {
  .bl_feature .el_feature_item figure {
    max-width: 260px;
  }
}
.bl_feature .el_feature_item img {
  margin-inline: auto;
  display: block;
}
@media screen and (max-width: 1024px) {
  .bl_feature .el_feature_item img {
    max-width: 260px;
  }
}
.bl_feature .el_feature_time {
  position: absolute;
  top: 52%;
  left: 16%;
  transform: translateY(-50%);
  font-size: 63px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
@media screen and (min-width: 1025px) {
  .bl_feature .el_feature_time {
    font-size: clamp(4.3125rem, -0.4607843137rem + 7.4509803922vw, 5.5rem);
  }
}
.bl_feature .el_feature_time .unit {
  font-size: 0.3409em;
}
.bl_feature .el_feature_title {
  margin-bottom: -1.8em;
  z-index: 2;
  position: relative;
}
.bl_feature .el_feature_detail {
  margin-top: -1.4em;
}
.bl_feature .el_feature_detail .el_feature_content {
  font-size: 12px;
  line-height: 1.33333333;
  margin-top: 6px;
}
@media screen and (min-width: 1025px) {
  .bl_feature .el_feature_detail .el_feature_content {
    margin-top: 11px;
    font-size: 18px;
    font-size: clamp(16px, 0.5341rem + 0.7273vw, 18px);
  }
}
.bl_feature .el_feature_detail .el_feature_content span {
  font-size: 1.58em;
}

.bl_step {
  padding-block: 41px 56px;
}
@media screen and (min-width: 1025px) {
  .bl_step {
    padding-block: 134px 195px;
  }
}
.bl_step .ly_sectionInner {
  position: relative;
}
.bl_step h2 {
  font-size: 23px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: var(--fw-bold);
  justify-content: center;
}
@media screen and (min-width: 1025px) {
  .bl_step h2 {
    flex-direction: row;
    font-size: 52px;
    gap: 15px;
  }
}
.bl_step h2 .el_step_en {
  font-size: 26px;
  color: #01bf67;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .bl_step h2 .el_step_en {
    font-size: 59px;
  }
}
.bl_step h2 .el_step_en span {
  font-weight: var(--fw-medium);
  font-size: 52px;
}
@media screen and (min-width: 1025px) {
  .bl_step h2 .el_step_en span {
    font-size: 116px;
  }
}
.bl_step .bl_steps {
  margin-top: 57px;
}
@media screen and (min-width: 1025px) {
  .bl_step .bl_steps {
    margin-top: 121px;
    padding-inline: 126px 37px;
  }
}
.bl_step .bl_steps li {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .bl_step .bl_steps li {
    padding-inline: 15px;
  }
}
@media screen and (min-width: 1025px) {
  .bl_step .bl_steps li {
    flex-direction: row;
  }
}
.bl_step .bl_steps li .el_step_label {
  font-weight: var(--fw-bold);
  font-size: 19px;
  color: rgba(96, 185, 143, 0.95);
  line-height: 1;
}
@media screen and (min-width: 1025px) {
  .bl_step .bl_steps li .el_step_label {
    font-size: 28px;
  }
}
.bl_step .bl_steps li .el_step_label span {
  font-size: 50px;
  color: #01bf67;
  font-weight: var(--fw-medium);
  margin-left: 10px;
}
@media screen and (min-width: 1025px) {
  .bl_step .bl_steps li .el_step_label span {
    font-size: 116px;
    margin-left: 23px;
  }
}
.bl_step .bl_steps li .bl_step_text {
  font-size: 17px;
  line-height: 1.05882353;
  margin-top: 14px;
  font-weight: var(--fw-medium);
}
@media screen and (min-width: 1025px) {
  .bl_step .bl_steps li .bl_step_text {
    font-size: 22px;
    line-height: 1.18;
    margin-top: 0;
    margin-inline: 33px;
  }
}
.bl_step .bl_steps li .bl_step_text .el_step_note {
  font-weight: var(--fw-regular);
  font-size: 12px;
  margin-top: 19px;
  line-height: 1.41666667;
}
@media screen and (min-width: 1025px) {
  .bl_step .bl_steps li .bl_step_text .el_step_note {
    font-size: 18px;
    margin-top: 20px;
    line-height: 1.44444444;
  }
}
.bl_step .bl_steps li img {
  margin-top: 15px;
  max-width: 230px;
  flex-shrink: 0;
}
@media screen and (min-width: 1025px) {
  .bl_step .bl_steps li img {
    margin-top: 0;
    margin-left: auto;
  }
}
.bl_step .bl_steps li + li {
  margin-top: 25px;
}
@media screen and (max-width: 1024px) {
  .bl_step .bl_steps li:nth-child(2) .bl_step_text, .bl_step .bl_steps li:nth-child(3) .bl_step_text {
    text-align: center;
  }
  .bl_step .bl_steps li:nth-child(2) .el_step_note, .bl_step .bl_steps li:nth-child(3) .el_step_note {
    text-align: left;
  }
  .bl_step .bl_steps li:nth-child(2) > img, .bl_step .bl_steps li:nth-child(3) > img {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .bl_step .bl_steps li:nth-child(2) .bl_step_text img, .bl_step .bl_steps li:nth-child(3) .bl_step_text img {
    display: none;
  }
}
.bl_step .el_step_bg {
  position: absolute;
}
@media screen and (max-width: 1024px) {
  .bl_step .el_step_bg {
    display: none;
  }
}
.bl_step .el_step_bg.is_right {
  top: 60px;
  right: -215px;
}
.bl_step .el_step_bg.is_left {
  bottom: -265px;
  left: -300px;
}

.bl_voice {
  padding-block: 72px 85px;
}
@media screen and (min-width: 1025px) {
  .bl_voice {
    padding-block: 152px 175px;
  }
}
.bl_voice .bl_voice_items {
  max-width: 1117px;
  margin-inline: auto;
  margin-top: 42px;
}
@media screen and (min-width: 1025px) {
  .bl_voice .bl_voice_items {
    margin-top: 93px;
  }
}
.bl_voice .bl_voice_item {
  background-color: #fff;
  border-radius: 50px;
  border: 1px solid #707070;
  padding-block: 26px 43px;
  padding-inline: 25px;
}
@media screen and (min-width: 1025px) {
  .bl_voice .bl_voice_item {
    padding-inline: 67px;
    padding-block: 39px 43px;
  }
}
.bl_voice .bl_voice_item + .bl_voice_item {
  margin-top: 22px;
}
@media screen and (min-width: 1025px) {
  .bl_voice .bl_voice_item + .bl_voice_item {
    margin-top: 51px;
  }
}
.bl_voice .el_voiceItem_heading {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1025px) {
  .bl_voice .el_voiceItem_heading {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 35px;
  }
}
.bl_voice .el_voiceItem_heading h3 {
  font-weight: var(--fw-bold);
  font-size: 22px;
  line-height: 1.36363636;
}
@media screen and (min-width: 1025px) {
  .bl_voice .el_voiceItem_heading h3 {
    font-size: 26px;
  }
}
.bl_voice .el_voiceItem_heading .el_voiceItem_meta {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  -moz-column-gap: 23px;
       column-gap: 23px;
  font-size: 16px;
  row-gap: 8px;
}
@media screen and (min-width: 1025px) {
  .bl_voice .el_voiceItem_heading .el_voiceItem_meta {
    margin-top: 15px;
    -moz-column-gap: 35px;
         column-gap: 35px;
  }
}
.bl_voice .el_voiceItem_heading .el_voiceItem_meta li {
  display: flex;
  align-items: center;
  gap: 4px;
}
.bl_voice .el_voiceItem_heading .el_voiceItem_label {
  color: #fff;
  background-color: #01bf67;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 65px;
  height: 27px;
  padding-inline: 9px;
  border-radius: 10px;
}
.bl_voice .el_voiceItem_text {
  font-size: 15px;
  line-height: 1.53333333;
  margin-top: 15px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  .bl_voice .el_voiceItem_text {
    width: 100%;
    font-size: 16px;
    line-height: 2.125;
    margin-top: 14px;
  }
}

.bl_faq {
  padding-block: 72px 85px;
}
@media screen and (min-width: 1025px) {
  .bl_faq {
    padding-block: 206px 259px;
  }
}
.bl_faq .bl_faqItem {
  font-weight: var(--fw-medium);
  position: relative;
  margin-top: 19px;
}
@media screen and (min-width: 1025px) {
  .bl_faq .bl_faqItem {
    padding-left: 94px;
  }
}
.bl_faq .bl_faqItem + .bl_faqItem {
  margin-top: 62px;
}
.bl_faq .bl_faqItem dt {
  border-bottom: 6px solid #38a877;
  font-size: 18px;
  line-height: 1.44444444;
  display: flex;
  align-items: center;
  gap: 7px;
  padding-block: 20px 10px;
  font-weight: var(--fw-medium);
}
@media screen and (max-width: 1024px) {
  .bl_faq .bl_faqItem dt {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-inline: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .bl_faq .bl_faqItem dt {
    font-size: 22px;
    line-height: 1.18181818;
    padding-block: 35px 11px;
  }
}
.bl_faq .bl_faqItem dt:before {
  --qa-icon-size: 47px;
  content: "";
  background-image: url(../images/icon-qa.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: var(--qa-icon-size);
  height: var(--qa-icon-size);
}
@media screen and (min-width: 1025px) {
  .bl_faq .bl_faqItem dt:before {
    position: absolute;
    left: 0;
    top: 0;
    --qa-icon-size: 83px;
  }
}
.bl_faq .bl_faqItem dd {
  margin-top: 10px;
  font-size: 16px;
}
@media screen and (min-width: 1025px) {
  .bl_faq .bl_faqItem dd {
    font-size: 18px;
    margin-top: 30px;
  }
}

.bl_banner {
  background: linear-gradient(#c1ebc0 0%, #d0efae 59%, #fffa77 100%);
  padding-block: 37px 70px;
}
@media screen and (min-width: 1025px) {
  .bl_banner {
    padding-block: 55px 40px;
  }
}
.bl_banner .bl_banner_mediaText {
  /* padding-inline: 40px 30px; */
}
@media screen and (min-width: 1025px) {
  .bl_banner .bl_banner_mediaText {
    display: grid;
    grid-template-columns: 1fr 33%;
  }
}
.bl_banner .bl_banner_mediaText figure {
  display: none;
}
@media screen and (min-width: 1025px) {
  .bl_banner .bl_banner_mediaText figure {
    display: block;
    padding-inline: 30px;
  }
}
.bl_banner .el_mediaText_content {
  text-align: center;
}
.bl_banner .el_mediaText_content img {
  width: 294px;
  margin-inline: auto;
  margin-top: 45px;
}
@media screen and (min-width: 1025px) {
  .bl_banner .el_mediaText_content {
    padding-inline: 40px;
  }
  .bl_banner .el_mediaText_content img {
    display: none;
  }
}
.bl_banner .el_banner_copy {
  font-weight: var(--fw-bold);
  color: #276326;
  font-size: 33px;
  line-height: 1.42424242;
}
@media screen and (min-width: 1025px) {
  .bl_banner .el_banner_copy {
    font-size: 57px;
  }
}
.bl_banner .el_banner_copy span {
  color: var(--text-color);
}
.bl_banner .el_banner_subCopy {
  font-weight: var(--fw-bold);
  color: #164e16;
  line-height: 1.36363636;
  font-size: 22px;
  margin-top: 11px;
}
@media screen and (min-width: 1025px) {
  .bl_banner .el_banner_subCopy {
    font-size: 29px;
    margin-top: 28px;
  }
}
.bl_banner .el_linkButton {
  color: #fff;
  background: linear-gradient(0deg, #47a446 0%, #3ea23d 53.4%, #5adb57 100%);
  font-weight: 600;
  margin-inline: auto;
  width: 100%;
  max-width: 289px;
  font-size: 22px;
  height: 51px;
  border-radius: 30px;
  transition: filter var(--transidion);
  margin-top: 26px;
}
@media screen and (min-width: 1025px) {
  .bl_banner .el_linkButton {
    height: 71px;
    max-width: 679px;
    font-size: 32px;
    margin-top: 55px;
  }
}
@media (hover: hover) {
  .bl_banner .el_linkButton:hover {
    filter: brightness(1.1);
  }
}

.bl_company {
  padding-block: 51px 59px;
}
@media screen and (min-width: 1025px) {
  .bl_company {
    margin-top: 93px;
    padding-block: 108px 99px;
  }
}
.bl_company .bl_comapny_info {
  max-width: var(--content-width);
  background-color: #fff;
  padding-inline: 28px;
  padding-block: 37px 77px;
  border-radius: 30px;
}
@media screen and (min-width: 1025px) {
  .bl_company .bl_comapny_info {
    padding-block: 123px 140px;
  }
}
.bl_company h2.el_heading_subtext {
  position: relative;
}
@media screen and (min-width: 1025px) {
  .bl_company h2.el_heading_subtext {
    padding-bottom: 29px;
  }
  .bl_company h2.el_heading_subtext::after {
    content: "";
    background-color: var(--main-color);
    height: 4px;
    width: 130px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.bl_company table {
  max-width: 700px;
  margin-inline: auto;
  font-weight: var(--fw-bold);
  font-size: 15px;
  margin-top: 63px;
}
@media screen and (min-width: 1025px) {
  .bl_company table {
    margin-top: 75px;
    font-size: 18px;
  }
}
.bl_company table th,
.bl_company table td {
  padding-inline: 0;
  padding-block: 15px;
}
@media screen and (min-width: 1025px) {
  .bl_company table th,
  .bl_company table td {
    padding-block: 18px;
  }
}
.bl_company table th {
  width: 32%;
}
@media screen and (min-width: 1025px) {
  .bl_company table th {
    width: 36%;
  }
}/*# sourceMappingURL=style.css.map */