@charset "UTF-8";
@layer reset {
  html,
  body,
  p,
  ol,
  ul,
  li,
  dl,
  dt,
  dd,
  blockquote,
  figure,
  fieldset,
  form,
  legend,
  textarea,
  pre,
  iframe,
  hr,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    padding: 0;
    margin: 0;
  }
}
html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-width: 320px;
  min-height: 100%;
}

main {
  display: block;
}

address,
em {
  font-style: normal;
}

table {
  border-collapse: collapse;
}

div:target {
  scroll-margin-top: var(--wp--custom--height--header-mobile);
}

a {
  word-break: break-all;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}

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

strong {
  font-weight: var(--wp--custom--font-weight--x-bold);
}

code {
  display: block;
  padding: 15px;
  font-size: var(--wp--preset--font-size--small);
  background-color: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--gray);
}

input,
button,
select,
textarea {
  font: inherit;
  line-height: var(--wp--custom--line-height--small);
  -webkit-appearance: none;
          appearance: none;
  background-color: transparent;
  border: 0;
  border-radius: 0;
}

button,
[type=button],
[type=submit],
[type=reset] {
  cursor: pointer;
}

select {
  width: 100%;
  color: var(--wp--preset--color--black);
}

select,
button {
  line-height: var(--wp--custom--line-height--small);
}

::placeholder {
  color: var(--wp--preset--color--gray-light);
}

textarea {
  display: block;
  width: 100%;
}

input[type=file]::-webkit-file-upload-button {
  font: inherit;
  color: var(--wp--preset--color--black);
}

.container {
  width: min(100% - var(--wp--custom--spacing--gutter) * 2, var(--wp--custom--width--content-size));
  margin-inline: auto;
}
.container.--wide {
  width: min(100% - var(--wp--custom--spacing--gutter) * 2, var(--wp--custom--width--wide-size));
}

.header {
  position: absolute;
  top: 0;
  z-index: 200;
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 66px;
  padding: 15px 20px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 100%);
}
.header a {
  text-decoration: none;
}

.header-logo {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: var(--wp--custom--font-weight--bold);
}
@media (max-width: 767px) {
  .header-logo {
    font-size: 16px;
  }
}
.header-logo a {
  color: var(--wp--preset--color--black);
}

.header-buttons__list {
  display: flex;
  gap: 10px;
  list-style: none;
}
.header-buttons a {
  display: inline-block;
  padding: 10px 20px;
  color: var(--wp--preset--color--white);
  border-radius: 50px;
  transition: opacity 0.25s;
}
.header-buttons a.--dl {
  background: var(--wp--preset--gradient--cta-button);
}
@media (max-width: 767px) {
  .header-buttons a.--dl {
    padding-inline: 12px;
    margin-right: -10px;
    font-size: 13px;
  }
}
.header-buttons a.--contact {
  background: var(--wp--preset--gradient--primary);
}
@media (max-width: 767px) {
  .header-buttons a.--contact {
    display: none;
  }
}
.header-buttons a:is(:hover, :focus) {
  opacity: 0.8;
}

.content {
  margin-block: 70px 80px;
}
.content.--has-sidebar {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

@media (min-width: 1000px) {
  .content.--has-sidebar {
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
  }
  .content.--has-sidebar > *:first-child {
    width: 70%;
  }
  .content.--has-sidebar > *:last-child {
    width: 25%;
  }
}
.footer {
  position: relative;
  z-index: 200;
  margin-top: auto;
  color: var(--wp--preset--color--white);
  background-color: var(--wp--preset--color--secondary);
  transform: translate3d(0, 0, 0);
}
.footer__inner {
  display: flex;
  padding-block: 50px;
}
.footer a {
  color: inherit;
  text-decoration: none;
}
.footer ul {
  list-style: none;
}

.footer-logo__name {
  font-size: var(--wp--preset--font-size--xxx-large);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-nav a {
  transition: opacity 0.25s;
}
.footer-nav a:is(:hover, :focus) {
  opacity: 0.8;
}

@media (max-width: 767px) {
  .footer__inner {
    flex-direction: column;
    gap: 50px;
    align-items: center;
  }
  .footer__col {
    display: contents;
  }
  .footer-nav {
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    gap: 30px;
    justify-content: space-between;
    padding-inline: var(--wp--custom--spacing--gutter);
  }
  .footer__col.--1 {
    flex: 0.5;
  }
  .footer__col.--2 {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: end;
    justify-content: space-between;
  }
  .footer-buttons a {
    min-width: 300px;
  }
}
@media (min-width: 1000px) {
  .footer-buttons {
    flex-direction: row;
  }
}
.footer-sns {
  display: flex;
  gap: 10px;
}
@media (min-width: 1000px) {
  .footer-sns {
    margin-top: 20px;
  }
}

.sidebar__item + .sidebar__item {
  margin-top: var(--wp--style--block-gap);
}
.sidebar__item-title {
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: var(--wp--preset--font-size--x-large);
  border-bottom: 1px solid var(--wp--preset--color--gray);
}

.page-header {
  padding-block: 80px 0;
  color: var(--wp--preset--color--white);
  background-image: url("../img/bg-wave-top.png"), linear-gradient(135deg, #E1F0FF 0%, var(--wp--preset--color--primary-light) 20%, var(--wp--preset--color--primary) 100%);
  background-repeat: no-repeat, no-repeat;
  background-position: top right, 0 0;
  background-size: 400px, auto;
}
@media (min-width: 1000px) {
  .page-header {
    background-size: 500px, auto;
  }
}
.page-header__inner {
  margin-block: 4em;
  text-align: center;
}
.page-header__title {
  font-size: clamp(1.5rem, 1.136rem + 1.82vw, 2.5rem);
  font-weight: var(--wp--custom--font-weight--bold);
  text-shadow: 0 0 8px rgba(10, 155, 228, 0.9), 0 0 18px rgba(82, 155, 214, 0.7), 0 0 30px rgba(0, 170, 255, 0.5);
}

[type=text],
[type=password],
[type=email],
[type=tel],
[type=search],
[type=number],
textarea,
select {
  max-width: 100%;
  padding: 10px;
  background-color: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--gray);
}

[type=radio],
[type=checkbox] {
  position: absolute;
  opacity: 0;
}
[type=radio] + span,
[type=checkbox] + span {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 15px;
  font-weight: var(--wp--custom--font-weight--base);
  line-height: 1.3;
  vertical-align: middle;
  cursor: pointer;
}
[type=radio] + span::before, [type=radio] + span::after,
[type=checkbox] + span::before,
[type=checkbox] + span::after {
  position: absolute;
  line-height: 1;
  content: "";
}
[type=radio] + span::before,
[type=checkbox] + span::before {
  background-color: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--gray);
}
[type=radio] + span::after,
[type=checkbox] + span::after {
  display: none;
}
[type=radio]:checked + span::before,
[type=radio]:checked + span::after,
[type=checkbox]:checked + span::before,
[type=checkbox]:checked + span::after {
  position: absolute;
  line-height: 1;
  content: "";
}
[type=radio]:checked + span::after,
[type=checkbox]:checked + span::after {
  display: block;
}

[type=radio] + span::before {
  left: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
}
[type=radio]:checked + span::after {
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  padding: 0;
  margin: 0;
  background: var(--wp--preset--color--primary);
  border-radius: 50%;
}

[type=checkbox] + span::before {
  left: 0;
  width: 20px;
  height: 20px;
}
[type=checkbox]:checked + span::after {
  position: absolute;
  top: 0;
  left: 6px;
  width: 8px;
  height: 16px;
  border-right: 3px solid var(--wp--preset--color--primary);
  border-bottom: 3px solid var(--wp--preset--color--primary);
  transform: rotate(45deg);
}

body:not(.confirm) .form__select-wrapper {
  position: relative;
  display: inline-block;
}
body:not(.confirm) .form__select-wrapper::after {
  position: absolute;
  top: 18px;
  right: 12px;
  width: 0;
  height: 0;
  pointer-events: none;
  content: "";
  border-top: 10px solid var(--wp--preset--color--black);
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
}
body:not(.confirm) .form__select-wrapper select {
  padding-right: 30px;
}

.form-field-submit {
  display: flex;
  flex-wrap: nowrap;
  max-width: 100%;
}
.form-field-submit__input {
  width: calc(100% - 70px);
  margin: 0;
}
.form-field-submit__button {
  flex-shrink: 0;
  width: 70px;
  padding: 10px;
  margin: 0;
  color: var(--wp--preset--color--white);
  background-color: var(--wp--preset--color--primary);
  border: 1px solid var(--wp--preset--color--primary);
  transition: opacity 0.25s;
}
.form-field-submit__button:is(:hover, :focus) {
  opacity: 0.8;
}

.form__hide {
  display: none !important;
}
.form__hide + dd {
  display: none !important;
}
.form__items {
  border-bottom: 1px dashed var(--wp--preset--color--gray);
}
.form__items dt {
  padding: 20px 0 10px;
  border-top: 1px dashed var(--wp--preset--color--gray);
}
.form__items dd {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 0 0 30px;
}
.form__label {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: var(--wp--preset--font-size--large);
  font-weight: var(--wp--custom--font-weight--bold);
}
.form__required {
  display: inline-block;
  flex-shrink: 0;
  width: 3em;
  font-size: var(--wp--preset--font-size--small);
  font-weight: var(--wp--custom--font-weight--base);
  color: var(--wp--preset--color--white);
  text-align: center;
  background-color: var(--wp--preset--color--red);
}
.form__field-container {
  display: flex;
  gap: 10px;
  width: 100%;
}
.form__field {
  width: 100%;
  min-width: 0;
}
.form__field label {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 5px;
}
.form__note {
  position: relative;
  padding-left: 1em;
  margin-top: 5px;
  font-size: var(--wp--preset--font-size--small);
  line-height: 1.3;
}
.form__note::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "＊";
}
.form__privacy {
  padding: 30px;
  margin-top: var(--wp--style--block-gap);
  text-align: center;
  border: 1px solid var(--wp--preset--color--gray);
}
.form__privacy-text {
  margin-bottom: 20px;
}
.form__submit {
  margin-top: var(--wp--style--block-gap);
}
.form__submit-button {
  display: grid;
  place-items: center;
  width: 100%;
}
.form__submit-button input[type=submit] {
  display: block;
  width: min(100%, 400px);
  padding: 20px;
  font-size: var(--wp--preset--font-size--large);
  color: var(--wp--preset--color--white);
  background: var(--wp--preset--gradient--cta-button);
  border-radius: 50px;
  transition: opacity 0.25s;
}
.form__submit-button input[type=submit]:not(:disabled):hover {
  opacity: 0.8;
}

@media (min-width: 768px) {
  .form__submit {
    flex-direction: row;
  }
}
@media (min-width: 1000px) {
  .form__items {
    display: flex;
    flex-wrap: wrap;
  }
  .form__items dt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 25%;
    padding: 35px 0 30px;
  }
  .form__items dd {
    width: 75%;
    padding: 30px 0 30px 30px;
    border-top: 1px dashed var(--wp--preset--color--gray);
  }
  .form__label {
    justify-content: space-between;
  }
}
.wpcf7-list-item {
  margin: 0 5px;
}

.wpcf7-response-output {
  padding: 20px 30px;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: var(--wp--preset--color--primary);
}

.wpcf7 form.invalid .wpcf7-response-output {
  border-color: var(--wp--preset--color--red);
}

.wpcf7-spinner {
  display: none !important;
}

.bottom-parts {
  position: sticky;
  bottom: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 100px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  will-change: opacity, transform;
}
.bottom-parts.is-up {
  pointer-events: auto;
  opacity: 1;
}

.bottom-parts-tabs {
  display: flex;
  flex: 1;
  gap: 5px;
  max-width: 610px;
  margin-inline: 10px;
  list-style: none;
}
.bottom-parts-tabs li {
  flex: 1;
}
.bottom-parts-tabs a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 70px;
  padding: 10px 0 20px;
  margin-bottom: -10px;
  font-size: 1.2rem;
  font-weight: var(--wp--custom--font-weight--bold);
  color: var(--wp--preset--color--white);
  text-decoration: none;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transition: all 0.25s;
}
@media (max-width: 370px) {
  .bottom-parts-tabs a {
    font-size: 1rem;
  }
}
.bottom-parts-tabs a.--dl {
  background: var(--wp--preset--gradient--cta-button);
}
.bottom-parts-tabs a.--contact {
  background: var(--wp--preset--gradient--primary);
}
.bottom-parts-tabs a:is(:hover, :focus) {
  transform: translateY(-10px);
}

.bottom-parts-pagetop {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  background: var(--wp--preset--color--primary);
  transition: opacity 0.25s;
}
.bottom-parts-pagetop span {
  width: 10px;
  height: 10px;
  margin-top: 4px;
  border-top: 3px solid var(--wp--preset--color--white);
  border-left: 3px solid var(--wp--preset--color--white);
  transform: rotate(45deg);
}
.bottom-parts-pagetop.is-show {
  visibility: visible;
  opacity: 1;
}
.bottom-parts-pagetop.is-show:is(:hover, :focus) {
  opacity: 0.8;
}

@media (max-width: 767px) {
  .bottom-parts-pagetop {
    display: none;
  }
}
.not-found-404 {
  text-align: center;
}

.not-found-404-button {
  display: inline-block;
  width: min(90%, 400px);
  padding: 15px;
  margin-top: 30px;
  font-size: var(--wp--preset--font-size--large);
  color: var(--wp--preset--color--white);
  text-decoration: none;
  background: var(--wp--preset--gradient--primary);
  border-radius: 50px;
  transition: opacity 0.25s;
}
.not-found-404-button:is(:hover, :focus) {
  opacity: 0.8;
}

.breadcrumbs-wrapper {
  background-color: var(--wp--preset--color--gray-bg);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  padding: 5px 0;
  margin: auto;
  font-size: var(--wp--preset--font-size--small);
  list-style: none;
}
.breadcrumbs li {
  padding-left: 0.5em;
}
.breadcrumbs li:not(:last-child)::after {
  padding-left: 0.5em;
  content: " > ";
}
.breadcrumbs a {
  color: inherit;
  text-decoration: underline;
}
.breadcrumbs a:is(:hover, :focus) {
  text-decoration: none;
}

.pagination {
  padding-top: var(--wp--style--block-gap);
  margin: calc(var(--wp--style--block-gap) * 2) 0;
  border-top: 1px dotted var(--wp--preset--color--gray);
}
.pagination ul {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding-left: 0;
  list-style: none;
}
.pagination a,
.pagination span {
  display: grid;
  place-items: center;
  width: 30px;
  aspect-ratio: 1;
  background: var(--wp--preset--color--my-light-gray);
}
@media (min-width: 1000px) {
  .pagination a,
  .pagination span {
    width: 50px;
  }
}
.pagination a {
  color: inherit;
  text-decoration: none;
}
.pagination .current {
  color: var(--wp--preset--color--white);
  background: var(--wp--preset--color--gray);
}

.prev-next-nav {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  margin: calc(var(--wp--style--block-gap) * 2) 0;
  border-top: 1px dotted var(--wp--preset--color--black);
}

.home-heading {
  font-size: clamp(1.8rem, 1.69rem + 0.55vw, 2rem);
}
.home-heading.--underbar {
  margin-bottom: 1.5em;
}
.home-heading.--underbar::after {
  display: block;
  width: 2em;
  height: 4px;
  margin-inline: auto;
  margin-top: 0.6em;
  content: "";
  background: linear-gradient(45deg, currentColor 50%, var(--wp--preset--color--secondary) 50%);
}

.home-hero-wrapper {
  padding-top: 66px;
  background-image: url("../img/bg-wave-top.png"), url("../img/bg-wave-bottom.png"), linear-gradient(135deg, #E1F0FF 0%, var(--wp--preset--color--primary-light) 45%, var(--wp--preset--color--primary) 100%);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: top right, left bottom, 0 0;
}

.home-hero {
  height: 100%;
  padding: 30px 20px 40px;
  margin-inline: auto;
  overflow: hidden;
}
.home-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-repeat: no-repeat;
  background-size: contain;
}
.home-hero__catch {
  font-weight: var(--wp--custom--font-weight--x-bold);
  transform: skewX(-3deg) rotate(-3deg);
}
.home-hero__note {
  display: inline;
  padding: 0.1em 0.5em;
  font-size: clamp(1.125rem, 0.698rem + 2.14vw, 2.3rem);
  color: var(--wp--preset--color--primary);
  background-color: var(--wp--preset--color--white);
  border: 2px solid currentColor;
  border-right-width: 4px;
  border-bottom-width: 4px;
  border-radius: 550px;
}
.home-hero__note span {
  margin-inline: 0.1em;
  font-size: 0.7em;
}
.home-hero__title {
  font-weight: var(--wp--custom--font-weight--x-bold);
  line-height: 1.8;
}
@media (max-width: 999px) {
  .home-hero__title {
    font-size: clamp(1.55rem, 0.397rem + 5.76vw, 4rem);
  }
}
@media (min-width: 1000px) {
  .home-hero__title {
    font-size: clamp(3rem, -1rem + 6.4vw, 4rem);
  }
}
.home-hero__title span.--small {
  font-size: 0.7em;
}
.home-hero__title span:first-child {
  padding-inline: 0.25em;
  line-height: 1;
  color: var(--wp--preset--color--secondary);
  background: linear-gradient(to bottom, transparent 70%, var(--wp--preset--color--yellow) 30%);
}
.home-hero__title span.--service {
  padding-inline: 0.25em;
  padding-bottom: 0.1em;
  color: var(--wp--preset--color--primary);
  background-color: var(--wp--preset--color--white);
  box-shadow: 2px 2px 0 var(--wp--preset--color--primary);
}
.home-hero__ribbon {
  display: inline-flex;
  padding: 0.25em 1em 0.25em 0.5em;
  clip-path: polygon(0 0, 100% 0, calc(100% - 0.8em) 100%, 0 100%);
  font-size: clamp(1.125rem, 0.698rem + 2.14vw, 2.1rem);
  line-height: 1.5;
  color: var(--wp--preset--color--white);
  background-color: var(--wp--preset--color--secondary);
}
.home-hero__ribbon span span {
  font-weight: var(--wp--custom--font-weight--x-bold);
}
@media screen and (min-width: 560px) and (max-width: 1000px) {
  .home-hero__ribbon br {
    display: none;
  }
}
@media screen and (min-width: 1250px) {
  .home-hero__ribbon br {
    display: none;
  }
}
.home-hero__services {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 15px;
  list-style: none;
}
.home-hero__services li {
  display: flex;
  align-items: center;
  padding: 0.25em 0.75em;
  font-size: clamp(0.875rem, 0.648rem + 1.14vw, 1.5rem);
  font-weight: bold;
  line-height: 1;
  background-color: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--black);
  border-radius: 50px;
}
.home-hero__services li:first-child {
  padding-right: 0;
}
.home-hero__services span {
  margin-left: -0.25em;
  font-size: 0.8em;
}
.home-hero__services svg {
  width: 30px;
  height: 30px;
  margin-right: 0.25em;
  fill: var(--wp--preset--color--black);
}

@media (max-width: 999px) {
  .home-hero-wrapper {
    background-size: 100%, 70%, auto;
  }
  .home-hero__content {
    background-position: center center;
  }
  .home-hero__people {
    margin: -8% -13% -5%;
  }
  .home-hero__form {
    display: none;
  }
}
@media (min-width: 1000px) {
  .home-hero-wrapper {
    background-size: 55%, 30%, auto;
  }
  .home-hero__inner {
    display: flex;
    gap: 2vw;
    align-items: center;
    justify-content: center;
    max-width: 1350px;
    margin-inline: auto;
  }
  .home-hero__content {
    flex: auto;
    background-position: left bottom;
  }
  .home-hero__people {
    margin: -18% -10% -12% 0;
  }
  .home-hero__form {
    display: block;
    flex-shrink: 0;
    width: 380px;
    margin-top: 10px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    box-shadow: 8px 8px 0 rgba(82, 155, 214, 0.3);
  }
  .home-hero__form-title {
    padding: 10px;
    font-size: var(--wp--preset--font-size--xxx-large);
    color: var(--wp--preset--color--white);
    text-align: center;
    background-color: var(--wp--preset--color--secondary);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  .home-hero__form-content {
    padding: 10px 20px 25px;
    font-size: 14px;
  }
  .home-hero__form-note {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.3;
  }
  .home-hero__form input:not([type=checkbox]) {
    width: 100%;
  }
  .home-hero__form .form__items {
    display: block;
    width: 100%;
    border: 0;
  }
  .home-hero__form .form__items dt,
  .home-hero__form .form__items dd {
    width: 100%;
    padding: 0;
    border: 0;
  }
  .home-hero__form .form__items dt {
    margin-top: 10px;
  }
  .home-hero__form .form__label {
    justify-content: start;
    font-size: inherit;
  }
  .home-hero__form .form__label br {
    display: none;
  }
  .home-hero__form .form__required {
    font-size: 11px;
    line-height: 1.5;
  }
  .home-hero__form .form__privacy {
    padding: 10px;
  }
  .home-hero__form .form__privacy p {
    font-size: inherit;
    text-align: left;
  }
  .home-hero__form .form__submit-button [type=submit] {
    padding: 15px 10px;
    font-size: var(--wp--preset--font-size--x-large);
    font-weight: var(--wp--custom--font-weight--bold);
  }
}
.home-problems {
  position: relative;
  padding-bottom: calc(var(--wp--preset--spacing--70) * 2) !important;
  background: linear-gradient(to bottom, var(--wp--preset--color--white) 0%, var(--wp--preset--color--white) 50%, #f3f3f3 100%);
}
.home-problems::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 150px;
  pointer-events: none;
  content: "";
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,60 Q300,10 600,60 T1200,60 L1200,120 L0,120 Z' fill='%23ffffff' fill-opacity='1'/%3E%3C/svg%3E");
  background-position: bottom;
  background-size: cover;
}
.home-problems h2 strong {
  font-size: 1.2em;
  font-weight: 500;
}
@media (min-width: 768px) {
  .home-problems h2 br {
    display: none;
  }
}

.home-problems-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 900px !important;
  padding-left: 0;
  margin-inline: auto;
  list-style: none;
}
@media (min-width: 768px) {
  .home-problems-list {
    align-items: center;
  }
}
.home-problems-list li {
  position: relative;
  padding: 30px 25px 30px 2.5em;
  margin-top: -10px;
  margin-left: -10px;
  background-color: rgba(255, 255, 255, 0.8);
  border: 2px solid var(--wp--preset--color--gray-light);
  border-radius: 50px;
  border-bottom-left-radius: 0;
}
@media (min-width: 768px) {
  .home-problems-list li:nth-child(odd) {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 50px;
  }
}
@media (min-width: 1000px) {
  .home-problems-list li:nth-child(odd) {
    transform: translateY(-15px);
  }
}
.home-problems-list li:nth-of-type(1) {
  z-index: 3;
}
.home-problems-list li:nth-of-type(2) {
  z-index: 2;
}
.home-problems-list li:nth-of-type(3) {
  z-index: 1;
}
.home-problems-list li::before {
  position: absolute;
  top: 1.7em;
  left: 1em;
  display: block;
  width: 1.2em;
  height: 1.2em;
  content: "";
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath d='M8.99999 16.2L4.79999 12L3.39999 13.4L8.99999 19L21 6.99998L19.6 5.59998L8.99999 16.2Z' fill='%23529bd6'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0'%3E%3Crect width='24' height='24'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
.home-problems-people {
  position: relative;
  z-index: 1;
}
.home-problems-people img {
  display: block;
  width: min(80%, 350px);
  margin-inline: auto;
}

.home-solution {
  background: linear-gradient(to bottom, var(--wp--preset--color--white) 0%, var(--wp--preset--color--primary-bg));
}
.home-solution h2 {
  font-size: clamp(1.4rem, 1.069rem + 1.66vw, 2rem);
}
@media (min-width: 768px) {
  .home-solution h2 br:nth-of-type(1),
  .home-solution h2 br:nth-of-type(3) {
    display: none;
  }
}

.home-solution-img-sp img {
  display: block;
  width: min(100%, 450px);
  margin-inline: auto;
}

@media (min-width: 768px) {
  .home-jobs h2 br {
    display: none;
  }
}

.home-jobs-columns {
  margin-top: 70px !important;
}
@media (max-width: 767px) {
  .home-jobs-columns {
    gap: 70px;
  }
}
.home-jobs-columns > * {
  padding: 30px;
}
.home-jobs-columns > * .wp-block-list {
  padding-left: 0;
  list-style: none;
}
.home-jobs-columns > * .wp-block-list li {
  display: flex;
  align-items: start;
}
.home-jobs-columns > * .wp-block-list li::before {
  display: inline-block;
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  margin-top: 0.3em;
  margin-right: 0.6em;
  vertical-align: middle;
  content: "";
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23529bd6'%3E%3Cpath d='M18 7.00003L16.59 5.59003L10.25 11.93L11.66 13.34L18 7.00003ZM22.24 5.59003L11.66 16.17L7.48 12L6.07 13.41L11.66 19L23.66 7.00003L22.24 5.59003ZM0.410004 13.41L6 19L7.41 17.59L1.83 12L0.410004 13.41Z'/%3E%3C/svg%3E");
}

.home-reason {
  background-image: url("../img/bg-wave-top.png"), url("../img/bg-wave-bottom.png"), linear-gradient(135deg, var(--wp--preset--color--white) 0%, var(--wp--preset--color--primary-light) 70%, var(--wp--preset--color--primary) 100%);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: top right, left bottom, 0 0;
}
@media (max-width: 999px) {
  .home-reason {
    background-size: 100%, 70%, auto;
  }
}
@media (min-width: 1000px) {
  .home-reason {
    background-size: 55%, 30%, auto;
  }
}

.home-reason-item {
  position: relative;
}
.home-reason-item h3 {
  font-size: clamp(1.5rem, 1.445rem + 0.28vw, 1.6rem);
}
@media (min-width: 768px) {
  .home-reason-item h3 {
    padding-inline: 40px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .home-reason-item {
    padding: 20px;
    padding-top: 35px;
    margin-top: 50px;
  }
}
@media (min-width: 768px) {
  .home-reason-item {
    padding: 30px;
    margin-top: 15px;
  }
}
@media (min-width: 768px) {
  .home-reason-item:nth-child(odd) .bubble {
    right: -5px;
    left: auto;
    transform: rotate(30deg);
  }
}
.home-reason-item .bubble {
  position: absolute;
  display: flex;
  gap: 0.25em;
  align-items: center;
  justify-content: center;
  font-family: var(--wp--preset--font-family--en);
  line-height: 1;
  color: var(--wp--preset--color--white);
  background-color: var(--wp--preset--color--secondary);
}
@media (max-width: 767px) {
  .home-reason-item .bubble {
    top: -50px;
    left: -5px;
    padding: 10px;
    border-radius: 10px;
  }
}
@media (min-width: 768px) {
  .home-reason-item .bubble {
    top: -50px;
    left: -10px;
    flex-direction: column;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    transform: rotate(-30deg);
  }
}
.home-reason-item .bubble::after {
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  border-top: 10px solid var(--wp--preset--color--secondary);
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  transform: translateX(-50%);
}
.home-reason-item .reason {
  padding-bottom: 0.2em;
  border-bottom: 1px dashed var(--wp--preset--color--white);
}
.home-reason-item .num {
  margin-top: 0;
  font-size: var(--wp--preset--font-size--xx-large);
  font-weight: 600;
}
@media (min-width: 768px) {
  .home-reason-item .num {
    margin-bottom: -0.3em;
  }
}

.home-cases {
  position: relative;
  padding: 100px 20px 160px;
  overflow: hidden;
  background: var(--wp--preset--color--white);
}
.home-cases::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 140%;
  height: 400px;
  content: "";
  background: var(--wp--preset--color--primary-bg);
  border-radius: 50% 50% 0 0;
  transform: translateX(-50%);
}
.home-cases h4 {
  padding: 0.3em 0.75em 0.4em;
  line-height: 1;
}

.home-cases-item {
  position: relative;
  z-index: 1;
  padding-block: 15px;
  padding-inline: 15px;
  background-color: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--secondary);
  box-shadow: 4px 4px 0 var(--wp--preset--color--primary-light);
}
@media (min-width: 768px) {
  .home-cases-item {
    padding-inline: 30px;
    padding-bottom: 30px;
  }
}

.home-cases-title {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-weight: var(--wp--custom--font-weight--bold);
  text-align: left;
}
.home-cases-title p, .home-cases-title h3 {
  margin-left: 0 !important;
}
.home-cases-title p {
  position: relative;
  display: flex;
  height: 50px;
  padding: 0 30px;
  margin-left: -28px !important;
  font-size: var(--wp--preset--font-size--xx-large);
  font-weight: bold;
  line-height: 50px;
  color: var(--wp--preset--color--white);
  background-color: var(--wp--preset--color--secondary);
}
@media (min-width: 768px) {
  .home-cases-title p {
    padding: 0 42px;
    margin-left: -42px !important;
  }
}
.home-cases-title p mark {
  display: block;
  margin-top: 0.05em;
  margin-left: 0.2em;
  font-family: var(--wp--preset--font-family--en);
  font-size: 1.2em;
}
.home-cases-title p::before {
  position: absolute;
  top: 100%;
  left: 0;
  content: "";
  border-right: solid 12px #3a5074;
  border-bottom: solid 12px transparent;
}
.home-cases-title p::after {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 0;
  height: 0;
  content: "";
  border-color: transparent var(--wp--preset--color--white) transparent transparent;
  border-style: solid;
  border-width: 25px 15px 25px 0;
}
.home-cases-title h3 {
  margin-top: 0;
  font-size: var(--wp--preset--font-size--xxx-large);
}

@media (max-width: 767px) {
  .home-cases-img {
    width: min(80%, 200px);
  }
}

.home-pricing {
  background: linear-gradient(4deg, var(--wp--preset--color--white) 0%, var(--wp--preset--color--white) 75%, var(--wp--preset--color--primary-bg) 75%);
}

.home-pricing-table {
  width: 100%;
  background-color: var(--wp--preset--color--white);
  border: 2px solid var(--wp--preset--color--gray-light);
  box-shadow: 4px 4px 0 var(--wp--preset--color--gray-bg);
}
@media (min-width: 768px) {
  .home-pricing-table {
    table-layout: fixed;
  }
}
.home-pricing-table thead th {
  color: var(--wp--preset--color--gray);
  background-color: var(--wp--preset--color--gray-bg);
}
@media (min-width: 768px) {
  .home-pricing-table thead th br {
    display: none;
  }
}
.home-pricing-table .plan {
  font-size: clamp(0.7rem, 0.433rem + 1.33vw, 1.1rem);
  color: var(--wp--preset--color--white);
  background-color: var(--wp--preset--color--primary);
}
@media (min-width: 768px) {
  .home-pricing-table .plan br {
    display: none;
  }
}
.home-pricing-table .plan span {
  margin-inline: 0.05em;
  font-size: 1.6em;
}
.home-pricing-table .price,
.home-pricing-table .extra {
  font-size: clamp(0.8rem, 0.667rem + 0.67vw, 1rem);
}
.home-pricing-table .price span {
  font-size: 1.3em;
}
.home-pricing-table .recommended th {
  border-top: 3px solid var(--wp--preset--color--orange);
  border-bottom: 3px solid var(--wp--preset--color--orange) !important;
  border-left: 3px solid var(--wp--preset--color--orange);
}
.home-pricing-table .recommended td {
  border-top: 3px solid var(--wp--preset--color--orange);
  border-bottom: 3px solid var(--wp--preset--color--orange);
}
.home-pricing-table .recommended td:last-child {
  border-right: 3px solid var(--wp--preset--color--orange);
}
.home-pricing-table th, .home-pricing-table td {
  padding-block: 15px;
  text-align: center;
  border: 1px solid var(--wp--preset--color--gray-light);
}
.home-pricing-table th {
  line-height: 1.3;
}
.home-pricing-table tbody tr:not(:last-child) th.plan:not(:last-child) {
  border-bottom: 1px solid var(--wp--preset--color--white);
}

@media (min-width: 768px) {
  .home-pricing-graph-title {
    display: flex;
    gap: 0.25em;
    align-items: center;
    justify-content: center;
  }
  .home-pricing-graph-title::before, .home-pricing-graph-title::after {
    width: 1.25em;
    height: 2px;
    content: "";
    background-color: var(--wp--preset--color--primary);
  }
  .home-pricing-graph-title::before {
    transform: rotate(50deg);
  }
  .home-pricing-graph-title::after {
    margin-left: -0.5em;
    transform: rotate(-50deg);
  }
}
.home-pricing-graph-img img {
  width: min(100%, 600px);
}

.home-flow h3 {
  font-size: clamp(1.5rem, 1.445rem + 0.28vw, 1.6rem);
}
.home-flow .home-flow-steps-item + .home-flow-steps-item {
  margin-block-start: 30px !important;
}
.home-flow .home-flow-steps-item {
  position: relative;
  background-color: var(--wp--preset--color--white);
  border-radius: 10px;
  box-shadow: 4px 4px 0 var(--wp--preset--color--gray-bg);
}
@media (max-width: 767px) {
  .home-flow .home-flow-steps-item {
    padding: 30px;
  }
}
@media (min-width: 768px) {
  .home-flow .home-flow-steps-item {
    flex-wrap: nowrap !important;
    padding: 30px 30px 30px 5px !important;
  }
}
.home-flow .home-flow-steps-item > *:first-child {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 5px;
  align-items: center;
  justify-content: center;
  font-family: var(--wp--preset--font-family--en);
  font-weight: 600;
  line-height: 1;
  color: var(--wp--preset--color--primary);
  white-space: nowrap;
}
@media (max-width: 767px) {
  .home-flow .home-flow-steps-item > *:first-child {
    padding-bottom: 20px;
    border-bottom: 1px dotted var(--wp--preset--color--gray-light);
  }
}
@media (min-width: 768px) {
  .home-flow .home-flow-steps-item > *:first-child {
    flex: 0 0 120px !important;
    border-right: 1px dotted var(--wp--preset--color--gray-light);
  }
}
.home-flow .home-flow-steps-item > *:first-child .step {
  font-size: 12px;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .home-flow .home-flow-steps-item > *:first-child .step {
    font-size: 16px;
  }
}
.home-flow .home-flow-steps-item > *:first-child .num {
  margin-top: 0;
  font-size: 30px;
}
@media (min-width: 768px) {
  .home-flow .home-flow-steps-item > *:first-child .num {
    font-size: 45px;
  }
}
.home-flow .home-flow-steps-item > *:last-child {
  flex: 1;
}
.home-flow .home-flow-steps-item:not(:last-child)::after {
  position: absolute;
  bottom: -16px;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  border-top: 16px solid var(--wp--preset--color--primary);
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .home-flow .home-flow-steps-item .wp-block-heading {
    text-align: center;
  }
}
.home-flow .home-flow-steps-item .wp-block-heading + * {
  margin-top: 15px;
}

.home-faq-item {
  background-color: var(--wp--preset--color--primary-bg);
  border-left: 3px solid var(--wp--preset--color--primary);
}
.home-faq-item:hover .wp-block-accordion-heading__toggle-title {
  text-decoration: none !important;
}
.home-faq-item + .home-faq-item {
  margin-top: 10px;
}
.home-faq-item .wp-block-accordion-heading__toggle {
  padding: 0;
}
.home-faq-item .wp-block-accordion-heading__toggle-icon {
  margin-right: 15px;
  color: var(--wp--preset--color--primary);
}
.home-faq-item .wp-block-accordion-heading__toggle-title {
  position: relative;
  padding: 20px 15px 20px 25px;
  font-size: clamp(1.125rem, 1.125rem + (1vw - 0.234rem) * 0.046, 1.143rem);
}
.home-faq-item .wp-block-accordion-heading__toggle-title::before {
  position: absolute;
  top: 50%;
  left: 0; /* ボーダーの右端に合わせる */
  width: 0;
  height: 0;
  content: "";
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #4a90e2;
  transform: translateY(-50%);
}
.home-faq-item .wp-block-accordion-panel {
  padding: 0 15px 20px 25px;
  margin-top: 0;
}

.home-news {
  background-image: url("../img/bg-wave-top.png"), url("../img/bg-wave-bottom.png"), linear-gradient(135deg, var(--wp--preset--color--white) 0%, var(--wp--preset--color--primary-light) 70%, var(--wp--preset--color--primary) 100%);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: top right, left bottom, 0 0;
}
@media (max-width: 999px) {
  .home-news {
    background-size: 75%, 50%, auto;
  }
}
@media (min-width: 1000px) {
  .home-news {
    background-size: 55%, 30%, auto;
  }
}

.home-post {
  background: linear-gradient(4deg, var(--wp--preset--color--white) 0%, var(--wp--preset--color--white) 35%, var(--wp--preset--color--primary-bg) 35%);
}

.news-header {
  padding-bottom: 15px;
  margin-bottom: var(--wp--style--block-gap);
  border-bottom: 2px solid var(--wp--preset--color--my-dark-gray);
}

.news-list.--home {
  border-top: 0;
}
.news-list.--home li:last-child {
  border-bottom: 0;
}
.news-list {
  padding-top: 1em;
  list-style: none;
  border-top: 1px dotted var(--wp--preset--color--primary);
}
.news-list a {
  display: block;
  padding: 0 15px;
  padding-block: 20px 15px;
  color: inherit;
  text-decoration: none;
  background-color: var(--wp--preset--color--white);
  transition: all 0.25s;
}
.news-list a:is(:hover, :focus) {
  background-color: var(--wp--preset--color--primary-bg);
}
.news-list__meta {
  display: flex;
  gap: 1em;
  margin-bottom: 5px;
  font-size: 13px;
  line-height: 1;
}
.news-list__cat {
  padding: 3px 5px;
  color: var(--wp--preset--color--white);
  background-color: var(--wp--preset--color--secondary);
  border-radius: 3px;
}

.news-prev-next-nav {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  margin: 30px 0;
  border-top: 1px dotted var(--wp--preset--color--gray);
}
.news-prev-next-nav a {
  color: inherit;
}

.news-recent-list {
  line-height: var(--wp--custom--line-height--small);
  list-style: none;
}
.news-recent-list a {
  display: block;
  padding-block: 0.75em;
  color: inherit;
  text-decoration: none;
}
.news-recent-list a time {
  display: block;
}
.news-recent-list a:is(:hover, :focus) span {
  text-decoration: underline;
}
.news-recent-list time {
  display: block;
  margin-bottom: 0.5em;
  font-size: var(--wp--preset--font-size--small);
  color: var(--wp--preset--color--gray);
}

.post-header {
  padding-bottom: 15px;
  margin-bottom: var(--wp--style--block-gap);
  border-bottom: 2px solid var(--wp--preset--color--my-dark-gray);
}
.post-header__title.--cat {
  padding-bottom: 0.5em;
  font-size: calc(var(--wp--preset--font-size--xxxx-large));
  border-bottom: 2px dotted var(--wp--preset--color--gray-light);
}
.post-header__meta {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  line-height: var(--wp--custom--line-height--small);
}
.post-header__cat {
  display: flex;
  gap: 5px;
  font-size: 14px;
}
.post-header__cat a {
  padding: 2px 5px;
  color: var(--wp--preset--color--white);
  text-decoration: none;
  background-color: var(--wp--preset--color--secondary);
  border-radius: 3px;
}

.post-tag-container {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.post-recent-list {
  line-height: var(--wp--custom--line-height--small);
  list-style: none;
}
.post-recent-list a {
  display: block;
  padding-block: 0.75em;
  color: inherit;
  text-decoration: none;
}
.post-recent-list a time {
  display: block;
}
.post-recent-list a:is(:hover, :focus) span {
  text-decoration: underline;
}
.post-recent-list time {
  display: block;
  margin-bottom: 0.5em;
  font-size: var(--wp--preset--font-size--small);
  color: var(--wp--preset--color--gray);
}

.post-list {
  display: grid;
  gap: var(--wp--style--block-gap) calc(var(--wp--style--block-gap) / 5 * 4);
}
.post-list__item a {
  display: block;
  height: 100%;
  overflow: hidden;
  text-decoration: none;
  background-color: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--primary-light);
}
.post-list__item a:hover .post-list__img-wrapper img {
  transform: scale(1.08);
}
.post-list__img-wrapper {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.post-list__img-wrapper.is-no-img {
  background-color: var(--wp--preset--color--gray-bg);
}
.post-list__img-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  transition: transform var(--wp--custom--transition-speed) ease;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-list__content {
  padding: 1em;
}
.post-list__title {
  margin-bottom: 0.5em;
  font-size: var(--wp--preset--font-size--large);
  font-weight: var(--wp--custom--font-weight--bold);
  line-height: var(--wp--custom--line-height--small);
  color: var(--wp--preset--color--black);
}
.post-list__meta {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: var(--wp--preset--font-size--small);
  color: var(--wp--preset--color--gray);
}
.post-list__time {
  flex-shrink: 0;
}
.post-list__cat {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.post-list__cat span {
  padding: 0.25em 0.5em;
  line-height: 1;
  color: var(--wp--preset--color--white);
  background-color: var(--wp--preset--color--secondary);
}

@media (min-width: 768px) {
  .post-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.cta p {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  font-size: var(--wp--preset--font-size--x-large);
}
.cta p::before, .cta p::after {
  width: 2px;
  height: 1em;
  content: "";
  background-color: var(--wp--preset--color--black);
}
.cta p::before {
  transform: rotate(-20deg);
}
.cta p::after {
  transform: rotate(20deg);
}

@media (max-width: 767px) {
  .u-pc-only {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .u-mobile-only {
    display: none !important;
  }
}
@media (max-width: 999px) {
  .u-lg-only {
    display: none !important;
  }
}
@media (min-width: 1000px) {
  .u-lg-1-only {
    display: none !important;
  }
}
.page .entry-content {
  padding-inline: var(--wp--custom--spacing--gutter);
}

.entry-content::after {
  display: table;
  clear: both;
  content: "";
}
.entry-content > *:not(.alignfull) {
  max-width: var(--wp--style--global--content-size);
  margin-inline: auto;
}
.entry-content > *.alignfull {
  padding-inline: var(--wp--custom--spacing--gutter);
  margin-inline: calc(var(--wp--custom--spacing--gutter) * -1);
}

.wp-block-heading + .wp-block-heading {
  margin-block-start: var(--wp--style--block-gap);
}

.wp-block-group.is-layout-flex .wp-block-heading {
  margin-block-start: 0;
}

.wp-block-heading.has-background {
  padding: 0.5em 1em;
}

.is-style-heading-bdb,
.is-style-heading-bdb-dashed {
  --wp-preset-color: var(--wp--preset--color--primary);
  padding: 0 0 0.3em !important;
  background-color: transparent !important;
  border-bottom: 3px solid var(--wp-preset-color);
}
.is-style-heading-bdb.has-primary-background-color,
.is-style-heading-bdb-dashed.has-primary-background-color {
  --wp-preset-color: var(--wp--preset--color--primary);
}
.is-style-heading-bdb.has-primary-light-background-color,
.is-style-heading-bdb-dashed.has-primary-light-background-color {
  --wp-preset-color: var(--wp--preset--color--primary-light);
}
.is-style-heading-bdb.has-primary-bg-background-color,
.is-style-heading-bdb-dashed.has-primary-bg-background-color {
  --wp-preset-color: var(--wp--preset--color--primary-bg);
}
.is-style-heading-bdb.has-secondary-background-color,
.is-style-heading-bdb-dashed.has-secondary-background-color {
  --wp-preset-color: var(--wp--preset--color--secondary);
}
.is-style-heading-bdb.has-secondary-bg-background-color,
.is-style-heading-bdb-dashed.has-secondary-bg-background-color {
  --wp-preset-color: var(--wp--preset--color--secondary-bg);
}
.is-style-heading-bdb.has-black-background-color,
.is-style-heading-bdb-dashed.has-black-background-color {
  --wp-preset-color: var(--wp--preset--color--black);
}
.is-style-heading-bdb.has-gray-background-color,
.is-style-heading-bdb-dashed.has-gray-background-color {
  --wp-preset-color: var(--wp--preset--color--gray);
}
.is-style-heading-bdb.has-gray-light-background-color,
.is-style-heading-bdb-dashed.has-gray-light-background-color {
  --wp-preset-color: var(--wp--preset--color--gray-light);
}
.is-style-heading-bdb.has-gray-bg-background-color,
.is-style-heading-bdb-dashed.has-gray-bg-background-color {
  --wp-preset-color: var(--wp--preset--color--gray-bg);
}
.is-style-heading-bdb.has-red-background-color,
.is-style-heading-bdb-dashed.has-red-background-color {
  --wp-preset-color: var(--wp--preset--color--red);
}
.is-style-heading-bdb.has-red-bg-background-color,
.is-style-heading-bdb-dashed.has-red-bg-background-color {
  --wp-preset-color: var(--wp--preset--color--red-bg);
}
.is-style-heading-bdb.has-orange-background-color,
.is-style-heading-bdb-dashed.has-orange-background-color {
  --wp-preset-color: var(--wp--preset--color--orange);
}
.is-style-heading-bdb.has-orange-light-background-color,
.is-style-heading-bdb-dashed.has-orange-light-background-color {
  --wp-preset-color: var(--wp--preset--color--orange-light);
}
.is-style-heading-bdb.has-yellow-background-color,
.is-style-heading-bdb-dashed.has-yellow-background-color {
  --wp-preset-color: var(--wp--preset--color--yellow);
}
.is-style-heading-bdb.has-yellow-bg-background-color,
.is-style-heading-bdb-dashed.has-yellow-bg-background-color {
  --wp-preset-color: var(--wp--preset--color--yellow-bg);
}
.is-style-heading-bdb.has-white-background-color,
.is-style-heading-bdb-dashed.has-white-background-color {
  --wp-preset-color: var(--wp--preset--color--white);
}
.is-style-heading-bdb.has-green-background-color,
.is-style-heading-bdb-dashed.has-green-background-color {
  --wp-preset-color: var(--wp--preset--color--green);
}

.is-style-heading-bdb-dashed {
  border-bottom-style: dashed;
}

.is-style-heading-bdl {
  --wp-preset-color: var(--wp--preset--color--primary);
  padding: 0 0 0 0.75em !important;
  background-color: transparent !important;
  border-left: 3px solid var(--wp-preset-color);
}
.is-style-heading-bdl.has-primary-background-color {
  --wp-preset-color: var(--wp--preset--color--primary);
}
.is-style-heading-bdl.has-primary-light-background-color {
  --wp-preset-color: var(--wp--preset--color--primary-light);
}
.is-style-heading-bdl.has-primary-bg-background-color {
  --wp-preset-color: var(--wp--preset--color--primary-bg);
}
.is-style-heading-bdl.has-secondary-background-color {
  --wp-preset-color: var(--wp--preset--color--secondary);
}
.is-style-heading-bdl.has-secondary-bg-background-color {
  --wp-preset-color: var(--wp--preset--color--secondary-bg);
}
.is-style-heading-bdl.has-black-background-color {
  --wp-preset-color: var(--wp--preset--color--black);
}
.is-style-heading-bdl.has-gray-background-color {
  --wp-preset-color: var(--wp--preset--color--gray);
}
.is-style-heading-bdl.has-gray-light-background-color {
  --wp-preset-color: var(--wp--preset--color--gray-light);
}
.is-style-heading-bdl.has-gray-bg-background-color {
  --wp-preset-color: var(--wp--preset--color--gray-bg);
}
.is-style-heading-bdl.has-red-background-color {
  --wp-preset-color: var(--wp--preset--color--red);
}
.is-style-heading-bdl.has-red-bg-background-color {
  --wp-preset-color: var(--wp--preset--color--red-bg);
}
.is-style-heading-bdl.has-orange-background-color {
  --wp-preset-color: var(--wp--preset--color--orange);
}
.is-style-heading-bdl.has-orange-light-background-color {
  --wp-preset-color: var(--wp--preset--color--orange-light);
}
.is-style-heading-bdl.has-yellow-background-color {
  --wp-preset-color: var(--wp--preset--color--yellow);
}
.is-style-heading-bdl.has-yellow-bg-background-color {
  --wp-preset-color: var(--wp--preset--color--yellow-bg);
}
.is-style-heading-bdl.has-white-background-color {
  --wp-preset-color: var(--wp--preset--color--white);
}
.is-style-heading-bdl.has-green-background-color {
  --wp-preset-color: var(--wp--preset--color--green);
}

.is-style-heading-bdb-short {
  --wp-preset-color: var(--wp--preset--color--primary);
  position: relative;
  padding: 0 0 0.75em !important;
  text-align: center;
  background-color: transparent !important;
}
.is-style-heading-bdb-short.has-primary-background-color {
  --wp-preset-color: var(--wp--preset--color--primary);
}
.is-style-heading-bdb-short.has-primary-light-background-color {
  --wp-preset-color: var(--wp--preset--color--primary-light);
}
.is-style-heading-bdb-short.has-primary-bg-background-color {
  --wp-preset-color: var(--wp--preset--color--primary-bg);
}
.is-style-heading-bdb-short.has-secondary-background-color {
  --wp-preset-color: var(--wp--preset--color--secondary);
}
.is-style-heading-bdb-short.has-secondary-bg-background-color {
  --wp-preset-color: var(--wp--preset--color--secondary-bg);
}
.is-style-heading-bdb-short.has-black-background-color {
  --wp-preset-color: var(--wp--preset--color--black);
}
.is-style-heading-bdb-short.has-gray-background-color {
  --wp-preset-color: var(--wp--preset--color--gray);
}
.is-style-heading-bdb-short.has-gray-light-background-color {
  --wp-preset-color: var(--wp--preset--color--gray-light);
}
.is-style-heading-bdb-short.has-gray-bg-background-color {
  --wp-preset-color: var(--wp--preset--color--gray-bg);
}
.is-style-heading-bdb-short.has-red-background-color {
  --wp-preset-color: var(--wp--preset--color--red);
}
.is-style-heading-bdb-short.has-red-bg-background-color {
  --wp-preset-color: var(--wp--preset--color--red-bg);
}
.is-style-heading-bdb-short.has-orange-background-color {
  --wp-preset-color: var(--wp--preset--color--orange);
}
.is-style-heading-bdb-short.has-orange-light-background-color {
  --wp-preset-color: var(--wp--preset--color--orange-light);
}
.is-style-heading-bdb-short.has-yellow-background-color {
  --wp-preset-color: var(--wp--preset--color--yellow);
}
.is-style-heading-bdb-short.has-yellow-bg-background-color {
  --wp-preset-color: var(--wp--preset--color--yellow-bg);
}
.is-style-heading-bdb-short.has-white-background-color {
  --wp-preset-color: var(--wp--preset--color--white);
}
.is-style-heading-bdb-short.has-green-background-color {
  --wp-preset-color: var(--wp--preset--color--green);
}
.is-style-heading-bdb-short::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 3em;
  height: 3px;
  content: "";
  background-color: var(--wp-preset-color);
  transform: translateX(-50%);
}

.is-style-heading-line-both {
  --wp-preset-color: var(--wp--preset--color--primary);
  position: relative;
  display: flex;
  gap: 0.8em;
  align-items: center;
  text-align: center;
}
.is-style-heading-line-both.has-primary-background-color {
  --wp-preset-color: var(--wp--preset--color--primary);
}
.is-style-heading-line-both.has-primary-light-background-color {
  --wp-preset-color: var(--wp--preset--color--primary-light);
}
.is-style-heading-line-both.has-primary-bg-background-color {
  --wp-preset-color: var(--wp--preset--color--primary-bg);
}
.is-style-heading-line-both.has-secondary-background-color {
  --wp-preset-color: var(--wp--preset--color--secondary);
}
.is-style-heading-line-both.has-secondary-bg-background-color {
  --wp-preset-color: var(--wp--preset--color--secondary-bg);
}
.is-style-heading-line-both.has-black-background-color {
  --wp-preset-color: var(--wp--preset--color--black);
}
.is-style-heading-line-both.has-gray-background-color {
  --wp-preset-color: var(--wp--preset--color--gray);
}
.is-style-heading-line-both.has-gray-light-background-color {
  --wp-preset-color: var(--wp--preset--color--gray-light);
}
.is-style-heading-line-both.has-gray-bg-background-color {
  --wp-preset-color: var(--wp--preset--color--gray-bg);
}
.is-style-heading-line-both.has-red-background-color {
  --wp-preset-color: var(--wp--preset--color--red);
}
.is-style-heading-line-both.has-red-bg-background-color {
  --wp-preset-color: var(--wp--preset--color--red-bg);
}
.is-style-heading-line-both.has-orange-background-color {
  --wp-preset-color: var(--wp--preset--color--orange);
}
.is-style-heading-line-both.has-orange-light-background-color {
  --wp-preset-color: var(--wp--preset--color--orange-light);
}
.is-style-heading-line-both.has-yellow-background-color {
  --wp-preset-color: var(--wp--preset--color--yellow);
}
.is-style-heading-line-both.has-yellow-bg-background-color {
  --wp-preset-color: var(--wp--preset--color--yellow-bg);
}
.is-style-heading-line-both.has-white-background-color {
  --wp-preset-color: var(--wp--preset--color--white);
}
.is-style-heading-line-both.has-green-background-color {
  --wp-preset-color: var(--wp--preset--color--green);
}
.is-style-heading-line-both::before, .is-style-heading-line-both::after {
  flex: 1;
  min-width: 20px;
  height: 1px;
  content: "";
  background-color: var(--wp-preset-color);
}
.is-style-heading-line-both.has-background {
  background-color: transparent !important;
}

[class*=is-style-heading-icon-] {
  --wp-preset-color: var(--wp--preset--color--primary);
  position: relative;
  padding-left: 1.5em;
}
[class*=is-style-heading-icon-].has-primary-background-color {
  --wp-preset-color: var(--wp--preset--color--primary);
}
[class*=is-style-heading-icon-].has-primary-light-background-color {
  --wp-preset-color: var(--wp--preset--color--primary-light);
}
[class*=is-style-heading-icon-].has-primary-bg-background-color {
  --wp-preset-color: var(--wp--preset--color--primary-bg);
}
[class*=is-style-heading-icon-].has-secondary-background-color {
  --wp-preset-color: var(--wp--preset--color--secondary);
}
[class*=is-style-heading-icon-].has-secondary-bg-background-color {
  --wp-preset-color: var(--wp--preset--color--secondary-bg);
}
[class*=is-style-heading-icon-].has-black-background-color {
  --wp-preset-color: var(--wp--preset--color--black);
}
[class*=is-style-heading-icon-].has-gray-background-color {
  --wp-preset-color: var(--wp--preset--color--gray);
}
[class*=is-style-heading-icon-].has-gray-light-background-color {
  --wp-preset-color: var(--wp--preset--color--gray-light);
}
[class*=is-style-heading-icon-].has-gray-bg-background-color {
  --wp-preset-color: var(--wp--preset--color--gray-bg);
}
[class*=is-style-heading-icon-].has-red-background-color {
  --wp-preset-color: var(--wp--preset--color--red);
}
[class*=is-style-heading-icon-].has-red-bg-background-color {
  --wp-preset-color: var(--wp--preset--color--red-bg);
}
[class*=is-style-heading-icon-].has-orange-background-color {
  --wp-preset-color: var(--wp--preset--color--orange);
}
[class*=is-style-heading-icon-].has-orange-light-background-color {
  --wp-preset-color: var(--wp--preset--color--orange-light);
}
[class*=is-style-heading-icon-].has-yellow-background-color {
  --wp-preset-color: var(--wp--preset--color--yellow);
}
[class*=is-style-heading-icon-].has-yellow-bg-background-color {
  --wp-preset-color: var(--wp--preset--color--yellow-bg);
}
[class*=is-style-heading-icon-].has-white-background-color {
  --wp-preset-color: var(--wp--preset--color--white);
}
[class*=is-style-heading-icon-].has-green-background-color {
  --wp-preset-color: var(--wp--preset--color--green);
}
[class*=is-style-heading-icon-]::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.2em;
  aspect-ratio: 14/20;
  content: "";
  background-color: var(--wp-preset-color);
  transform: translateY(-50%);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
[class*=is-style-heading-icon-].has-background {
  padding: 0 0 0 1.5em !important;
  background-color: transparent !important;
}
[class*=is-style-heading-icon-].has-text-align-center {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}
[class*=is-style-heading-icon-]:not(.has-text-align-center) {
  width: auto;
  margin-right: 0;
  margin-left: 0;
}

.is-style-heading-icon-lightbulb {
  --wp-preset-color: var(--wp--preset--color--yellow);
}
.is-style-heading-icon-lightbulb::before {
  -webkit-mask-image: url("../../assets/img/icon-lightbulb.svg");
          mask-image: url("../../assets/img/icon-lightbulb.svg");
}

.is-style-heading-icon-check::before {
  -webkit-mask-image: url("../../assets/img/icon-check.svg");
          mask-image: url("../../assets/img/icon-check.svg");
}

.is-style-heading-icon-exclamation::before {
  -webkit-mask-image: url("../../assets/img/icon-exclamation.svg");
          mask-image: url("../../assets/img/icon-exclamation.svg");
}

.is-style-heading-icon-circle::before {
  -webkit-mask-image: url("../../assets/img/icon-circle.svg");
          mask-image: url("../../assets/img/icon-circle.svg");
}

.is-style-heading-icon-cross::before {
  -webkit-mask-image: url("../../assets/img/icon-cross.svg");
          mask-image: url("../../assets/img/icon-cross.svg");
}

.is-style-heading-icon-double-arrow::before {
  -webkit-mask-image: url("../../assets/img/icon-double-arrow.svg");
          mask-image: url("../../assets/img/icon-double-arrow.svg");
}

.is-style-heading-icon-question::before {
  -webkit-mask-image: url("../../assets/img/icon-question.svg");
          mask-image: url("../../assets/img/icon-question.svg");
}

.is-style-heading-icon-smile::before {
  -webkit-mask-image: url("../../assets/img/icon-smile.svg");
          mask-image: url("../../assets/img/icon-smile.svg");
}

.is-style-heading-icon-unhappy::before {
  -webkit-mask-image: url("../../assets/img/icon-unhappy.svg");
          mask-image: url("../../assets/img/icon-unhappy.svg");
}

.is-style-heading-icon-speech-bubble::before {
  -webkit-mask-image: url("../../assets/img/icon-speech-bubble.svg");
          mask-image: url("../../assets/img/icon-speech-bubble.svg");
}

.is-style-heading-icon-pencil::before {
  -webkit-mask-image: url("../../assets/img/icon-pencil.svg");
          mask-image: url("../../assets/img/icon-pencil.svg");
}

.is-style-heading-icon-thumb-up::before {
  -webkit-mask-image: url("../../assets/img/icon-thumb-up.svg");
          mask-image: url("../../assets/img/icon-thumb-up.svg");
}

.is-style-heading-icon-thumb-down::before {
  -webkit-mask-image: url("../../assets/img/icon-thumb-down.svg");
          mask-image: url("../../assets/img/icon-thumb-down.svg");
}

.wp-block-list {
  padding-left: 1.3em;
}
.wp-block-list li {
  position: relative;
}
.wp-block-list li + li {
  margin-top: 0.5em;
}

[class*=is-style-list-] {
  list-style: none;
}

.is-style-list-asterisk li {
  position: relative;
}
.is-style-list-asterisk li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  margin-left: -1.5em;
  content: "※";
}

.is-style-list-dot.has-background,
[class*=is-style-list-icon-].has-background {
  padding: 0;
  background-color: transparent !important;
}
.is-style-list-dot li,
[class*=is-style-list-icon-] li {
  position: relative;
}
.is-style-list-dot li::before,
[class*=is-style-list-icon-] li::before {
  position: absolute;
  content: "";
}

.is-style-list-dot {
  --wp-preset-color: var(--wp--preset--color--primary);
  padding-left: 1.3em !important;
}
.is-style-list-dot.has-primary-background-color {
  --wp-preset-color: var(--wp--preset--color--primary);
}
.is-style-list-dot.has-primary-light-background-color {
  --wp-preset-color: var(--wp--preset--color--primary-light);
}
.is-style-list-dot.has-primary-bg-background-color {
  --wp-preset-color: var(--wp--preset--color--primary-bg);
}
.is-style-list-dot.has-secondary-background-color {
  --wp-preset-color: var(--wp--preset--color--secondary);
}
.is-style-list-dot.has-secondary-bg-background-color {
  --wp-preset-color: var(--wp--preset--color--secondary-bg);
}
.is-style-list-dot.has-black-background-color {
  --wp-preset-color: var(--wp--preset--color--black);
}
.is-style-list-dot.has-gray-background-color {
  --wp-preset-color: var(--wp--preset--color--gray);
}
.is-style-list-dot.has-gray-light-background-color {
  --wp-preset-color: var(--wp--preset--color--gray-light);
}
.is-style-list-dot.has-gray-bg-background-color {
  --wp-preset-color: var(--wp--preset--color--gray-bg);
}
.is-style-list-dot.has-red-background-color {
  --wp-preset-color: var(--wp--preset--color--red);
}
.is-style-list-dot.has-red-bg-background-color {
  --wp-preset-color: var(--wp--preset--color--red-bg);
}
.is-style-list-dot.has-orange-background-color {
  --wp-preset-color: var(--wp--preset--color--orange);
}
.is-style-list-dot.has-orange-light-background-color {
  --wp-preset-color: var(--wp--preset--color--orange-light);
}
.is-style-list-dot.has-yellow-background-color {
  --wp-preset-color: var(--wp--preset--color--yellow);
}
.is-style-list-dot.has-yellow-bg-background-color {
  --wp-preset-color: var(--wp--preset--color--yellow-bg);
}
.is-style-list-dot.has-white-background-color {
  --wp-preset-color: var(--wp--preset--color--white);
}
.is-style-list-dot.has-green-background-color {
  --wp-preset-color: var(--wp--preset--color--green);
}
.is-style-list-dot li::before {
  top: 0.5em;
  left: -1.3em;
  width: 0.4em;
  aspect-ratio: 1;
  background-color: var(--wp-preset-color);
  border-radius: 50%;
}

[class*=is-style-list-icon-] {
  --wp-preset-color: var(--wp--preset--color--primary);
  padding-left: 0;
  list-style: none;
}
[class*=is-style-list-icon-].has-primary-background-color {
  --wp-preset-color: var(--wp--preset--color--primary);
}
[class*=is-style-list-icon-].has-primary-light-background-color {
  --wp-preset-color: var(--wp--preset--color--primary-light);
}
[class*=is-style-list-icon-].has-primary-bg-background-color {
  --wp-preset-color: var(--wp--preset--color--primary-bg);
}
[class*=is-style-list-icon-].has-secondary-background-color {
  --wp-preset-color: var(--wp--preset--color--secondary);
}
[class*=is-style-list-icon-].has-secondary-bg-background-color {
  --wp-preset-color: var(--wp--preset--color--secondary-bg);
}
[class*=is-style-list-icon-].has-black-background-color {
  --wp-preset-color: var(--wp--preset--color--black);
}
[class*=is-style-list-icon-].has-gray-background-color {
  --wp-preset-color: var(--wp--preset--color--gray);
}
[class*=is-style-list-icon-].has-gray-light-background-color {
  --wp-preset-color: var(--wp--preset--color--gray-light);
}
[class*=is-style-list-icon-].has-gray-bg-background-color {
  --wp-preset-color: var(--wp--preset--color--gray-bg);
}
[class*=is-style-list-icon-].has-red-background-color {
  --wp-preset-color: var(--wp--preset--color--red);
}
[class*=is-style-list-icon-].has-red-bg-background-color {
  --wp-preset-color: var(--wp--preset--color--red-bg);
}
[class*=is-style-list-icon-].has-orange-background-color {
  --wp-preset-color: var(--wp--preset--color--orange);
}
[class*=is-style-list-icon-].has-orange-light-background-color {
  --wp-preset-color: var(--wp--preset--color--orange-light);
}
[class*=is-style-list-icon-].has-yellow-background-color {
  --wp-preset-color: var(--wp--preset--color--yellow);
}
[class*=is-style-list-icon-].has-yellow-bg-background-color {
  --wp-preset-color: var(--wp--preset--color--yellow-bg);
}
[class*=is-style-list-icon-].has-white-background-color {
  --wp-preset-color: var(--wp--preset--color--white);
}
[class*=is-style-list-icon-].has-green-background-color {
  --wp-preset-color: var(--wp--preset--color--green);
}
[class*=is-style-list-icon-] li {
  padding-left: 1.6em;
}
[class*=is-style-list-icon-] li::before {
  top: 50%;
  left: 0;
  width: 1.2em;
  aspect-ratio: 14/20;
  background-color: var(--wp-preset-color);
  transform: translateY(-50%);
}

.is-style-list-icon-check li::before {
  -webkit-mask: url("../../assets/img/icon-check.svg") no-repeat center/contain;
          mask: url("../../assets/img/icon-check.svg") no-repeat center/contain;
}

.is-style-list-icon-arrow li::before {
  -webkit-mask: url("../../assets/img/icon-arrow.svg") no-repeat center/contain;
          mask: url("../../assets/img/icon-arrow.svg") no-repeat center/contain;
}

.is-style-list-icon-lightbulb {
  --wp-preset-color: var(--wp--preset--color--yellow);
}
.is-style-list-icon-lightbulb li::before {
  -webkit-mask: url("../../assets/img/icon-lightbulb.svg") no-repeat center/contain;
          mask: url("../../assets/img/icon-lightbulb.svg") no-repeat center/contain;
}

.is-style-list-icon-exclamation li::before {
  -webkit-mask: url("../../assets/img/icon-exclamation.svg") no-repeat center/contain;
          mask: url("../../assets/img/icon-exclamation.svg") no-repeat center/contain;
}

.is-style-list-icon-circle li::before {
  -webkit-mask: url("../../assets/img/icon-circle.svg") no-repeat center/contain;
          mask: url("../../assets/img/icon-circle.svg") no-repeat center/contain;
}

.is-style-list-icon-cross li::before {
  -webkit-mask: url("../../assets/img/icon-cross.svg") no-repeat center/contain;
          mask: url("../../assets/img/icon-cross.svg") no-repeat center/contain;
}

.is-style-list-icon-double-arrow li::before {
  -webkit-mask: url("../../assets/img/icon-double-arrow.svg") no-repeat center/contain;
          mask: url("../../assets/img/icon-double-arrow.svg") no-repeat center/contain;
}

.is-style-list-icon-question li::before {
  -webkit-mask: url("../../assets/img/icon-question.svg") no-repeat center/contain;
          mask: url("../../assets/img/icon-question.svg") no-repeat center/contain;
}

.is-style-list-icon-smile li::before {
  -webkit-mask: url("../../assets/img/icon-smile.svg") no-repeat center/contain;
          mask: url("../../assets/img/icon-smile.svg") no-repeat center/contain;
}

.is-style-list-icon-unhappy li::before {
  -webkit-mask: url("../../assets/img/icon-unhappy.svg") no-repeat center/contain;
          mask: url("../../assets/img/icon-unhappy.svg") no-repeat center/contain;
}

.is-style-list-icon-speech-bubble li::before {
  -webkit-mask: url("../../assets/img/icon-speech-bubble.svg") no-repeat center/contain;
          mask: url("../../assets/img/icon-speech-bubble.svg") no-repeat center/contain;
}

.is-style-list-icon-pencil li::before {
  -webkit-mask: url("../../assets/img/icon-pencil.svg") no-repeat center/contain;
          mask: url("../../assets/img/icon-pencil.svg") no-repeat center/contain;
}

.is-style-list-icon-thumb-up li::before {
  -webkit-mask: url("../../assets/img/icon-thumb-up.svg") no-repeat center/contain;
          mask: url("../../assets/img/icon-thumb-up.svg") no-repeat center/contain;
}

.is-style-list-icon-thumb-down li::before {
  -webkit-mask: url("../../assets/img/icon-thumb-down.svg") no-repeat center/contain;
          mask: url("../../assets/img/icon-thumb-down.svg") no-repeat center/contain;
}

.wp-block-table table {
  border-spacing: 0;
}
.wp-block-table table th {
  font-weight: var(--wp--custom--font-weight--bold);
}
.wp-block-table table th,
.wp-block-table table td {
  padding: 15px 20px;
  border: 1px solid var(--wp--preset--color--gray);
}
.wp-block-table figcaption {
  text-align: left;
}
@media (max-width: 999px) {
  .wp-block-table[class*=scroll] {
    overflow-x: auto;
  }
  .wp-block-table[class*=scroll]::-webkit-scrollbar {
    height: 12px;
  }
  .wp-block-table[class*=scroll]::-webkit-scrollbar-track {
    background: var(--wp--preset--color--gray-light);
  }
  .wp-block-table[class*=scroll]::-webkit-scrollbar-thumb {
    background: var(--wp--preset--color--gray);
    border-radius: 10px;
  }
  .wp-block-table[class*=scroll] table {
    width: max(var(--wp--custom--width--content-size), 100%);
  }
}
.wp-block-table.is-style-table-left-highlight table.has-background, .wp-block-table.is-style-table-left-highlight-scroll table.has-background, .wp-block-table.is-style-table-top-highlight table.has-background, .wp-block-table.is-style-table-top-highlight-scroll table.has-background {
  background-color: transparent !important;
}
.wp-block-table.is-style-table-left-highlight table, .wp-block-table.is-style-table-left-highlight-scroll table, .wp-block-table.is-style-table-top-highlight table, .wp-block-table.is-style-table-top-highlight-scroll table {
  --wp-preset-color: var(--wp--preset--color--primary-bg);
}
.wp-block-table.is-style-table-left-highlight table.has-primary-background-color, .wp-block-table.is-style-table-left-highlight-scroll table.has-primary-background-color, .wp-block-table.is-style-table-top-highlight table.has-primary-background-color, .wp-block-table.is-style-table-top-highlight-scroll table.has-primary-background-color {
  --wp-preset-color: var(--wp--preset--color--primary);
}
.wp-block-table.is-style-table-left-highlight table.has-primary-light-background-color, .wp-block-table.is-style-table-left-highlight-scroll table.has-primary-light-background-color, .wp-block-table.is-style-table-top-highlight table.has-primary-light-background-color, .wp-block-table.is-style-table-top-highlight-scroll table.has-primary-light-background-color {
  --wp-preset-color: var(--wp--preset--color--primary-light);
}
.wp-block-table.is-style-table-left-highlight table.has-primary-bg-background-color, .wp-block-table.is-style-table-left-highlight-scroll table.has-primary-bg-background-color, .wp-block-table.is-style-table-top-highlight table.has-primary-bg-background-color, .wp-block-table.is-style-table-top-highlight-scroll table.has-primary-bg-background-color {
  --wp-preset-color: var(--wp--preset--color--primary-bg);
}
.wp-block-table.is-style-table-left-highlight table.has-secondary-background-color, .wp-block-table.is-style-table-left-highlight-scroll table.has-secondary-background-color, .wp-block-table.is-style-table-top-highlight table.has-secondary-background-color, .wp-block-table.is-style-table-top-highlight-scroll table.has-secondary-background-color {
  --wp-preset-color: var(--wp--preset--color--secondary);
}
.wp-block-table.is-style-table-left-highlight table.has-secondary-bg-background-color, .wp-block-table.is-style-table-left-highlight-scroll table.has-secondary-bg-background-color, .wp-block-table.is-style-table-top-highlight table.has-secondary-bg-background-color, .wp-block-table.is-style-table-top-highlight-scroll table.has-secondary-bg-background-color {
  --wp-preset-color: var(--wp--preset--color--secondary-bg);
}
.wp-block-table.is-style-table-left-highlight table.has-black-background-color, .wp-block-table.is-style-table-left-highlight-scroll table.has-black-background-color, .wp-block-table.is-style-table-top-highlight table.has-black-background-color, .wp-block-table.is-style-table-top-highlight-scroll table.has-black-background-color {
  --wp-preset-color: var(--wp--preset--color--black);
}
.wp-block-table.is-style-table-left-highlight table.has-gray-background-color, .wp-block-table.is-style-table-left-highlight-scroll table.has-gray-background-color, .wp-block-table.is-style-table-top-highlight table.has-gray-background-color, .wp-block-table.is-style-table-top-highlight-scroll table.has-gray-background-color {
  --wp-preset-color: var(--wp--preset--color--gray);
}
.wp-block-table.is-style-table-left-highlight table.has-gray-light-background-color, .wp-block-table.is-style-table-left-highlight-scroll table.has-gray-light-background-color, .wp-block-table.is-style-table-top-highlight table.has-gray-light-background-color, .wp-block-table.is-style-table-top-highlight-scroll table.has-gray-light-background-color {
  --wp-preset-color: var(--wp--preset--color--gray-light);
}
.wp-block-table.is-style-table-left-highlight table.has-gray-bg-background-color, .wp-block-table.is-style-table-left-highlight-scroll table.has-gray-bg-background-color, .wp-block-table.is-style-table-top-highlight table.has-gray-bg-background-color, .wp-block-table.is-style-table-top-highlight-scroll table.has-gray-bg-background-color {
  --wp-preset-color: var(--wp--preset--color--gray-bg);
}
.wp-block-table.is-style-table-left-highlight table.has-red-background-color, .wp-block-table.is-style-table-left-highlight-scroll table.has-red-background-color, .wp-block-table.is-style-table-top-highlight table.has-red-background-color, .wp-block-table.is-style-table-top-highlight-scroll table.has-red-background-color {
  --wp-preset-color: var(--wp--preset--color--red);
}
.wp-block-table.is-style-table-left-highlight table.has-red-bg-background-color, .wp-block-table.is-style-table-left-highlight-scroll table.has-red-bg-background-color, .wp-block-table.is-style-table-top-highlight table.has-red-bg-background-color, .wp-block-table.is-style-table-top-highlight-scroll table.has-red-bg-background-color {
  --wp-preset-color: var(--wp--preset--color--red-bg);
}
.wp-block-table.is-style-table-left-highlight table.has-orange-background-color, .wp-block-table.is-style-table-left-highlight-scroll table.has-orange-background-color, .wp-block-table.is-style-table-top-highlight table.has-orange-background-color, .wp-block-table.is-style-table-top-highlight-scroll table.has-orange-background-color {
  --wp-preset-color: var(--wp--preset--color--orange);
}
.wp-block-table.is-style-table-left-highlight table.has-orange-light-background-color, .wp-block-table.is-style-table-left-highlight-scroll table.has-orange-light-background-color, .wp-block-table.is-style-table-top-highlight table.has-orange-light-background-color, .wp-block-table.is-style-table-top-highlight-scroll table.has-orange-light-background-color {
  --wp-preset-color: var(--wp--preset--color--orange-light);
}
.wp-block-table.is-style-table-left-highlight table.has-yellow-background-color, .wp-block-table.is-style-table-left-highlight-scroll table.has-yellow-background-color, .wp-block-table.is-style-table-top-highlight table.has-yellow-background-color, .wp-block-table.is-style-table-top-highlight-scroll table.has-yellow-background-color {
  --wp-preset-color: var(--wp--preset--color--yellow);
}
.wp-block-table.is-style-table-left-highlight table.has-yellow-bg-background-color, .wp-block-table.is-style-table-left-highlight-scroll table.has-yellow-bg-background-color, .wp-block-table.is-style-table-top-highlight table.has-yellow-bg-background-color, .wp-block-table.is-style-table-top-highlight-scroll table.has-yellow-bg-background-color {
  --wp-preset-color: var(--wp--preset--color--yellow-bg);
}
.wp-block-table.is-style-table-left-highlight table.has-white-background-color, .wp-block-table.is-style-table-left-highlight-scroll table.has-white-background-color, .wp-block-table.is-style-table-top-highlight table.has-white-background-color, .wp-block-table.is-style-table-top-highlight-scroll table.has-white-background-color {
  --wp-preset-color: var(--wp--preset--color--white);
}
.wp-block-table.is-style-table-left-highlight table.has-green-background-color, .wp-block-table.is-style-table-left-highlight-scroll table.has-green-background-color, .wp-block-table.is-style-table-top-highlight table.has-green-background-color, .wp-block-table.is-style-table-top-highlight-scroll table.has-green-background-color {
  --wp-preset-color: var(--wp--preset--color--green);
}
.wp-block-table.is-style-table-left-highlight table th:first-child,
.wp-block-table.is-style-table-left-highlight table td:first-child, .wp-block-table.is-style-table-left-highlight-scroll table th:first-child,
.wp-block-table.is-style-table-left-highlight-scroll table td:first-child {
  font-weight: var(--wp--custom--font-weight--bold);
  background-color: var(--wp-preset-color);
}
.wp-block-table.is-style-table-top-highlight table th,
.wp-block-table.is-style-table-top-highlight table tr:first-child td, .wp-block-table.is-style-table-top-highlight-scroll table th,
.wp-block-table.is-style-table-top-highlight-scroll table tr:first-child td {
  font-weight: var(--wp--custom--font-weight--bold);
  background-color: var(--wp-preset-color);
}

@media (min-width: 782px) {
  .wp-block-columns.is-style-columns-reverse {
    flex-direction: row-reverse;
  }
}
.my-block-faq {
  padding: 5px 0 5px 20px;
  border-left: 1px solid var(--wp--preset--color--gray);
}
.my-block-faq__q, .my-block-faq__a {
  position: relative;
  padding-left: 2em;
}
.my-block-faq__q::before, .my-block-faq__a::before {
  position: absolute;
  top: calc(var(--wp--style--block-gap) / 2 * -1);
  left: 0;
  font-size: var(--wp--preset--font-size--xxx-large);
  font-weight: var(--wp--custom--font-weight--bold);
}
.my-block-faq__q {
  font-weight: var(--wp--custom--font-weight--bold);
}
.my-block-faq__q::before {
  color: var(--wp--preset--color--my-accent);
  content: "Q.";
}
.my-block-faq__a::before {
  color: var(--wp--preset--color--my-sub);
  content: "A.";
}