@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap");
:root {
  --c-bg: #ffffff;
  --c-text: $c_black;
  --c-primary: #EC6633;
  --c-secondary: #59BD4D;
  --bg-btn-primary: var(--c-primary);
  --bg-btn-secondary: var(--c-secondary);
  --c-text-btn-primary: #ffffff;
  --c-text-btn-secondary: #ffffff;
  --Gray-Grey-300: #B3B3B3;
  --Gray-Grey-50: #F2F2F2;
  --font-size-base: 1rem;
  --font-weight-base: 400;
  --spacing: 16px;
  --radius: 8px;
}

.media-check {
  display: none;
}
@media (min-width: 1200px) {
  .media-check:before {
    content: "xl";
  }
}
@media (min-width: 1100px) and (max-width: 1199.98px) {
  .media-check:before {
    content: "lg";
  }
}
@media (min-width: 768px) and (max-width: 1099.98px) {
  .media-check:before {
    content: "md";
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .media-check:before {
    content: "sm";
  }
}
@media (max-width: 575.98px) {
  .media-check:before {
    content: "xs";
  }
}

@keyframes btn_arrow {
  0% {
    transform: translate(0, -50%);
  }
  100% {
    transform: translate(-5px, -50%);
  }
}
@keyframes btn_arrow_entry {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-5px);
  }
}
@media (max-width: 1099.98px) {
  .pc-only {
    display: none !important;
  }
}

@media (min-width: 576px) {
  .sp-only {
    display: none !important;
  }
}

@media (min-width: 1100px) {
  .tab-only {
    display: none !important;
  }
}
@media (max-width: 575.98px) {
  .tab-only {
    display: none !important;
  }
}

@media (max-width: 575.98px) {
  .tab-pc-only {
    display: none !important;
  }
}

@media (min-width: 1100px) {
  .sp-tab-only {
    display: none !important;
  }
}

@media (max-width: 1199.98px) {
  .xl-only {
    display: none;
  }
}

@media (min-width: 1200px) {
  .lg-only {
    display: none;
  }
}
@media (max-width: 1099.98px) {
  .lg-only {
    display: none;
  }
}

@media (min-width: 1100px) {
  .md-only {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .md-only {
    display: none;
  }
}

@media (min-width: 768px) {
  .sm-only {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .sm-only {
    display: none;
  }
}

@media (min-width: 576px) {
  .xs-only {
    display: none;
  }
}

.js-s.js-s-f {
  transition: opacity 1s, transform 1s;
}

.js-s.js-s-f--l {
  transition: opacity 1s, transform 1s;
}

.js-s.js-s-f--d {
  transition: all 1s 0.4s;
}

.js-s.js-s-f--dd {
  transition: all 1s 0.8s;
}

.js-s.js-s-f,
.js-s.js-s-f--l,
.js-s.js-s-f--d,
.js-s.js-s-f--dd {
  /* opacity: 0; */
}
.js-s.js-s-f.is-active,
.js-s.js-s-f--l.is-active,
.js-s.js-s-f--d.is-active,
.js-s.js-s-f--dd.is-active {
  opacity: 1;
}

.js-s.js-s-left {
  transform: translateX(-10px);
}
.js-s.js-s-left.is-active {
  transform: translateX(0px);
}

.js-s.js-s-right {
  transform: translateX(10px);
}
.js-s.js-s-right.is-active {
  transform: translateX(0px);
}

.js-s.js-s-bottom {
  /* transform: translateY(20px); */
}
.js-s.js-s-bottom.is-active {
  transform: translateY(0px);
}

.is-d1 {
  transition-delay: 0.4s !important;
}

.is-d2 {
  transition-delay: 0.8s !important;
}

.is-d3 {
  transition-delay: 1.2s !important;
}

.js-s-f-b {
  transition: opacity 1s, transform 1s;
  /* transform: translateY(20px); */
  /* opacity: 0; */
}
.js-s-f-b.is-active {
  opacity: 1;
  transform: translateY(0px);
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

body {
  width: 100%;
  word-break: break-word;
  background-color: var(--c-bg);
}

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

img.icon {
  max-width: 100px;
}

body.is-fixed {
  overflow: hidden;
}
@media (min-width: 1100px) {
  body.is-fixed {
    width: calc(100vw - var(--scrollbar-width));
  }
}

p:empty::before {
  content: none !important;
}

.my-slick {
  /* opacity: 0; */
  transition: opacity 0.3s linear;
}

.my-slick.slick-initialized {
  opacity: 1;
  height: auto;
}

.grecaptcha-badge {
  left: 6px !important;
  width: 70px !important;
  right: auto !important;
  transition: left 0.3s, width 0.3s !important;
  z-index: 1000;
}
.grecaptcha-badge:hover {
  left: 6px !important;
  width: 256px !important;
}

.recaptcha-desc {
  padding-top: 32px;
  font-size: 0.7em;
  line-height: 1.5;
  opacity: 0.5;
}
.recaptcha-desc a {
  text-decoration: underline;
  margin: 0 2px;
}
.recaptcha-desc .-name {
  font-weight: bold;
  margin: 0 2px;
}

html {
  font-size: 100%;
}

body {
  font-size: 1rem;
}

body,
body input,
body textarea {
  font-size: var(--font-size-base);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: var(--font-weight-base);
  color: var(--c-text);
  -webkit-text-size-adjust: 100%;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.f--en {
  font-family: var(--font-en);
  font-optical-sizing: auto;
  font-style: normal;
}

code, .code {
  font-family: var(--font-mono);
}

a {
  text-shadow: none;
  outline: none;
  text-decoration: none;
  color: var(--c-text);
}
a:link, a:visited, a:hover, a:active {
  color: var(--c-text);
}
a:hover {
  color: var(--c-text);
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
  font-size: 4.2666666667vw;
}

@media (min-width: 1100px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
[data-ruby] {
  position: relative;
}

[data-ruby]::before {
  content: attr(data-ruby);
  position: absolute;
  top: -1.2em;
  left: 0;
  right: 0;
  margin: 0 auto;
  font-size: 0.5em;
  display: inline-block;
  text-align: center;
}

.bg-01 {
  background-color: #EAF6FF;
}

.common-panel {
  background-color: #ffffff;
}
@media (min-width: 1100px) {
  .common-panel {
    padding: 6.5rem;
    border-radius: 2.5rem;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .common-panel {
    padding: 4rem 2rem;
    border-radius: 1.875rem;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 575.98px) {
  .common-panel {
    padding: 4rem 2rem;
    border-radius: 1.875rem;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  }
}

.section-title .lang-en, .section-title .lang-jp {
  display: block;
}
@media (min-width: 1100px) {
  .section-title .lang-en {
    font-family: var(--font-en);
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 6.875rem;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .section-title .lang-en {
    font-family: var(--font-en);
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 3.75rem;
    font-weight: 500;
    line-height: 110%;
  }
}
@media (max-width: 575.98px) {
  .section-title .lang-en {
    font-family: var(--font-en);
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 3.75rem;
    font-weight: 500;
    line-height: 110%;
  }
}
@media (min-width: 1100px) {
  .section-title .lang-jp {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.05rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .section-title .lang-jp {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 165%;
    letter-spacing: 0.045rem;
  }
}
@media (max-width: 575.98px) {
  .section-title .lang-jp {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 165%;
    letter-spacing: 0.045rem;
  }
}
@media (min-width: 1100px) {
  .section-title .lang-jp {
    margin-top: 1rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .section-title .lang-jp {
    margin-top: 1rem;
  }
}
@media (max-width: 575.98px) {
  .section-title .lang-jp {
    margin-top: 1rem;
  }
}
.section-title .lang-jp {
  position: relative;
  padding-left: 2rem;
}
.section-title .lang-jp::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  display: block;
  width: 1.25rem;
  height: 2px;
  background-color: #238AF1;
}

@media (min-width: 1100px) {
  .common-lead {
    font-size: 2.125rem;
    font-weight: 700;
    line-height: 210%;
    letter-spacing: 0.085rem;
  }
}
@media (max-width: 1099.98px) {
  .common-lead {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 180%;
    letter-spacing: 0.05rem;
  }
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body .site-main {
  position: relative;
  flex: 1 0 auto;
}

body {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.mw-01 {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: calc(1300px + 1.25rem * 2)) {
  .mw-01 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: calc(1300px + 1.25rem * 2)) and (min-width: 1100px) {
  .mw-01 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: calc(1300px + 1.25rem * 2)) and (min-width: 576px) and (max-width: 1099.98px) {
  .mw-01 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: calc(1300px + 1.25rem * 2)) and (max-width: 575.98px) {
  .mw-01 {
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
  }
}

.mw-01-2 {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: calc(1300px + 1.25rem * 2)) {
  .mw-01-2 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: calc(1300px + 1.25rem * 2)) and (min-width: 1100px) {
  .mw-01-2 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: calc(1300px + 1.25rem * 2)) and (min-width: 576px) and (max-width: 1099.98px) {
  .mw-01-2 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: calc(1300px + 1.25rem * 2)) and (max-width: 575.98px) {
  .mw-01-2 {
    padding-left: 4.2666666667vw;
    padding-right: 4.2666666667vw;
  }
}

.mw-02 {
  max-width: 1392px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: calc(1392px + 1.25rem * 2)) {
  .mw-02 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: calc(1392px + 1.25rem * 2)) and (min-width: 1100px) {
  .mw-02 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: calc(1392px + 1.25rem * 2)) and (min-width: 576px) and (max-width: 1099.98px) {
  .mw-02 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: calc(1392px + 1.25rem * 2)) and (max-width: 575.98px) {
  .mw-02 {
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
  }
}

.mw-03 {
  max-width: 1182px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: calc(1182px + 1.25rem * 2)) {
  .mw-03 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: calc(1182px + 1.25rem * 2)) and (min-width: 1100px) {
  .mw-03 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: calc(1182px + 1.25rem * 2)) and (min-width: 576px) and (max-width: 1099.98px) {
  .mw-03 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: calc(1182px + 1.25rem * 2)) and (max-width: 575.98px) {
  .mw-03 {
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
  }
}

@media (min-width: 1100px) {
  .ph {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .ph {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 575.98px) {
  .ph {
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
  }
}

@media (min-width: 1100px) {
  .ph-pc {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

@media (min-width: 576px) and (max-width: 1099.98px) {
  .ph-tab {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 575.98px) {
  .ph-sp {
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
  }
}

@media (min-width: 1100px) {
  .ph-0 {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .ph-0 {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 575.98px) {
  .ph-0 {
    padding-left: 0;
    padding-right: 0;
  }
}

.site-header {
  display: flex;
  align-items: center;
}
@media (min-width: 1100px) {
  .site-header {
    height: 5rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .site-header {
    height: 5rem;
  }
}
@media (max-width: 575.98px) {
  .site-header {
    height: 3.75rem;
  }
}

.site-header {
  background-color: #ffffff;
}

@media (min-width: 1100px) {
  .site-header {
    padding-left: 1.5rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .site-header {
    padding-left: 16px;
  }
}
@media (max-width: 575.98px) {
  .site-header {
    padding-left: 5.3333333333vw;
  }
}
@media (min-width: 1100px) {
  .site-header {
    padding-right: 1.5rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .site-header {
    padding-right: 16px;
  }
}
@media (max-width: 575.98px) {
  .site-header {
    padding-right: 5.3333333333vw;
  }
}

.site-header__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  gap: 1rem;
}

.site-header__logo {
  flex: 1 1 auto;
  min-width: 0;
}
.site-header__actions {
  min-width: 0;
}
.site-header__logo img {
  max-width: 100%;
  height: auto;
}
.site-header__link a,
.site-header__contact-link {
  flex-shrink: 1;
  min-width: 0;
}
.site-header__link a {
  color: #48ADFF;
  text-decoration: underline;
}
.site-header__link {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
}
.site-header__nav {
  display: flex;
  align-items: center;
}
.site-header__actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

@media (min-width: 1100px) {
  .site-header__nav {
    height: 5rem;
  }
  .site-header__global-nav {
    margin-right: 8px;
  }
  .site-header__nav__lang {
    margin-right: 32px;
  }
}
@media (max-width: 1300px) {
  .site-header__link {
    display: none;
  }
}
@media (max-width: 1099.98px) {
  .site-header__global-nav {
    display: none;
  }
}

@media (min-width: 1100px) {
  .site-header__logo img {
    max-width: 370px;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .site-header__logo img {
    max-width: 200px;
  }
}
@media (max-width: 575.98px) {
  .site-header__logo img {
    max-width: 29.3333333333vw;
  }
}
.site-header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transform: translateY(-100%);
  transition: opacity 0.2s ease, transform 0.2s ease;
  /* opacity: 0; */
}
.site-header-fixed.is-show {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1100px) {
  body.header-fixed {
    padding-top: 5rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  body.header-fixed {
    padding-top: 5rem;
  }
}
@media (max-width: 575.98px) {
  body.header-fixed {
    padding-top: 3.75rem;
  }
}

.site-header__global-nav .menu {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-header__contact {
  display: flex;
  align-items: center;
}
@media (min-width: 576px) {
  .site-header__contact {
    margin-left: 1rem;
  }
}
@media (max-width: 575.98px) {
  .site-header__contact {
    margin-left: 0rem;
  }
}

.site-header__global-nav .menu {
  height: 100%;
}
.site-header__global-nav .menu-item {
  height: 100%;
  display: flex;
  align-items: center;
}

.site-header__global-nav a {
  display: inline-block;
  width: 5rem;
  color: var(--black, #333);
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: normal;
  transition: opacity 0.3s ease;
}
.site-header__global-nav a:hover {
  opacity: 0.5;
}
@media (max-width: 575.98px) {
  .site-header__global-nav a.js_hover {
    opacity: 0.5;
  }
}

@media (min-width: 1100px) {
  .site-header__contact-link {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1000px;
    font-weight: 700;
    line-height: 170%;
    background-color: var(--bg-btn-primary, #EC6633);
    color: var(--c-text-btn-primary, #fff);
    color: var(--c-text-btn-primary, #fff);
    position: relative;
    overflow: hidden;
    z-index: 0;
    font-size: 0.875rem;
    font-weight: 500;
    width: 10rem;
    height: 2.8125rem;
  }
  .site-header__contact-link:link, .site-header__contact-link:visited, .site-header__contact-link:hover, .site-header__contact-link:active {
    color: var(--c-text-btn-primary, #fff);
  }
  .site-header__contact-link:hover {
    color: var(--c-text-btn-primary, #fff);
  }
  .site-header__contact-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -110%;
    width: 108%;
    height: 100%;
    background: #ff7733;
    transform: skewX(-20deg);
    z-index: -1;
    transition: all 0.3s ease;
  }
  .site-header__contact-link:hover::before {
    left: -1%;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .site-header__contact-link {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1000px;
    font-weight: 700;
    line-height: 170%;
    background-color: var(--bg-btn-primary, #EC6633);
    color: var(--c-text-btn-primary, #fff);
    color: var(--c-text-btn-primary, #fff);
    position: relative;
    overflow: hidden;
    z-index: 0;
    font-size: 0.875rem;
    font-weight: 500;
    width: 10rem;
    height: 2.8125rem;
  }
  .site-header__contact-link:link, .site-header__contact-link:visited, .site-header__contact-link:hover, .site-header__contact-link:active {
    color: var(--c-text-btn-primary, #fff);
  }
  .site-header__contact-link:hover {
    color: var(--c-text-btn-primary, #fff);
  }
  .site-header__contact-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -110%;
    width: 108%;
    height: 100%;
    background: #ff7733;
    transform: skewX(-20deg);
    z-index: -1;
    transition: all 0.3s ease;
  }
  .site-header__contact-link:hover::before {
    left: -1%;
  }
}
@media (max-width: 575.98px) {
  .site-header__contact-link {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1000px;
    font-weight: 700;
    line-height: 170%;
    background-color: var(--bg-btn-primary, #EC6633);
    color: var(--c-text-btn-primary, #fff);
    color: var(--c-text-btn-primary, #fff);
    position: relative;
    overflow: hidden;
    z-index: 0;
    font-size: 0.875rem;
    font-weight: 500;
    width: 8.5rem;
    height: 2.5rem;
  }
  .site-header__contact-link:link, .site-header__contact-link:visited, .site-header__contact-link:hover, .site-header__contact-link:active {
    color: var(--c-text-btn-primary, #fff);
  }
  .site-header__contact-link:hover {
    color: var(--c-text-btn-primary, #fff);
  }
  .site-header__contact-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -110%;
    width: 100%;
    height: 100%;
    background: #ff7733;
    transform: skewX(-20deg);
    z-index: -1;
    transition: all 0.3s ease;
  }
  .site-header__contact-link:hover::before {
    left: -1%;
  }
}

.site-footer {
  background-color: #333;
  color: #ffffff;
  font-family: "Noto Sans JP", "メイリオ", sans-serif;
}
.site-footer a {
  color: #ffffff;
}
.site-footer a:link, .site-footer a:visited, .site-footer a:hover, .site-footer a:active {
  color: #ffffff;
}
.site-footer a:hover {
  color: #ffffff;
}
@media (min-width: 576px) {
  .site-footer {
    padding-top: 3rem;
  }
}
@media (max-width: 575.98px) {
  .site-footer {
    padding-top: 2.5rem;
  }
}
@media (min-width: 576px) {
  .site-footer {
    padding-bottom: 1.625rem;
  }
}
@media (max-width: 575.98px) {
  .site-footer {
    padding-bottom: 3rem;
  }
}
.site-footer .site-footer__copyright {
  display: block;
  text-align: center;
  color: #9CA3AF;
}
@media (min-width: 576px) {
  .site-footer .site-footer__copyright {
    margin-top: 2.0625rem;
  }
}
@media (max-width: 575.98px) {
  .site-footer .site-footer__copyright {
    margin-top: 7.5rem;
  }
}
@media (min-width: 1100px) {
  .site-footer .site-footer__copyright {
    font-size: 0.875rem;
  }
}
@media (max-width: 1099.98px) {
  .site-footer .site-footer__copyright {
    font-size: 0.875rem;
  }
}
@media (min-width: 1100px) {
  .site-footer .site-footer__copyright {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    max-width: 70rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 1099.98px) {
  .site-footer .site-footer__copyright {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 1100px) {
  .site-footer .site-footer__inner {
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .site-footer .site-footer__inner {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
}
@media (max-width: 575.98px) {
  .site-footer .site-footer__inner {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
}

.site-footer .site-footer__title {
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 140%;
}
@media (min-width: 1100px) {
  .site-footer .site-footer__title {
    font-size: 1.25rem;
  }
}
@media (max-width: 1099.98px) {
  .site-footer .site-footer__title {
    font-size: 1.25rem;
  }
}
.site-footer .site-footer__desc {
  color: #9CA3AF;
  font-weight: 350;
  line-height: 142.857%;
}
@media (min-width: 1100px) {
  .site-footer .site-footer__desc {
    font-size: 0.875rem;
  }
}
@media (max-width: 1099.98px) {
  .site-footer .site-footer__desc {
    font-size: 0.875rem;
  }
}
.site-footer .site-footer__desc a {
  color: #9CA3AF;
}
.site-footer .site-footer__desc a:link, .site-footer .site-footer__desc a:visited, .site-footer .site-footer__desc a:hover, .site-footer .site-footer__desc a:active {
  color: #9CA3AF;
}
.site-footer .site-footer__desc a:hover {
  color: #9CA3AF;
}
.site-footer .site-footer__desc:not(:last-child) {
  margin-bottom: 0.5rem;
}
.site-footer .site-footer__company .site-footer__desc {
  font-weight: 350;
  line-height: 150%;
}
@media (min-width: 1100px) {
  .site-footer .site-footer__company .site-footer__desc {
    font-size: 1rem;
  }
}
@media (max-width: 1099.98px) {
  .site-footer .site-footer__company .site-footer__desc {
    font-size: 1rem;
  }
}
.site-footer .site-footer__company .site-footer__desc a {
  color: #ffffff;
}
.site-footer .site-footer__company .site-footer__desc a:link, .site-footer .site-footer__company .site-footer__desc a:visited, .site-footer .site-footer__company .site-footer__desc a:hover, .site-footer .site-footer__company .site-footer__desc a:active {
  color: #ffffff;
}
.site-footer .site-footer__company .site-footer__desc a:hover {
  color: #ffffff;
}

@media (min-width: 576px) {
  .banners {
    padding-top: 2.8125rem;
  }
}
@media (max-width: 575.98px) {
  .banners {
    padding-top: 1.5rem;
  }
}
@media (min-width: 576px) {
  .banners {
    padding-bottom: 0.5625rem;
  }
}
@media (max-width: 575.98px) {
  .banners {
    padding-bottom: 1.5rem;
  }
}

.problem {
  max-width: 74.5rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1100px) {
  .problem {
    padding-top: 6.5rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .problem {
    padding-top: 6.5rem;
  }
}
@media (max-width: 575.98px) {
  .problem {
    padding-top: 5rem;
  }
}
@media (min-width: 1100px) {
  .problem {
    padding-bottom: 6.5rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .problem {
    padding-bottom: 6.5rem;
  }
}
@media (max-width: 575.98px) {
  .problem {
    padding-bottom: 5rem;
  }
}
@media screen and (max-width: calc(74.5rem + 1.25rem * 2)) {
  .problem {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: calc(74.5rem + 1.25rem * 2)) and (min-width: 1100px) {
  .problem {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: calc(74.5rem + 1.25rem * 2)) and (min-width: 576px) and (max-width: 1099.98px) {
  .problem {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: calc(74.5rem + 1.25rem * 2)) and (max-width: 575.98px) {
  .problem {
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
  }
}
@media (min-width: 576px) {
  .problem .section-main {
    margin-top: 2.1875rem;
  }
}
@media (max-width: 575.98px) {
  .problem .section-main {
    margin-top: 2.5rem;
  }
}
.problem .problem__item-inner {
  background-color: #fff;
  border-radius: 4px;
}
@media (max-width: 575.98px) {
  .problem {
    background-color: #fafafa;
  }
}

@media (min-width: 1100px) {
  .solution {
    padding-top: 9rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .solution {
    padding-top: 9rem;
  }
}
@media (max-width: 575.98px) {
  .solution {
    padding-top: 4.25rem;
  }
}
@media (min-width: 1100px) {
  .solution {
    padding-bottom: 8.75rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .solution {
    padding-bottom: 8.75rem;
  }
}
@media (max-width: 575.98px) {
  .solution {
    padding-bottom: 5rem;
  }
}
.solution .solution__title,
.solution .solution__subtitle,
.solution .section-main {
  max-width: 61.25rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: calc(61.25rem + 1.25rem * 2)) {
  .solution .solution__title,
  .solution .solution__subtitle,
  .solution .section-main {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: calc(61.25rem + 1.25rem * 2)) and (min-width: 1100px) {
  .solution .solution__title,
  .solution .solution__subtitle,
  .solution .section-main {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: calc(61.25rem + 1.25rem * 2)) and (min-width: 576px) and (max-width: 1099.98px) {
  .solution .solution__title,
  .solution .solution__subtitle,
  .solution .section-main {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: calc(61.25rem + 1.25rem * 2)) and (max-width: 575.98px) {
  .solution .solution__title,
  .solution .solution__subtitle,
  .solution .section-main {
    padding-left: 2.6666666667vw;
    padding-right: 2.6666666667vw;
  }
}
.solution .solution__title {
  color: #fff;
}
.solution .solution__subtitle {
  text-align: center;
}
@media (min-width: 576px) {
  .solution .section-main {
    margin-top: 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .solution .section-main {
    margin-top: 1rem;
  }
}
@media (max-width: 575.98px) {
  .solution .section-main {
    padding-left: 2.375rem;
    padding-right: 2.375rem;
  }
}
.solution .solution__item-inner {
  background-color: #fff;
  border-radius: 10px;
}

.needs {
  background: #FAFAFA;
}
@media (min-width: 1100px) {
  .needs {
    padding-top: 5rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .needs {
    padding-top: 5rem;
  }
}
@media (max-width: 575.98px) {
  .needs {
    padding-top: 5rem;
  }
}
@media (min-width: 1100px) {
  .needs {
    padding-bottom: 5rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .needs {
    padding-bottom: 5rem;
  }
}
@media (max-width: 575.98px) {
  .needs {
    padding-bottom: 1.5rem;
  }
}
.needs .needs__title,
.needs .section-main {
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: calc(70rem + 1.25rem * 2)) {
  .needs .needs__title,
  .needs .section-main {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: calc(70rem + 1.25rem * 2)) and (min-width: 1100px) {
  .needs .needs__title,
  .needs .section-main {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: calc(70rem + 1.25rem * 2)) and (min-width: 576px) and (max-width: 1099.98px) {
  .needs .needs__title,
  .needs .section-main {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: calc(70rem + 1.25rem * 2)) and (max-width: 575.98px) {
  .needs .needs__title,
  .needs .section-main {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 576px) {
  .needs .section-main {
    margin-top: 2.1875rem;
  }
}
@media (max-width: 575.98px) {
  .needs .section-main {
    margin-top: 1.5rem;
  }
}
.needs .needs__reference {
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 576px) {
  .needs .needs__reference {
    margin-top: 4.125rem;
  }
}
@media (max-width: 575.98px) {
  .needs .needs__reference {
    margin-top: 0.75rem;
  }
}
@media screen and (max-width: calc(70rem + 1.25rem * 2)) {
  .needs .needs__reference {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: calc(70rem + 1.25rem * 2)) and (min-width: 1100px) {
  .needs .needs__reference {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: calc(70rem + 1.25rem * 2)) and (min-width: 576px) and (max-width: 1099.98px) {
  .needs .needs__reference {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: calc(70rem + 1.25rem * 2)) and (max-width: 575.98px) {
  .needs .needs__reference {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.needs .needs__item {
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1019607843);
}
@media (min-width: 576px) {
  .needs .needs__item {
    padding: 1.5rem 2.25rem;
  }
}
@media (max-width: 575.98px) {
  .needs .needs__item {
    padding: 1.5rem 2.25rem;
  }
}
@media (min-width: 576px) {
  .needs .needs__item .needs__item-notice {
    margin-top: 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .needs .needs__item .needs__item-notice {
    margin-top: 1.5rem;
  }
}
@media (min-width: 576px) {
  .needs .needs__item .needs__item-notice {
    padding: 0.875rem;
  }
}
@media (max-width: 575.98px) {
  .needs .needs__item .needs__item-notice {
    padding: 0.875rem;
  }
}
.needs .needs__item.needs__item-01 .needs__item-notice {
  background: rgba(255, 194, 197, 0.4);
}
.needs .needs__item.needs__item-02 .needs__item-notice {
  background: rgba(89, 189, 77, 0.1490196078);
}

.rework {
  background-image: url(../img/service/business/lp/pages/bg-rework.png);
  background-position: center top;
  background-size: auto auto;
}
@media (min-width: 1100px) {
  .rework {
    padding-top: 5rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .rework {
    padding-top: 5rem;
  }
}
@media (max-width: 575.98px) {
  .rework {
    padding-top: 5rem;
  }
}
@media (min-width: 1100px) {
  .rework {
    padding-bottom: 5rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .rework {
    padding-bottom: 5rem;
  }
}
@media (max-width: 575.98px) {
  .rework {
    padding-bottom: 5rem;
  }
}
.rework .rework__title {
  max-width: 62.75rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: calc(62.75rem + 1.25rem * 2)) {
  .rework .rework__title {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: calc(62.75rem + 1.25rem * 2)) and (min-width: 1100px) {
  .rework .rework__title {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: calc(62.75rem + 1.25rem * 2)) and (min-width: 576px) and (max-width: 1099.98px) {
  .rework .rework__title {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: calc(62.75rem + 1.25rem * 2)) and (max-width: 575.98px) {
  .rework .rework__title {
    padding-left: 0.4375rem;
    padding-right: 0.4375rem;
  }
}
.rework .section-main {
  max-width: 62.75rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 576px) {
  .rework .section-main {
    margin-top: 4rem;
  }
}
@media (max-width: 575.98px) {
  .rework .section-main {
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: calc(62.75rem + 1.25rem * 2)) {
  .rework .section-main {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: calc(62.75rem + 1.25rem * 2)) and (min-width: 1100px) {
  .rework .section-main {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: calc(62.75rem + 1.25rem * 2)) and (min-width: 576px) and (max-width: 1099.98px) {
  .rework .section-main {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: calc(62.75rem + 1.25rem * 2)) and (max-width: 575.98px) {
  .rework .section-main {
    padding-left: 2.71875rem;
    padding-right: 2.71875rem;
  }
}
@media (min-width: 1100px) {
  .rework .cta {
    padding-top: 4rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .rework .cta {
    padding-top: 4rem;
  }
}
@media (max-width: 575.98px) {
  .rework .cta {
    padding-top: 5rem;
  }
}
@media (min-width: 1100px) {
  .rework .cta {
    padding-bottom: 5rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .rework .cta {
    padding-bottom: 5rem;
  }
}
@media (max-width: 575.98px) {
  .rework .cta {
    padding-bottom: 5rem;
  }
}
@media (min-width: 1100px) {
  .rework .rework-cost {
    padding-top: 5rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .rework .rework-cost {
    padding-top: 5rem;
  }
}
@media (max-width: 575.98px) {
  .rework .rework-cost {
    padding-top: 5rem;
  }
}
.rework .rework-cost__subtitle {
  margin-left: auto;
  margin-right: auto;
  width: max-content;
}
@media (min-width: 576px) {
  .rework .rework-cost__subtitle {
    margin-top: 2.5rem;
  }
}
@media (max-width: 575.98px) {
  .rework .rework-cost__subtitle {
    margin-top: 1.5rem;
  }
}
.rework .rework-cost__content {
  max-width: 42.5rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 576px) {
  .rework .rework-cost__content {
    margin-top: 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .rework .rework-cost__content {
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: calc(42.5rem + 1.25rem * 2)) {
  .rework .rework-cost__content {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: calc(42.5rem + 1.25rem * 2)) and (min-width: 1100px) {
  .rework .rework-cost__content {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: calc(42.5rem + 1.25rem * 2)) and (min-width: 576px) and (max-width: 1099.98px) {
  .rework .rework-cost__content {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: calc(42.5rem + 1.25rem * 2)) and (max-width: 575.98px) {
  .rework .rework-cost__content {
    padding-left: 5.4375rem;
    padding-right: 5.4375rem;
  }
}

.reason {
  background-color: #EBF7EA;
}
@media (min-width: 1100px) {
  .reason {
    padding-top: 5rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .reason {
    padding-top: 5rem;
  }
}
@media (max-width: 575.98px) {
  .reason {
    padding-top: 5rem;
  }
}
@media (min-width: 1100px) {
  .reason {
    padding-bottom: 5rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .reason {
    padding-bottom: 5rem;
  }
}
@media (max-width: 575.98px) {
  .reason {
    padding-bottom: 5rem;
  }
}
.reason .reason__header {
  max-width: 53.875rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: calc(53.875rem + 1.25rem * 2)) {
  .reason .reason__header {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: calc(53.875rem + 1.25rem * 2)) and (min-width: 1100px) {
  .reason .reason__header {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: calc(53.875rem + 1.25rem * 2)) and (min-width: 576px) and (max-width: 1099.98px) {
  .reason .reason__header {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: calc(53.875rem + 1.25rem * 2)) and (max-width: 575.98px) {
  .reason .reason__header {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
}
.reason .section-main {
  max-width: 66.875rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 576px) {
  .reason .section-main {
    margin-top: 2.3125rem;
  }
}
@media (max-width: 575.98px) {
  .reason .section-main {
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: calc(66.875rem + 1.25rem * 2)) {
  .reason .section-main {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: calc(66.875rem + 1.25rem * 2)) and (min-width: 1100px) {
  .reason .section-main {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: calc(66.875rem + 1.25rem * 2)) and (min-width: 576px) and (max-width: 1099.98px) {
  .reason .section-main {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: calc(66.875rem + 1.25rem * 2)) and (max-width: 575.98px) {
  .reason .section-main {
    padding-left: 4.5625rem;
    padding-right: 4.5625rem;
  }
}
@media (min-width: 1100px) {
  .reason .cta {
    padding-top: 2.75rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .reason .cta {
    padding-top: 2.75rem;
  }
}
@media (max-width: 575.98px) {
  .reason .cta {
    padding-top: 2.5rem;
  }
}
.reason .reason__content {
  background-color: #fff;
}

@media (min-width: 1100px) {
  .support {
    padding-top: 5rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .support {
    padding-top: 5rem;
  }
}
@media (max-width: 575.98px) {
  .support {
    padding-top: 5rem;
  }
}
@media (min-width: 1100px) {
  .support {
    padding-bottom: 5rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .support {
    padding-bottom: 5rem;
  }
}
@media (max-width: 575.98px) {
  .support {
    padding-bottom: 5rem;
  }
}
.support .section-header,
.support .section-main {
  max-width: 67.25rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: calc(67.25rem + 1.25rem * 2)) {
  .support .section-header,
  .support .section-main {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: calc(67.25rem + 1.25rem * 2)) and (min-width: 1100px) {
  .support .section-header,
  .support .section-main {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: calc(67.25rem + 1.25rem * 2)) and (min-width: 576px) and (max-width: 1099.98px) {
  .support .section-header,
  .support .section-main {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: calc(67.25rem + 1.25rem * 2)) and (max-width: 575.98px) {
  .support .section-header,
  .support .section-main {
    padding-left: 4.2666666667vw;
    padding-right: 4.2666666667vw;
  }
}
@media (min-width: 1100px) {
  .support .support-company {
    padding-top: 4rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .support .support-company {
    padding-top: 4rem;
  }
}
@media (max-width: 575.98px) {
  .support .support-company {
    padding-top: 2.5rem;
  }
}
@media (min-width: 1100px) {
  .support .support-worker {
    padding-top: 5rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .support .support-worker {
    padding-top: 5rem;
  }
}
@media (max-width: 575.98px) {
  .support .support-worker {
    padding-top: 4rem;
  }
}
@media (min-width: 576px) {
  .support .support-section__content {
    margin-top: 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .support .support-section__content {
    margin-top: 1rem;
  }
}
@media (max-width: 575.98px) {
  .support .support-section__content {
    padding-left: 1.6vw;
    padding-right: 1.6vw;
  }
}
@media (min-width: 1100px) {
  .support .cta {
    padding-top: 4rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .support .cta {
    padding-top: 4rem;
  }
}
@media (max-width: 575.98px) {
  .support .cta {
    padding-top: 1.5rem;
  }
}

.cases {
  background: #FAFAFA;
}
@media (min-width: 1100px) {
  .cases {
    padding-top: 5rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .cases {
    padding-top: 5rem;
  }
}
@media (max-width: 575.98px) {
  .cases {
    padding-top: 5rem;
  }
}
@media (min-width: 1100px) {
  .cases {
    padding-bottom: 5rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .cases {
    padding-bottom: 5rem;
  }
}
@media (max-width: 575.98px) {
  .cases {
    padding-bottom: 5rem;
  }
}
.cases .cases__header {
  max-width: 60.25rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: calc(60.25rem + 1.25rem * 2)) {
  .cases .cases__header {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: calc(60.25rem + 1.25rem * 2)) and (min-width: 1100px) {
  .cases .cases__header {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: calc(60.25rem + 1.25rem * 2)) and (min-width: 576px) and (max-width: 1099.98px) {
  .cases .cases__header {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: calc(60.25rem + 1.25rem * 2)) and (max-width: 575.98px) {
  .cases .cases__header {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cases .section-main {
  max-width: 60.25rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 576px) {
  .cases .section-main {
    margin-top: 4rem;
  }
}
@media (max-width: 575.98px) {
  .cases .section-main {
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: calc(60.25rem + 1.25rem * 2)) {
  .cases .section-main {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: calc(60.25rem + 1.25rem * 2)) and (min-width: 1100px) {
  .cases .section-main {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: calc(60.25rem + 1.25rem * 2)) and (min-width: 576px) and (max-width: 1099.98px) {
  .cases .section-main {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: calc(60.25rem + 1.25rem * 2)) and (max-width: 575.98px) {
  .cases .section-main {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}
.cases .cases__footer {
  max-width: 60.25rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 576px) {
  .cases .cases__footer {
    margin-top: 3.125rem;
  }
}
@media (max-width: 575.98px) {
  .cases .cases__footer {
    margin-top: 2.6875rem;
  }
}
@media screen and (max-width: calc(60.25rem + 1.25rem * 2)) {
  .cases .cases__footer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: calc(60.25rem + 1.25rem * 2)) and (min-width: 1100px) {
  .cases .cases__footer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: calc(60.25rem + 1.25rem * 2)) and (min-width: 576px) and (max-width: 1099.98px) {
  .cases .cases__footer {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: calc(60.25rem + 1.25rem * 2)) and (max-width: 575.98px) {
  .cases .cases__footer {
    padding-left: 1.3125rem;
    padding-right: 1.3125rem;
  }
}
.cases .cases__item-text {
  background-color: #fff;
}

@media (min-width: 1100px) {
  .flow {
    padding-top: 5rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .flow {
    padding-top: 5rem;
  }
}
@media (max-width: 575.98px) {
  .flow {
    padding-top: 5rem;
  }
}
@media (min-width: 1100px) {
  .flow {
    padding-bottom: 5rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .flow {
    padding-bottom: 5rem;
  }
}
@media (max-width: 575.98px) {
  .flow {
    padding-bottom: 5rem;
  }
}
.flow .flow__header {
  max-width: 63rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: calc(63rem + 1.25rem * 2)) {
  .flow .flow__header {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: calc(63rem + 1.25rem * 2)) and (min-width: 1100px) {
  .flow .flow__header {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: calc(63rem + 1.25rem * 2)) and (min-width: 576px) and (max-width: 1099.98px) {
  .flow .flow__header {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: calc(63rem + 1.25rem * 2)) and (max-width: 575.98px) {
  .flow .flow__header {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.flow .section-main {
  max-width: 63rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 576px) {
  .flow .section-main {
    margin-top: 3.75rem;
  }
}
@media (max-width: 575.98px) {
  .flow .section-main {
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: calc(63rem + 1.25rem * 2)) {
  .flow .section-main {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: calc(63rem + 1.25rem * 2)) and (min-width: 1100px) {
  .flow .section-main {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: calc(63rem + 1.25rem * 2)) and (min-width: 576px) and (max-width: 1099.98px) {
  .flow .section-main {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: calc(63rem + 1.25rem * 2)) and (max-width: 575.98px) {
  .flow .section-main {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.flow .flow__note {
  max-width: 56.25rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 576px) {
  .flow .flow__note {
    margin-top: 2.5rem;
  }
}
@media (max-width: 575.98px) {
  .flow .flow__note {
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: calc(56.25rem + 1.25rem * 2)) {
  .flow .flow__note {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: calc(56.25rem + 1.25rem * 2)) and (min-width: 1100px) {
  .flow .flow__note {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: calc(56.25rem + 1.25rem * 2)) and (min-width: 576px) and (max-width: 1099.98px) {
  .flow .flow__note {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: calc(56.25rem + 1.25rem * 2)) and (max-width: 575.98px) {
  .flow .flow__note {
    padding-left: 0.6875rem;
    padding-right: 0.6875rem;
  }
}
.flow .flow__note .flow__note-text {
  background-color: #F8F8F8;
}
@media (min-width: 576px) {
  .flow .flow__note .flow__note-text {
    padding: 0.8125rem;
  }
}
@media (max-width: 575.98px) {
  .flow .flow__note .flow__note-text {
    padding: 1rem;
  }
}
@media (min-width: 1100px) {
  .flow .cta {
    padding-top: 2.5rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .flow .cta {
    padding-top: 2.5rem;
  }
}
@media (max-width: 575.98px) {
  .flow .cta {
    padding-top: 2.5rem;
  }
}

@media (min-width: 1100px) {
  .faq {
    padding-top: 5rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .faq {
    padding-top: 5rem;
  }
}
@media (max-width: 575.98px) {
  .faq {
    padding-top: 5rem;
  }
}
@media (min-width: 1100px) {
  .faq {
    padding-bottom: 5rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .faq {
    padding-bottom: 5rem;
  }
}
@media (max-width: 575.98px) {
  .faq {
    padding-bottom: 5rem;
  }
}

@media (min-width: 1100px) {
  .contact {
    padding-top: 5rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .contact {
    padding-top: 5rem;
  }
}
@media (max-width: 575.98px) {
  .contact {
    padding-top: 2.1875rem;
  }
}
@media (min-width: 1100px) {
  .contact {
    padding-bottom: 5rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .contact {
    padding-bottom: 5rem;
  }
}
@media (max-width: 575.98px) {
  .contact {
    padding-bottom: 2.1875rem;
  }
}

@media (min-width: 1100px) {
  .form {
    padding-top: 5rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .form {
    padding-top: 5rem;
  }
}
@media (max-width: 575.98px) {
  .form {
    padding-top: 5rem;
  }
}
@media (min-width: 1100px) {
  .form {
    padding-bottom: 9.375rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .form {
    padding-bottom: 9.375rem;
  }
}
@media (max-width: 575.98px) {
  .form {
    padding-bottom: 5rem;
  }
}

.color-01 {
  color: #EC6633;
  font-weight: 700;
}

.color-02 {
  color: #59BD4D;
  font-weight: 700;
}

.section-title {
  text-align: center;
  font-weight: 700;
  line-height: normal;
}
@media (min-width: 576px) {
  .section-title {
    font-size: 2rem;
  }
}
@media (max-width: 575.98px) {
  .section-title {
    font-size: 6.4vw;
  }
}

.section-header__desc {
  text-align: center;
  font-weight: 400;
}
@media (min-width: 576px) {
  .section-header__desc {
    margin-top: 2.5rem;
  }
}
@media (max-width: 575.98px) {
  .section-header__desc {
    margin-top: 1rem;
  }
}
@media (min-width: 1100px) {
  .section-header__desc {
    font-size: 1rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .section-header__desc {
    font-size: 1rem;
  }
}
@media (max-width: 575.98px) {
  .section-header__desc {
    font-size: 1rem;
  }
}
@media (min-width: 576px) {
  .section-header__desc {
    line-height: 170%;
  }
}
@media (max-width: 575.98px) {
  .section-header__desc {
    line-height: 170%;
  }
}

.char {
  position: relative;
  display: inline-block;
}

.char::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #EFF74D;
  border-radius: 50%;
}
@media (min-width: 576px) {
  .char::before {
    width: 0.5rem;
    height: 0.5rem;
  }
}
@media (max-width: 575.98px) {
  .char::before {
    width: 0.5rem;
    height: 0.5rem;
  }
}

.problem__item-title {
  text-align: center;
  font-weight: 700;
}
@media (min-width: 576px) {
  .problem__item-title {
    margin-top: 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .problem__item-title {
    margin-top: 1.5rem;
  }
}
@media (min-width: 1100px) {
  .problem__item-title {
    font-size: 1.5rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .problem__item-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .problem__item-title {
    font-size: 1.25rem;
  }
}
@media (min-width: 576px) {
  .problem__item-title {
    line-height: 150%;
  }
}
@media (max-width: 575.98px) {
  .problem__item-title {
    line-height: 150%;
  }
}

.problem__item-desc {
  font-weight: 400;
}
@media (min-width: 576px) {
  .problem__item-desc {
    margin-top: 1rem;
  }
}
@media (max-width: 575.98px) {
  .problem__item-desc {
    margin-top: 1rem;
  }
}
@media (min-width: 1100px) {
  .problem__item-desc {
    font-size: 1rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .problem__item-desc {
    font-size: 1rem;
  }
}
@media (max-width: 575.98px) {
  .problem__item-desc {
    font-size: 1rem;
  }
}
@media (min-width: 576px) {
  .problem__item-desc {
    line-height: 170%;
  }
}
@media (max-width: 575.98px) {
  .problem__item-desc {
    line-height: 170%;
  }
}

.solution__subtitle {
  color: #fff;
  font-weight: 700;
}
@media (min-width: 576px) {
  .solution__subtitle {
    margin-top: 3.25rem;
  }
}
@media (max-width: 575.98px) {
  .solution__subtitle {
    margin-top: 2.5rem;
  }
}
@media (min-width: 1100px) {
  .solution__subtitle {
    font-size: 1.75rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .solution__subtitle {
    font-size: 1.75rem;
  }
}
@media (max-width: 575.98px) {
  .solution__subtitle {
    font-size: 1.5rem;
  }
}
@media (min-width: 576px) {
  .solution__subtitle {
    line-height: 150%;
  }
}
@media (max-width: 575.98px) {
  .solution__subtitle {
    line-height: 150%;
  }
}

.solution__item-title {
  text-align: center;
  color: #00A23F;
  font-weight: 700;
}
@media (min-width: 1100px) {
  .solution__item-title {
    font-size: 1.75rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .solution__item-title {
    font-size: 1.75rem;
  }
}
@media (max-width: 575.98px) {
  .solution__item-title {
    font-size: 5.3333333333vw;
  }
}
@media (min-width: 576px) {
  .solution__item-title {
    line-height: 150%;
  }
}
@media (max-width: 575.98px) {
  .solution__item-title {
    line-height: 150%;
  }
}

.needs__item {
  text-align: center;
}

.needs__item-title {
  text-align: center;
  font-weight: 700;
}
@media (min-width: 576px) {
  .needs__item-title {
    margin-top: 0.5rem;
  }
}
@media (max-width: 575.98px) {
  .needs__item-title {
    margin-top: 0.5rem;
  }
}
@media (min-width: 1100px) {
  .needs__item-title {
    font-size: 1.25rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .needs__item-title {
    font-size: 1.25rem;
  }
}
@media (max-width: 575.98px) {
  .needs__item-title {
    font-size: 1.25rem;
  }
}
@media (min-width: 576px) {
  .needs__item-title {
    line-height: 150%;
  }
}
@media (max-width: 575.98px) {
  .needs__item-title {
    line-height: 150%;
  }
}

.needs__item-subtitle {
  text-align: center;
}
@media (min-width: 576px) {
  .needs__item-subtitle {
    margin-top: 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .needs__item-subtitle {
    margin-top: 1.5rem;
  }
}
@media (min-width: 1100px) {
  .needs__item-subtitle {
    font-size: 1rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .needs__item-subtitle {
    font-size: 1rem;
  }
}
@media (max-width: 575.98px) {
  .needs__item-subtitle {
    font-size: 1rem;
  }
}
@media (min-width: 576px) {
  .needs__item-subtitle {
    line-height: 150%;
  }
}
@media (max-width: 575.98px) {
  .needs__item-subtitle {
    line-height: 150%;
  }
}

.needs__item-number {
  text-align: center;
  font-weight: 700;
}
@media (min-width: 576px) {
  .needs__item-number {
    margin-top: 0.125rem;
  }
}
@media (max-width: 575.98px) {
  .needs__item-number {
    margin-top: 0.125rem;
  }
}
@media (min-width: 1100px) {
  .needs__item-number {
    font-size: 2.125rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .needs__item-number {
    font-size: 2.125rem;
  }
}
@media (max-width: 575.98px) {
  .needs__item-number {
    font-size: 2.125rem;
  }
}
@media (min-width: 576px) {
  .needs__item-number {
    line-height: 150%;
  }
}
@media (max-width: 575.98px) {
  .needs__item-number {
    line-height: 150%;
  }
}
.needs__item-01 .needs__item-number {
  color: #EC6633;
}
.needs__item-02 .needs__item-number {
  color: #59BD4D;
}

.needs__item-desc {
  color: #7A7A7A;
  font-weight: 400;
}
@media (min-width: 576px) {
  .needs__item-desc {
    margin-top: 0.125rem;
  }
}
@media (max-width: 575.98px) {
  .needs__item-desc {
    margin-top: 0.125rem;
  }
}
@media (min-width: 1100px) {
  .needs__item-desc {
    font-size: 0.875rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .needs__item-desc {
    font-size: 0.875rem;
  }
}
@media (max-width: 575.98px) {
  .needs__item-desc {
    font-size: 0.875rem;
  }
}
@media (min-width: 576px) {
  .needs__item-desc {
    line-height: 150%;
  }
}
@media (max-width: 575.98px) {
  .needs__item-desc {
    line-height: 150%;
  }
}

.needs__item-notice-title {
  font-weight: 700;
}
@media (min-width: 1100px) {
  .needs__item-notice-title {
    font-size: 1rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .needs__item-notice-title {
    font-size: 1rem;
  }
}
@media (max-width: 575.98px) {
  .needs__item-notice-title {
    font-size: 1rem;
  }
}
@media (min-width: 576px) {
  .needs__item-notice-title {
    line-height: 150%;
  }
}
@media (max-width: 575.98px) {
  .needs__item-notice-title {
    line-height: 150%;
  }
}
.needs__item-notice-title span {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: left 60%;
}
@media (min-width: 576px) {
  .needs__item-notice-title span {
    padding-left: 1.3125rem;
  }
}
@media (max-width: 575.98px) {
  .needs__item-notice-title span {
    padding-left: 1.3125rem;
  }
}
@media (min-width: 576px) {
  .needs__item-notice-title span {
    background-size: 1rem auto;
  }
}
@media (max-width: 575.98px) {
  .needs__item-notice-title span {
    background-size: 1rem auto;
  }
}
.needs__item-01 .needs__item-notice-title {
  color: #DD4545;
}
.needs__item-01 .needs__item-notice-title span {
  background-image: url(../img/service/business/lp/icon/icon-notice-red.svg);
}
.needs__item-02 .needs__item-notice-title {
  color: #00A23F;
}
.needs__item-02 .needs__item-notice-title span {
  background-image: url(../img/service/business/lp/icon/icon-notice-green.svg);
}

.needs__item-notice-desc {
  font-weight: 400;
}
@media (min-width: 576px) {
  .needs__item-notice-desc {
    margin-top: 0.125rem;
  }
}
@media (max-width: 575.98px) {
  .needs__item-notice-desc {
    margin-top: 0.125rem;
  }
}
@media (min-width: 1100px) {
  .needs__item-notice-desc {
    font-size: 0.8125rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .needs__item-notice-desc {
    font-size: 0.8125rem;
  }
}
@media (max-width: 575.98px) {
  .needs__item-notice-desc {
    font-size: 0.8125rem;
  }
}
@media (min-width: 576px) {
  .needs__item-notice-desc {
    line-height: 150%;
  }
}
@media (max-width: 575.98px) {
  .needs__item-notice-desc {
    line-height: 150%;
  }
}
.needs__item-01 .needs__item-notice-desc {
  color: #DD4545;
}
.needs__item-02 .needs__item-notice-desc {
  color: #00A23F;
}

.needs__reference th, .needs__reference td {
  color: #7A7A7A;
  font-weight: 500;
}
@media (min-width: 1100px) {
  .needs__reference th, .needs__reference td {
    font-size: 0.75rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .needs__reference th, .needs__reference td {
    font-size: 0.75rem;
  }
}
@media (max-width: 575.98px) {
  .needs__reference th, .needs__reference td {
    font-size: 0.75rem;
  }
}
@media (min-width: 576px) {
  .needs__reference th, .needs__reference td {
    line-height: 160%;
  }
}
@media (max-width: 575.98px) {
  .needs__reference th, .needs__reference td {
    line-height: 160%;
  }
}
.needs__reference a {
  color: #48ADFF;
  text-decoration: underline;
}
.needs__reference a:link, .needs__reference a:visited, .needs__reference a:hover, .needs__reference a:active {
  color: #48ADFF;
}
.needs__reference a:hover {
  color: #48ADFF;
}

.rework__item-title {
  text-align: center;
  color: #00A23F;
  font-weight: 700;
}
@media (min-width: 576px) {
  .rework__item-title {
    margin-top: 1rem;
  }
}
@media (max-width: 575.98px) {
  .rework__item-title {
    margin-top: 1rem;
  }
}
@media (min-width: 1100px) {
  .rework__item-title {
    font-size: 1.25rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .rework__item-title {
    font-size: 1.25rem;
  }
}
@media (max-width: 575.98px) {
  .rework__item-title {
    font-size: 1.25rem;
  }
}
@media (min-width: 576px) {
  .rework__item-title {
    line-height: 150%;
  }
}
@media (max-width: 575.98px) {
  .rework__item-title {
    line-height: 150%;
  }
}

.rework__item-desc {
  font-weight: 500;
}
@media (min-width: 576px) {
  .rework__item-desc {
    margin-top: 1rem;
  }
}
@media (max-width: 575.98px) {
  .rework__item-desc {
    margin-top: 1rem;
  }
}
@media (min-width: 1100px) {
  .rework__item-desc {
    font-size: 1rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .rework__item-desc {
    font-size: 1rem;
  }
}
@media (max-width: 575.98px) {
  .rework__item-desc {
    font-size: 1rem;
  }
}
@media (min-width: 576px) {
  .rework__item-desc {
    line-height: 170%;
  }
}
@media (max-width: 575.98px) {
  .rework__item-desc {
    line-height: 170%;
  }
}

@media (max-width: 1099.98px) {
  .rework-cost__subtitle {
    text-align: center;
  }
}
.rework-cost__subtitle .-main {
  font-weight: 700;
}
@media (min-width: 1100px) {
  .rework-cost__subtitle .-main {
    font-size: 1.25rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .rework-cost__subtitle .-main {
    font-size: 1.25rem;
  }
}
@media (max-width: 575.98px) {
  .rework-cost__subtitle .-main {
    font-size: 1.25rem;
  }
}
@media (min-width: 576px) {
  .rework-cost__subtitle .-main {
    line-height: 150%;
  }
}
@media (max-width: 575.98px) {
  .rework-cost__subtitle .-main {
    line-height: 150%;
  }
}
.rework-cost__subtitle .-sub {
  font-weight: 400;
}
@media (min-width: 1100px) {
  .rework-cost__subtitle .-sub {
    font-size: 0.875rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .rework-cost__subtitle .-sub {
    font-size: 0.875rem;
  }
}
@media (max-width: 575.98px) {
  .rework-cost__subtitle .-sub {
    font-size: 0.875rem;
  }
}
@media (min-width: 576px) {
  .rework-cost__subtitle .-sub {
    line-height: 150%;
  }
}
@media (max-width: 575.98px) {
  .rework-cost__subtitle .-sub {
    line-height: 150%;
  }
}

.reason__caption {
  text-align: center;
  font-weight: 400;
}
@media (min-width: 576px) {
  .reason__caption {
    margin-top: 1.8125rem;
  }
}
@media (max-width: 575.98px) {
  .reason__caption {
    margin-top: 0.625rem;
  }
}
@media (min-width: 1100px) {
  .reason__caption {
    font-size: 1.25rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .reason__caption {
    font-size: 1.25rem;
  }
}
@media (max-width: 575.98px) {
  .reason__caption {
    font-size: 1.125rem;
  }
}
@media (min-width: 576px) {
  .reason__caption {
    line-height: 170%;
  }
}
@media (max-width: 575.98px) {
  .reason__caption {
    line-height: 170%;
  }
}

.reason__item-number {
  text-align: center;
  color: #fff;
  font-weight: 700;
}
@media (min-width: 1100px) {
  .reason__item-number {
    font-size: 1.25rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .reason__item-number {
    font-size: 1.25rem;
  }
}
@media (max-width: 575.98px) {
  .reason__item-number {
    font-size: 1.25rem;
  }
}
@media (min-width: 576px) {
  .reason__item-number {
    line-height: 150%;
  }
}
@media (max-width: 575.98px) {
  .reason__item-number {
    line-height: 150%;
  }
}

.reason__item-title {
  text-align: center;
  color: #fff;
  font-weight: 700;
}
@media (min-width: 1100px) {
  .reason__item-title {
    font-size: 1.25rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .reason__item-title {
    font-size: 1.25rem;
  }
}
@media (max-width: 575.98px) {
  .reason__item-title {
    font-size: 5.3333333333vw;
  }
}
@media (min-width: 576px) {
  .reason__item-title {
    line-height: 150%;
  }
}
@media (max-width: 575.98px) {
  .reason__item-title {
    line-height: 150%;
  }
}
@media (min-width: 576px) {
  .reason__item-04 .reason__item-title {
    font-size: 1.0625rem;
  }
}
@media (max-width: 575.98px) {
  .reason__item-04 .reason__item-title {
    font-size: 4.5333333333vw;
  }
}

.reason__content {
  color: #00A23F;
  text-align: center;
}
.reason__content .-number {
  font-weight: 700;
  font-family: Arial;
  font-style: Italic;
}
@media (min-width: 1100px) {
  .reason__content .-number {
    font-size: 3rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .reason__content .-number {
    font-size: 3rem;
  }
}
@media (max-width: 575.98px) {
  .reason__content .-number {
    font-size: 3rem;
  }
}
@media (min-width: 576px) {
  .reason__content .-number {
    line-height: 150%;
  }
}
@media (max-width: 575.98px) {
  .reason__content .-number {
    line-height: 150%;
  }
}
.reason__content .-unit {
  font-weight: 700;
  font-family: Arial;
  font-weight: 700;
  font-style: Italic;
}
@media (min-width: 1100px) {
  .reason__content .-unit {
    font-size: 1.125rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .reason__content .-unit {
    font-size: 1.125rem;
  }
}
@media (max-width: 575.98px) {
  .reason__content .-unit {
    font-size: 1.125rem;
  }
}
@media (min-width: 576px) {
  .reason__content .-unit {
    line-height: 150%;
  }
}
@media (max-width: 575.98px) {
  .reason__content .-unit {
    line-height: 150%;
  }
}

.reason__caption {
  color: #7A7A7A;
  font-weight: 500;
}
@media (min-width: 576px) {
  .reason__caption {
    margin-top: 0.5rem;
  }
}
@media (max-width: 575.98px) {
  .reason__caption {
    margin-top: 0.5rem;
  }
}
@media (min-width: 1100px) {
  .reason__caption {
    font-size: 1rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .reason__caption {
    font-size: 1rem;
  }
}
@media (max-width: 575.98px) {
  .reason__caption {
    font-size: 1rem;
  }
}
@media (min-width: 576px) {
  .reason__caption {
    line-height: 150%;
  }
}
@media (max-width: 575.98px) {
  .reason__caption {
    line-height: 150%;
  }
}

.reason__header-caption {
  text-align: center;
  color: #374151;
  font-weight: 400;
}
@media (min-width: 1100px) {
  .reason__header-caption {
    font-size: 1.25rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .reason__header-caption {
    font-size: 1.25rem;
  }
}
@media (max-width: 575.98px) {
  .reason__header-caption {
    font-size: 4.8vw;
  }
}
@media (min-width: 576px) {
  .reason__header-caption {
    line-height: 170%;
  }
}
@media (max-width: 575.98px) {
  .reason__header-caption {
    line-height: 170%;
  }
}

.support-section__title {
  text-align: center;
  color: #fff;
  font-weight: 700;
}
@media (min-width: 576px) {
  .support-section__title {
    padding: 0.6875rem;
  }
}
@media (max-width: 575.98px) {
  .support-section__title {
    padding: 0.6875rem;
  }
}
@media (min-width: 1100px) {
  .support-section__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .support-section__title {
    font-size: 1.25rem;
  }
}
@media (max-width: 575.98px) {
  .support-section__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 576px) {
  .support-section__title {
    line-height: 150%;
  }
}
@media (max-width: 575.98px) {
  .support-section__title {
    line-height: 150%;
  }
}
.support-company .support-section__title {
  background-color: #EC6633;
}
.support-worker .support-section__title {
  background-color: #00A23F;
}

.support-company__item-title,
.support-worker__item-title {
  text-align: center;
  font-weight: 700;
}
@media (min-width: 576px) {
  .support-company__item-title,
  .support-worker__item-title {
    margin-top: 1rem;
  }
}
@media (max-width: 575.98px) {
  .support-company__item-title,
  .support-worker__item-title {
    margin-top: 1rem;
  }
}
@media (min-width: 576px) {
  .support-company__item-title,
  .support-worker__item-title {
    font-size: 1.25rem;
  }
}
@media (max-width: 575.98px) {
  .support-company__item-title,
  .support-worker__item-title {
    font-size: 5.3333333333vw;
  }
}
@media (min-width: 576px) {
  .support-company__item-title,
  .support-worker__item-title {
    line-height: 145%;
  }
}
@media (max-width: 575.98px) {
  .support-company__item-title,
  .support-worker__item-title {
    line-height: 145%;
  }
}

.support-company__item-desc,
.support-worker__item-desc {
  font-weight: 500;
}
@media (min-width: 576px) {
  .support-company__item-desc,
  .support-worker__item-desc {
    margin-top: 1rem;
  }
}
@media (max-width: 575.98px) {
  .support-company__item-desc,
  .support-worker__item-desc {
    margin-top: 1rem;
  }
}
@media (min-width: 1100px) {
  .support-company__item-desc,
  .support-worker__item-desc {
    font-size: 1rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .support-company__item-desc,
  .support-worker__item-desc {
    font-size: 1rem;
  }
}
@media (max-width: 575.98px) {
  .support-company__item-desc,
  .support-worker__item-desc {
    font-size: 1rem;
  }
}
@media (min-width: 576px) {
  .support-company__item-desc,
  .support-worker__item-desc {
    line-height: 170%;
  }
}
@media (max-width: 575.98px) {
  .support-company__item-desc,
  .support-worker__item-desc {
    line-height: 170%;
  }
}

.cases__item-title {
  font-weight: 700;
}
@media (min-width: 1100px) {
  .cases__item-title {
    font-size: 1.25rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .cases__item-title {
    font-size: 1.25rem;
  }
}
@media (max-width: 575.98px) {
  .cases__item-title {
    font-size: 1.25rem;
  }
}
@media (min-width: 576px) {
  .cases__item-title {
    line-height: 170%;
  }
}
@media (max-width: 575.98px) {
  .cases__item-title {
    line-height: 170%;
  }
}
.is-01 .cases__item-title {
  color: #EC6633;
}
.is-02 .cases__item-title {
  color: #59BD4D;
}

.is-textonly .cases__item-profile-text {
  color: #7A7A7A;
  font-family: Noto Sans JP;
  font-weight: 350;
}
@media (min-width: 1100px) {
  .is-textonly .cases__item-profile-text {
    font-size: 0.875rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .is-textonly .cases__item-profile-text {
    font-size: 0.875rem;
  }
}
@media (max-width: 575.98px) {
  .is-textonly .cases__item-profile-text {
    font-size: 0.875rem;
  }
}
@media (min-width: 576px) {
  .is-textonly .cases__item-profile-text {
    line-height: 150%;
  }
}
@media (max-width: 575.98px) {
  .is-textonly .cases__item-profile-text {
    line-height: 150%;
  }
}

.cases__item-profile-name-01 {
  font-weight: 700;
}
@media (min-width: 1100px) {
  .cases__item-profile-name-01 {
    font-size: 1.125rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .cases__item-profile-name-01 {
    font-size: 1.125rem;
  }
}
@media (max-width: 575.98px) {
  .cases__item-profile-name-01 {
    font-size: 1.125rem;
  }
}
@media (min-width: 576px) {
  .cases__item-profile-name-01 {
    line-height: 150%;
  }
}
@media (max-width: 575.98px) {
  .cases__item-profile-name-01 {
    line-height: 150%;
  }
}

.cases__item-profile-name-02 {
  color: #7A7A7A;
  font-weight: 500;
}
@media (min-width: 576px) {
  .cases__item-profile-name-02 {
    margin-top: 0.375rem;
  }
}
@media (max-width: 575.98px) {
  .cases__item-profile-name-02 {
    margin-top: 0.375rem;
  }
}
@media (min-width: 1100px) {
  .cases__item-profile-name-02 {
    font-size: 0.875rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .cases__item-profile-name-02 {
    font-size: 0.875rem;
  }
}
@media (max-width: 575.98px) {
  .cases__item-profile-name-02 {
    font-size: 0.875rem;
  }
}
@media (min-width: 576px) {
  .cases__item-profile-name-02 {
    line-height: 150%;
  }
}
@media (max-width: 575.98px) {
  .cases__item-profile-name-02 {
    line-height: 150%;
  }
}

.cases__item-headline {
  font-weight: 700;
}
@media (min-width: 576px) {
  .cases__item-headline {
    margin-top: 0;
  }
}
@media (max-width: 575.98px) {
  .cases__item-headline {
    margin-top: 0;
  }
}
@media (min-width: 1100px) {
  .cases__item-headline {
    font-size: 1.125rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .cases__item-headline {
    font-size: 1.125rem;
  }
}
@media (max-width: 575.98px) {
  .cases__item-headline {
    font-size: 1.125rem;
  }
}
@media (min-width: 576px) {
  .cases__item-headline {
    line-height: 155%;
  }
}
@media (max-width: 575.98px) {
  .cases__item-headline {
    line-height: 155%;
  }
}

.cases__item-voice {
  font-weight: 400;
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  .cases__item-voice {
    margin-top: 0.5rem;
  }
}
@media (max-width: 575.98px) {
  .cases__item-voice {
    margin-top: 0.5rem;
  }
}
@media (min-width: 1100px) {
  .cases__item-voice {
    font-size: 0.875rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .cases__item-voice {
    font-size: 0.875rem;
  }
}
@media (max-width: 575.98px) {
  .cases__item-voice {
    font-size: 0.875rem;
  }
}
@media (min-width: 576px) {
  .cases__item-voice {
    line-height: 180%;
  }
}
@media (max-width: 575.98px) {
  .cases__item-voice {
    line-height: 180%;
  }
}

.cases__footer-text {
  font-weight: 400;
}
@media (min-width: 1100px) {
  .cases__footer-text {
    font-size: 1.25rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .cases__footer-text {
    font-size: 1.25rem;
  }
}
@media (max-width: 575.98px) {
  .cases__footer-text {
    font-size: 1.25rem;
  }
}
@media (min-width: 576px) {
  .cases__footer-text {
    line-height: 170%;
  }
}
@media (max-width: 575.98px) {
  .cases__footer-text {
    line-height: 170%;
  }
}

@media (min-width: 576px) {
  .cases__footer-link {
    margin-top: 1.5625rem;
  }
}
@media (max-width: 575.98px) {
  .cases__footer-link {
    margin-top: 1.5rem;
  }
}
@media (min-width: 1100px) {
  .cases__footer-link {
    font-size: 1rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .cases__footer-link {
    font-size: 1rem;
  }
}
@media (max-width: 575.98px) {
  .cases__footer-link {
    font-size: 1rem;
  }
}
@media (min-width: 576px) {
  .cases__footer-link {
    line-height: 150%;
  }
}
@media (max-width: 575.98px) {
  .cases__footer-link {
    line-height: 150%;
  }
}

.cases__footer-link-text {
  color: #5CB6FF;
  font-family: Noto Sans JP;
  font-weight: 500;
  transition: opacity 0.3s ease;
}
.cases__footer-link-text:link, .cases__footer-link-text:visited, .cases__footer-link-text:hover, .cases__footer-link-text:active {
  color: #5CB6FF;
}
.cases__footer-link-text:hover {
  color: #5CB6FF;
}
.cases__footer-link-text:hover {
  opacity: 0.7;
}
@media (max-width: 575.98px) {
  .cases__footer-link-text.js_hover {
    opacity: 0.7;
  }
}

.flow__item-number {
  text-align: center;
  color: #fff;
  font-family: Arial;
  font-weight: 700;
}
@media (min-width: 1100px) {
  .flow__item-number {
    font-size: 1.25rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .flow__item-number {
    font-size: 1.25rem;
  }
}
@media (max-width: 575.98px) {
  .flow__item-number {
    font-size: 1.25rem;
  }
}
@media (min-width: 576px) {
  .flow__item-number {
    line-height: 170%;
  }
}
@media (max-width: 575.98px) {
  .flow__item-number {
    line-height: 170%;
  }
}

.flow__item-title {
  text-align: center;
  font-weight: 700;
}
@media (min-width: 576px) {
  .flow__item-title {
    margin-top: 0.5rem;
  }
}
@media (max-width: 575.98px) {
  .flow__item-title {
    margin-top: 0.5rem;
  }
}
@media (min-width: 1100px) {
  .flow__item-title {
    font-size: 1.25rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .flow__item-title {
    font-size: 1.25rem;
  }
}
@media (max-width: 575.98px) {
  .flow__item-title {
    font-size: 1.25rem;
  }
}
@media (min-width: 576px) {
  .flow__item-title {
    line-height: 170%;
  }
}
@media (max-width: 575.98px) {
  .flow__item-title {
    line-height: 170%;
  }
}

.flow__item-desc {
  text-align: center;
  font-weight: 350;
  color: #4B5563;
}
@media (min-width: 576px) {
  .flow__item-desc {
    margin-top: 1rem;
  }
}
@media (max-width: 575.98px) {
  .flow__item-desc {
    margin-top: 1rem;
  }
}
@media (min-width: 1100px) {
  .flow__item-desc {
    font-size: 0.875rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .flow__item-desc {
    font-size: 0.875rem;
  }
}
@media (max-width: 575.98px) {
  .flow__item-desc {
    font-size: 0.875rem;
  }
}
@media (min-width: 576px) {
  .flow__item-desc {
    line-height: 142%;
  }
}
@media (max-width: 575.98px) {
  .flow__item-desc {
    line-height: 142%;
  }
}

.flow__note-text {
  letter-spacing: 0%;
  text-align: center;
  font-weight: 500;
}
@media (min-width: 1100px) {
  .flow__note-text {
    font-size: 1rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .flow__note-text {
    font-size: 1rem;
  }
}
@media (max-width: 575.98px) {
  .flow__note-text {
    font-size: 1rem;
  }
}
@media (min-width: 576px) {
  .flow__note-text {
    line-height: 170%;
  }
}
@media (max-width: 575.98px) {
  .flow__note-text {
    line-height: 170%;
  }
}
@media (max-width: 1099.98px) {
  .flow__note-text {
    text-align: left;
  }
}

.cta {
  max-width: 42.5rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: calc(42.5rem + 1.25rem * 2)) {
  .cta {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: calc(42.5rem + 1.25rem * 2)) and (min-width: 1100px) {
  .cta {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: calc(42.5rem + 1.25rem * 2)) and (min-width: 576px) and (max-width: 1099.98px) {
  .cta {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: calc(42.5rem + 1.25rem * 2)) and (max-width: 575.98px) {
  .cta {
    padding-left: 1.6875rem;
    padding-right: 1.6875rem;
  }
}
@media (min-width: 1100px) {
  .cta .cta__button-link-contact {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1000px;
    font-weight: 700;
    line-height: 170%;
    background-color: var(--bg-btn-primary, #EC6633);
    color: var(--c-text-btn-primary, #fff);
    color: var(--c-text-btn-primary, #fff);
    position: relative;
    overflow: hidden;
    z-index: 0;
    max-width: 20rem;
    width: 100%;
    height: 4.4375rem;
    font-size: 1.125rem;
  }
  .cta .cta__button-link-contact:link, .cta .cta__button-link-contact:visited, .cta .cta__button-link-contact:hover, .cta .cta__button-link-contact:active {
    color: var(--c-text-btn-primary, #fff);
  }
  .cta .cta__button-link-contact:hover {
    color: var(--c-text-btn-primary, #fff);
  }
  .cta .cta__button-link-contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: -110%;
    width: 108%;
    height: 100%;
    background: #ff7733;
    transform: skewX(-20deg);
    z-index: -1;
    transition: all 0.3s ease;
  }
  .cta .cta__button-link-contact:hover::before {
    left: -1%;
  }
  .cta .cta__button-link-contact .button-text {
    display: flex;
    align-items: center;
    padding-left: 2rem;
  }
  .cta .cta__button-link-contact .button-text::after {
    content: "";
    width: 1.5rem;
    height: 1em;
    margin-left: 1.5rem;
    background-image: url(../img/service/business/lp/icon/arrow-left-white.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 1.5rem auto;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .cta .cta__button-link-contact {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1000px;
    font-weight: 700;
    line-height: 170%;
    background-color: var(--bg-btn-primary, #EC6633);
    color: var(--c-text-btn-primary, #fff);
    color: var(--c-text-btn-primary, #fff);
    position: relative;
    overflow: hidden;
    z-index: 0;
    max-width: 20rem;
    width: 100%;
    height: 4.4375rem;
    font-size: 1.125rem;
  }
  .cta .cta__button-link-contact:link, .cta .cta__button-link-contact:visited, .cta .cta__button-link-contact:hover, .cta .cta__button-link-contact:active {
    color: var(--c-text-btn-primary, #fff);
  }
  .cta .cta__button-link-contact:hover {
    color: var(--c-text-btn-primary, #fff);
  }
  .cta .cta__button-link-contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: -110%;
    width: 108%;
    height: 100%;
    background: #ff7733;
    transform: skewX(-20deg);
    z-index: -1;
    transition: all 0.3s ease;
  }
  .cta .cta__button-link-contact:hover::before {
    left: -1%;
  }
  .cta .cta__button-link-contact .button-text {
    display: flex;
    align-items: center;
    padding-left: 2rem;
  }
  .cta .cta__button-link-contact .button-text::after {
    content: "";
    width: 1.5rem;
    height: 1em;
    margin-left: 1.5rem;
    background-image: url(../img/service/business/lp/icon/arrow-left-white.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 1.5rem auto;
  }
}
@media (max-width: 575.98px) {
  .cta .cta__button-link-contact {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1000px;
    font-weight: 700;
    line-height: 170%;
    background-color: var(--bg-btn-primary, #EC6633);
    color: var(--c-text-btn-primary, #fff);
    color: var(--c-text-btn-primary, #fff);
    position: relative;
    overflow: hidden;
    z-index: 0;
    width: 100%;
    height: 4.4375rem;
    font-size: 4.8vw;
  }
  .cta .cta__button-link-contact:link, .cta .cta__button-link-contact:visited, .cta .cta__button-link-contact:hover, .cta .cta__button-link-contact:active {
    color: var(--c-text-btn-primary, #fff);
  }
  .cta .cta__button-link-contact:hover {
    color: var(--c-text-btn-primary, #fff);
  }
  .cta .cta__button-link-contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: -110%;
    width: 108%;
    height: 100%;
    background: #ff7733;
    transform: skewX(-20deg);
    z-index: -1;
    transition: all 0.3s ease;
  }
  .cta .cta__button-link-contact:hover::before {
    left: -1%;
  }
  .cta .cta__button-link-contact .button-text {
    display: flex;
    align-items: center;
    padding-left: 8.5333333333vw;
  }
  .cta .cta__button-link-contact .button-text::after {
    content: "";
    width: 6.4vw;
    height: 1em;
    margin-left: 6.4vw;
    background-image: url(../img/service/business/lp/icon/arrow-left-white.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 6.4vw auto;
  }
}
@media (min-width: 1100px) {
  .cta .cta__button-link-download {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1000px;
    font-weight: 700;
    line-height: 170%;
    background-color: var(--bg-btn-secondary, #59BD4D);
    color: var(--c-text-btn-secondary, #fff);
    color: var(--c-text-btn-primary, #fff);
    position: relative;
    overflow: hidden;
    z-index: 0;
    max-width: 20rem;
    width: 100%;
    height: 4.4375rem;
    font-size: 1.125rem;
  }
  .cta .cta__button-link-download:link, .cta .cta__button-link-download:visited, .cta .cta__button-link-download:hover, .cta .cta__button-link-download:active {
    color: var(--c-text-btn-primary, #fff);
  }
  .cta .cta__button-link-download:hover {
    color: var(--c-text-btn-primary, #fff);
  }
  .cta .cta__button-link-download::before {
    content: "";
    position: absolute;
    top: 0;
    left: -110%;
    width: 108%;
    height: 100%;
    background: #65D553;
    transform: skewX(-20deg);
    z-index: -1;
    transition: all 0.3s ease;
  }
  .cta .cta__button-link-download:hover::before {
    left: -1%;
  }
  .cta .cta__button-link-download .button-text {
    display: flex;
    align-items: center;
    padding-left: 0.625rem;
  }
  .cta .cta__button-link-download .button-text::after {
    content: "";
    width: 1.5rem;
    height: 1em;
    margin-left: 1.5rem;
    background-image: url(../img/service/business/lp/icon/arrow-left-white.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 1.5rem auto;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .cta .cta__button-link-download {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1000px;
    font-weight: 700;
    line-height: 170%;
    background-color: var(--bg-btn-secondary, #59BD4D);
    color: var(--c-text-btn-secondary, #fff);
    color: var(--c-text-btn-primary, #fff);
    position: relative;
    overflow: hidden;
    z-index: 0;
    max-width: 20rem;
    width: 100%;
    height: 4.4375rem;
    font-size: 1.125rem;
  }
  .cta .cta__button-link-download:link, .cta .cta__button-link-download:visited, .cta .cta__button-link-download:hover, .cta .cta__button-link-download:active {
    color: var(--c-text-btn-primary, #fff);
  }
  .cta .cta__button-link-download:hover {
    color: var(--c-text-btn-primary, #fff);
  }
  .cta .cta__button-link-download::before {
    content: "";
    position: absolute;
    top: 0;
    left: -110%;
    width: 108%;
    height: 100%;
    background: #65D553;
    transform: skewX(-20deg);
    z-index: -1;
    transition: all 0.3s ease;
  }
  .cta .cta__button-link-download:hover::before {
    left: -1%;
  }
  .cta .cta__button-link-download .button-text {
    display: flex;
    align-items: center;
    padding-left: 0.625rem;
  }
  .cta .cta__button-link-download .button-text::after {
    content: "";
    width: 1.5rem;
    height: 1em;
    margin-left: 1.5rem;
    background-image: url(../img/service/business/lp/icon/arrow-left-white.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 1.5rem auto;
  }
}
@media (max-width: 575.98px) {
  .cta .cta__button-link-download {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1000px;
    font-weight: 700;
    line-height: 170%;
    background-color: var(--bg-btn-secondary, #59BD4D);
    color: var(--c-text-btn-secondary, #fff);
    color: var(--c-text-btn-primary, #fff);
    position: relative;
    overflow: hidden;
    z-index: 0;
    width: 100%;
    height: 4.4375rem;
    font-size: 4.8vw;
  }
  .cta .cta__button-link-download:link, .cta .cta__button-link-download:visited, .cta .cta__button-link-download:hover, .cta .cta__button-link-download:active {
    color: var(--c-text-btn-primary, #fff);
  }
  .cta .cta__button-link-download:hover {
    color: var(--c-text-btn-primary, #fff);
  }
  .cta .cta__button-link-download::before {
    content: "";
    position: absolute;
    top: 0;
    left: -110%;
    width: 108%;
    height: 100%;
    background: #65D553;
    transform: skewX(-20deg);
    z-index: -1;
    transition: all 0.3s ease;
  }
  .cta .cta__button-link-download:hover::before {
    left: -1%;
  }
  .cta .cta__button-link-download .button-text {
    display: flex;
    align-items: center;
    padding-left: 2.6666666667vw;
  }
  .cta .cta__button-link-download .button-text::after {
    content: "";
    width: 6.4vw;
    height: 1em;
    margin-left: 6.4vw;
    background-image: url(../img/service/business/lp/icon/arrow-left-white.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 6.4vw auto;
  }
}
.cta .cta__button-caption {
  text-align: center;
  line-height: 142.857%;
  font-weight: 700;
}
@media (min-width: 1100px) {
  .cta .cta__button-caption {
    font-size: 0.875rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .cta .cta__button-caption {
    font-size: 0.875rem;
  }
}
@media (max-width: 575.98px) {
  .cta .cta__button-caption {
    font-size: 3.7333333333vw;
  }
}
@media (min-width: 576px) {
  .cta .cta__button-caption {
    margin-bottom: 0.25rem;
  }
}
@media (max-width: 575.98px) {
  .cta .cta__button-caption {
    margin-bottom: 0.25rem;
  }
}
@media (min-width: 1100px) {
  .cta {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: 42.5rem;
    margin: 0 auto;
    gap: 2.5rem;
  }
  .cta > * {
    flex: 1 0 0;
  }
  .cta .cta__button {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .cta {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: 42.5rem;
    margin: 0 auto;
    gap: 2.5rem;
  }
  .cta > * {
    flex: 1 0 0;
  }
  .cta .cta__button {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 575.98px) {
  .cta {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .cta .cta__button {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.problem__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  background-image: linear-gradient(91.34deg, #00A23F 1.13%, #59BD4D 54.21%, #EFF74D 102.81%);
}
@media (min-width: 576px) {
  .problem__item {
    padding: 0.1875rem;
  }
}
@media (max-width: 575.98px) {
  .problem__item {
    padding: 0.1875rem;
  }
}

.problem__item-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 576px) {
  .problem__item-inner {
    padding: 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .problem__item-inner {
    padding: 1.5rem;
  }
}
@media (min-width: 1100px) {
  .problem__item-inner .problem__item-title {
    flex: 1 0 0;
  }
}

.problem__item-img {
  width: auto;
}
@media (min-width: 576px) {
  .problem__item-img {
    height: 8.8125rem;
  }
}
@media (max-width: 575.98px) {
  .problem__item-img {
    height: 8.8125rem;
  }
}

.solution__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 0.625rem;
  background-image: linear-gradient(91.34deg, #00A23F 1.13%, #59BD4D 54.21%, #EFF74D 102.81%);
}
@media (min-width: 576px) {
  .solution__item {
    padding: 0.125rem;
  }
}
@media (max-width: 575.98px) {
  .solution__item {
    padding: 0.125rem;
  }
}

.solution__item-img {
  height: auto;
}

.solution__item-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 576px) {
  .solution__item-inner {
    padding: 0.625rem 0.625rem 2.5rem;
  }
}
@media (max-width: 575.98px) {
  .solution__item-inner {
    padding: 1.5rem 0.625rem;
  }
}
.is-01 .solution__item-inner {
  padding-top: 1.9375rem;
}
.is-01 .solution__item-inner .solution__item-img {
  width: 8.3125rem;
  height: auto;
  margin-bottom: 0.5rem;
}
.is-02 .solution__item-inner {
  padding-top: 2.5rem;
}
.is-02 .solution__item-inner .solution__item-img {
  width: 6.8125rem;
  margin-bottom: 1.25rem;
}
.is-03 .solution__item-inner {
  padding-top: 2.9375rem;
}
.is-03 .solution__item-inner .solution__item-img {
  width: 10.9375rem;
  margin-bottom: 1.25rem;
}
.is-04 .solution__item-inner {
  padding-top: 2.6875rem;
}
.is-04 .solution__item-inner .solution__item-img {
  width: 12.8125rem;
  margin-bottom: 0.4375rem;
}
.is-05 .solution__item-inner {
  padding-top: 1.75rem;
}
.is-05 .solution__item-inner .solution__item-img {
  width: 13.4375rem;
  margin-bottom: 0.75rem;
}

.needs__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.needs__item-img {
  height: auto;
}
@media (min-width: 576px) {
  .needs__item-img {
    width: 4.375rem;
  }
}
@media (max-width: 575.98px) {
  .needs__item-img {
    width: 13.8666666667vw;
  }
}

.needs__item-notice {
  border-radius: 4px;
}

.rework__item-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .rework__item-inner {
    max-width: 25rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.rework__item-img {
  height: auto;
}
@media (min-width: 576px) {
  .rework__item-img {
    width: 16.25rem;
  }
}
@media (max-width: 575.98px) {
  .rework__item-img {
    width: 69.3333333333vw;
  }
}

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

.reason__item-number {
  width: 100%;
  background-image: url(../img/service/business/lp/pages/bg-reason-number.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: auto 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 576px) {
  .reason__item-number {
    height: 2.5rem;
  }
}
@media (max-width: 575.98px) {
  .reason__item-number {
    height: 2.5rem;
  }
}

.reason__item-title {
  background-color: #59BD4D;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 576px) {
  .reason__item-title {
    height: 2.6875rem;
  }
}
@media (max-width: 575.98px) {
  .reason__item-title {
    height: 11.4666666667vw;
  }
}

.reason__text {
  width: 100%;
  height: 100%;
  background-color: #fff;
}
@media (min-width: 576px) {
  .reason__text {
    padding: 1.25rem 0rem 0.9375rem;
  }
}
@media (max-width: 575.98px) {
  .reason__text {
    padding: 1.25rem 0rem 0.9375rem;
  }
}
@media (min-width: 576px) {
  .reason__item-04 .reason__text {
    padding-bottom: 2.875rem;
  }
}
@media (max-width: 575.98px) {
  .reason__item-04 .reason__text {
    padding-bottom: 2.875rem;
  }
}

.support-company__item,
.support-worker__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
}
@media (min-width: 576px) {
  .support-company__item,
  .support-worker__item {
    padding: 2.5rem 1.5rem 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .support-company__item,
  .support-worker__item {
    padding: 6.4vw;
  }
}

.support-company__item {
  background: rgba(236, 102, 51, 0.1);
}

.support-worker__item {
  background: rgba(0, 162, 63, 0.1);
}

.support-company__item-img,
.support-worker__item-img {
  height: auto;
}
@media (min-width: 576px) {
  .support-company__item-img,
  .support-worker__item-img {
    width: 11.5rem;
  }
}
@media (max-width: 575.98px) {
  .support-company__item-img,
  .support-worker__item-img {
    width: 49.0666666667vw;
  }
}

.cases__item {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 40px;
}

@media (max-width: 575.98px) {
  .cases__item {
    display: block;
  }
}


.cases__item-img {
  width: 360px;
  height: 340px;
  flex-shrink: 0;
}

.cases__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 450 / 280;
}
@media (max-width: 575.98px) {

.cases__item-img {
  width: 100%;
  height: auto;
  flex-shrink: 1;
}

.cases__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 450 / 280;
}

}


@media (min-width: 576px) {
  .cases__item-text {
    padding: 0 40px;
  }
}
@media (max-width: 575.98px) {
  .cases__item-text {
    padding: 1.5rem;
  }
}

.cases__item-title {
  background-image: url(../img/service/business/lp/pages/bg-case-item-title.svg);
  background-repeat: no-repeat;
  background-position: left top;
}
@media (min-width: 576px) {
  .cases__item-title {
    background-size: 1.5625rem auto;
  }
}
@media (max-width: 575.98px) {
  .cases__item-title {
    background-size: 1.5625rem auto;
  }
}
@media (min-width: 576px) {
  .cases__item-title {
    padding-top: 0.25rem;
  }
}
@media (max-width: 575.98px) {
  .cases__item-title {
    padding-top: 0.25rem;
  }
}
@media (min-width: 576px) {
  .cases__item-title {
    padding-left: 1rem;
  }
}
@media (max-width: 575.98px) {
  .cases__item-title {
    padding-left: 1rem;
  }
}

.cases__item-profile {
  display: flex;
  align-items: center;
}
@media (min-width: 576px) {
  .cases__item-profile {
    margin-top: 1rem;
  }
}
@media (max-width: 575.98px) {
  .cases__item-profile {
    margin-top: 1rem;
  }
}
@media (min-width: 576px) {
  .cases__item-profile {
    height: 3.75rem;
  }
}
@media (max-width: 575.98px) {
  .cases__item-profile {
    height: 3.75rem;
  }
}

@media (min-width: 576px) {
  .cases__item-profile-img {
    padding-right: 1rem;
  }
}
@media (max-width: 575.98px) {
  .cases__item-profile-img {
    padding-right: 1rem;
  }
}
.cases__item-profile-img img {
  height: 100%;
  width: auto;
}

.flow__item {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1100px) {
  .flow__item {
    padding-bottom: 1.25rem;
  }
  .flow__item .flow__item-title {
    flex: 1 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.flow__item-number {
  display: flex;
  justify-content: center;
}

.flow__item-number-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1000px;
  background-color: #59BD4D;
}
@media (min-width: 576px) {
  .flow__item-number-inner {
    width: 2.8125rem;
  }
}
@media (max-width: 575.98px) {
  .flow__item-number-inner {
    width: 2.8125rem;
  }
}
@media (min-width: 576px) {
  .flow__item-number-inner {
    height: 2.8125rem;
  }
}
@media (max-width: 575.98px) {
  .flow__item-number-inner {
    height: 2.8125rem;
  }
}

.flow__item:not(:last-child) {
  position: relative;
}
.flow__item:not(:last-child)::after {
  content: "";
  display: flex;
  height: 100%;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (min-width: 1100px) {
  .flow__item:not(:last-child)::after {
    width: 3.5rem;
    background-image: url(../img/service/business/lp/pages/flow-arrow-right.svg);
    background-size: 1.875rem auto;
    right: -3.5rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .flow__item:not(:last-child)::after {
    width: 100%;
    height: 4.5rem;
    left: 0;
    bottom: -4.5rem;
    background-image: url(../img/service/business/lp/pages/flow-arrow-down.svg);
  }
}
@media (max-width: 575.98px) {
  .flow__item:not(:last-child)::after {
    width: 100%;
    height: 4.5rem;
    left: 0;
    bottom: -4.5rem;
    background-image: url(../img/service/business/lp/pages/flow-arrow-down.svg);
  }
}

.problem .section-main {
  display: flex;
}
@media (min-width: 1100px) {
  .problem .section-main {
    gap: 1.5rem;
  }
  .problem .section-main > * {
    flex: 1;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .problem .section-main {
    display: flex;
    gap: 1.5rem 1.5rem;
    flex-wrap: wrap;
  }
  .problem .section-main > * {
    width: calc(50% - 1.5rem / 2);
  }
}
@media (max-width: 575.98px) {
  .problem .section-main {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.solution .solution__row {
  display: flex;
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .solution .solution__row {
    display: flex;
    gap: 2.5rem 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .solution .solution__row > * {
    width: calc(50% - 2.5rem / 2);
  }
}
@media (max-width: 575.98px) {
  .solution .solution__row {
    flex-direction: column;
    gap: 1rem;
  }
}
@media (min-width: 576px) {
  .solution .solution__row-01 {
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 575.98px) {
  .solution .solution__row-01 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 1100px) {
  .solution .solution__row-01 {
    gap: 2.5rem;
  }
  .solution .solution__row-01 > * {
    flex: 1;
  }
}
@media (min-width: 1100px) {
  .solution .solution__row-02 {
    gap: 3.25rem;
  }
  .solution .solution__row-02 > * {
    flex: 1;
  }
}
.needs .section-main {
  display: flex;
}
@media (min-width: 1100px) {
  .needs .section-main {
    display: flex;
    gap: 2.5rem 2.5rem;
    flex-wrap: wrap;
  }
  .needs .section-main > * {
    width: calc(33.3333333333% - 5rem / 3);
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .needs .section-main {
    flex-direction: column;
    align-items: center;
  }
  .needs .section-main > * {
    width: 100%;
    max-width: 25rem;
  }
  .needs .section-main > *:first-child {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .needs .section-main {
    flex-direction: column;
  }
  .needs .section-main > * {
    width: 100%;
  }
  .needs .section-main > *:first-child {
    margin-bottom: 1.5rem;
  }
}

.rework__item-wrapper {
  display: flex;
}
@media (min-width: 1100px) {
  .rework__item-wrapper {
    gap: 4.3125rem;
  }
  .rework__item-wrapper > * {
    flex: 1;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .rework__item-wrapper {
    flex-direction: column;
    gap: 4.3125rem;
  }
}
@media (max-width: 575.98px) {
  .rework__item-wrapper {
    flex-direction: column;
    gap: 4.3125rem;
  }
}

.reason .section-main {
  display: flex;
  align-items: start;
}
@media (min-width: 1100px) {
  .reason .section-main {
    gap: 3.125rem;
  }
  .reason .section-main > * {
    flex: 1;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .reason .section-main {
    display: flex;
    gap: 2.5rem 2.5rem;
    flex-wrap: wrap;
  }
  .reason .section-main > * {
    width: calc(50% - 2.5rem / 2);
  }
}
@media (max-width: 575.98px) {
  .reason .section-main {
    flex-direction: column;
  }
  .reason .section-main .reason__item {
    width: 100%;
    margin-bottom: 1.875rem;
  }
}

.support .support-company .support-section__content {
  display: flex;
}
@media (min-width: 1100px) {
  .support .support-company .support-section__content {
    gap: 2.6875rem;
  }
  .support .support-company .support-section__content > * {
    flex: 1;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .support .support-company .support-section__content {
    flex-direction: column;
    gap: 1rem;
  }
  .support .support-company .support-section__content .support-company__item {
    width: 100%;
    max-width: 31.25rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 575.98px) {
  .support .support-company .support-section__content {
    flex-direction: column;
    gap: 1rem;
  }
}
.support .support-worker .support-section__row-01,
.support .support-worker .support-section__row-02 {
  display: flex;
}
@media (min-width: 1100px) {
  .support .support-worker .support-section__row-01,
  .support .support-worker .support-section__row-02 {
    justify-content: center;
    gap: 2.6875rem;
  }
  .support .support-worker .support-section__row-01 > *,
  .support .support-worker .support-section__row-02 > * {
    flex: 1;
    max-width: 20.625rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .support .support-worker .support-section__row-01,
  .support .support-worker .support-section__row-02 {
    flex-direction: column;
    gap: 1rem;
  }
  .support .support-worker .support-section__row-01 .support-worker__item,
  .support .support-worker .support-section__row-02 .support-worker__item {
    width: 100%;
    max-width: 31.25rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 575.98px) {
  .support .support-worker .support-section__row-01,
  .support .support-worker .support-section__row-02 {
    flex-direction: column;
    gap: 1rem;
  }
}
@media (min-width: 576px) {
  .support .support-worker .support-section__row-01 {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .support .support-worker .support-section__row-01 {
    margin-bottom: 1rem;
  }
}


.flow .section-main {
  display: flex;
}
@media (min-width: 1100px) {
  .flow .section-main {
    gap: 3.5rem;
  }
  .flow .section-main > * {
    flex: 1;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .flow .section-main {
    flex-direction: column;
    gap: 4.5rem;
  }
}
@media (max-width: 575.98px) {
  .flow .section-main {
    flex-direction: column;
    gap: 4.5rem;
  }
}

.rework-cost__content {
  display: flex;
}
@media (min-width: 1100px) {
  .rework-cost__content {
    gap: 2.5rem;
  }
  .rework-cost__content > * {
    flex: 1;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .rework-cost__content {
    gap: 2rem;
  }
  .rework-cost__content > * {
    flex: 1;
  }
}
@media (max-width: 575.98px) {
  .rework-cost__content {
    flex-direction: column;
    gap: 1rem;
  }
  .rework-cost__content > * {
    width: 53.3333333333vw;
    margin-left: auto;
    margin-right: auto;
  }
}

.mv-title {
  /* opacity: 0; */
  transition: opacity 0.3s ease-in-out 0.2s;
}
.mv-title.is-active {
  opacity: 1;
}

.mv-subtitle {
  /* opacity: 0; */
  transition: opacity 0.3s ease-in-out 0.4s;
}
.mv-subtitle.is-active {
  opacity: 1;
}

.mv-number {
  /* opacity: 0; */
  transition: opacity 0.3s ease-in-out 0.6s;
}
.mv-number.is-active {
  opacity: 1;
}

@media (min-width: 1100px) {
  .mv-form-panel {
    /* opacity: 0; */
    transition: opacity 0.5s ease-in-out 0.8s, transform 0.5s ease-in-out 0.8s;
    /* transform: translateY(20px); */
  }
  .mv-form-panel.is-active {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .mv-form-panel {
    /* opacity: 0; */
    transition: opacity 0.5s ease-in-out 0s;
  }
  .mv-form-panel.is-active {
    opacity: 1;
  }
}
@media (max-width: 575.98px) {
  .mv-form-panel {
    /* opacity: 0; */
    transition: opacity 0.5s ease-in-out 0s;
  }
  .mv-form-panel.is-active {
    opacity: 1;
  }
}

.problem__item {
  /* opacity: 0; */
  transition: opacity 0.4s ease-in-out;
}
.problem__item.is-active {
  opacity: 1;
}
.problem__item:nth-of-type(1) {
  transition-delay: 0.2s;
}
.problem__item:nth-of-type(2) {
  transition-delay: 0.4s;
}
.problem__item:nth-of-type(3) {
  transition-delay: 0.6s;
}
.problem__item:nth-of-type(4) {
  transition-delay: 0.8s;
}

.solution__item {
  /* opacity: 0; */
  transition: opacity 0.4s ease-in-out;
}
.solution__item.is-active {
  opacity: 1;
}
.solution__item.is-01 {
  transition-delay: 0.2s;
}
.solution__item.is-02 {
  transition-delay: 0.4s;
}
.solution__item.is-03 {
  transition-delay: 0.6s;
}
.solution__item.is-04 {
  transition-delay: 0.8s;
}
.solution__item.is-05 {
  transition-delay: 1s;
}

.needs__item-anim {
  /* opacity: 0; */
  transition: opacity 0.5s ease-in-out;
}
.is-active .needs__item-anim {
  opacity: 1;
}
.needs__item-anim:nth-of-type(1) {
  transition-delay: 0.3s;
}
.needs__item-anim:nth-of-type(2) {
  transition-delay: 0.6s;
}
.needs__item-anim:nth-of-type(3) {
  transition-delay: 0.9s;
}

.rework__item {
  /* opacity: 0; */
  transition: opacity 0.5s ease-in-out;
}
.is-active .rework__item {
  opacity: 1;
}
.rework__item:nth-of-type(1) {
  transition-delay: 0.2s;
}
.rework__item:nth-of-type(2) {
  transition-delay: 0.4s;
}
.rework__item:nth-of-type(3) {
  transition-delay: 0.6s;
}

.reason__item {
  /* opacity: 0; */
  transition: opacity 0.5s ease-in-out;
}
.is-active .reason__item {
  opacity: 1;
}
.reason__item:nth-of-type(1) {
  transition-delay: 0.15s;
}
.reason__item:nth-of-type(2) {
  transition-delay: 0.3s;
}
.reason__item:nth-of-type(3) {
  transition-delay: 0.45s;
}
.reason__item:nth-of-type(4) {
  transition-delay: 0.6s;
}

.rework__title.is-active .color-01 {
  opacity: 1;
}

.reason__subtitle-wrapper::before, .reason__subtitle-wrapper::after {
  /* opacity: 0; */
  transition: opacity 1.5s ease-in-out;
}
.reason__subtitle-wrapper .reason__subtitle {
  /* opacity: 0; */
  transition: opacity 0.8s ease-in-out;
}
.reason__subtitle-wrapper.is-active::before, .reason__subtitle-wrapper.is-active::after {
  opacity: 1;
}
.reason__subtitle-wrapper.is-active .reason__subtitle {
  opacity: 1;
  transition: opacity 0.8s ease-in-out 0.2s;
}

.reason__header-caption {
  /* opacity: 0; */
  transition: opacity 0.3s ease-in-out 0.3s;
}
.reason__header-caption.is-active {
  opacity: 1;
}

.flow__item {
  /* opacity: 0; */
  transition: opacity 0.5s ease-in-out;
}
.is-active .flow__item {
  opacity: 1;
}
.flow__item:nth-of-type(1) {
  transition-delay: 0.2s;
}
.flow__item:nth-of-type(2) {
  transition-delay: 0.4s;
}
.flow__item:nth-of-type(3) {
  transition-delay: 0.6s;
}
.flow__item:nth-of-type(4) {
  transition-delay: 0.8s;
}

.mv .mv-eyecatch {
  color: #00A23F;
  font-weight: 500;
}
@media (min-width: 1100px) {
  .mv .mv-eyecatch {
    font-size: 0.875rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .mv .mv-eyecatch {
    font-size: 0.875rem;
  }
}
@media (max-width: 575.98px) {
  .mv .mv-eyecatch {
    font-size: 3.2vw;
  }
}
.mv .mv-eyecatch {
  display: flex;
  width: max-content;
  align-items: center;
  justify-content: center;
  border: 1px #00A23F solid;
  border-radius: 1000px;
}
@media (min-width: 576px) {
  .mv .mv-eyecatch {
    padding: 0.625rem 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .mv .mv-eyecatch {
    padding: 2.1333333333vw 3.2vw;
  }
}
.mv .mv-title {
  font-weight: 700;
}
@media (min-width: 576px) {
  .mv .mv-title {
    margin-top: 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .mv .mv-title {
    margin-top: 4.2666666667vw;
  }
}
@media (min-width: 1100px) {
  .mv .mv-title {
    font-size: 2.375rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .mv .mv-title {
    font-size: 2.375rem;
  }
}
@media (max-width: 575.98px) {
  .mv .mv-title {
    font-size: 4.5333333333vw;
  }
}
@media (min-width: 576px) {
  .mv .mv-title {
    line-height: 178%;
  }
}
@media (max-width: 575.98px) {
  .mv .mv-title {
    line-height: 178%;
  }
}
@media screen and (min-width: 1100px) and (max-width: 1200px) {
  .mv .mv-title {
    font-size: 1.875rem;
  }
}
.mv .mv-subtitle {
  font-weight: 500;
}
@media (min-width: 576px) {
  .mv .mv-subtitle {
    margin-top: 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .mv .mv-subtitle {
    margin-top: 4.2666666667vw;
  }
}
@media (min-width: 1100px) {
  .mv .mv-subtitle {
    font-size: 1rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .mv .mv-subtitle {
    font-size: 1rem;
  }
}
@media (max-width: 575.98px) {
  .mv .mv-subtitle {
    font-size: 3.7333333333vw;
  }
}
@media (min-width: 576px) {
  .mv .mv-subtitle {
    line-height: 200%;
  }
}
@media (max-width: 575.98px) {
  .mv .mv-subtitle {
    line-height: 160%;
  }
}

@media (min-width: 1100px) {
  .mv {
    height: 53.75rem;
  }
}
@media (min-width: 576px) {
  .mv .mv-number {
    padding-top: 4rem;
  }
}
@media (max-width: 575.98px) {
  .mv .mv-number {
    padding-top: 2.875rem;
  }
}
@media (min-width: 1100px) {
  .mv .mv__inner {
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 1100px) and (max-width: calc(75rem + 16px * 2)) {
  .mv .mv__inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 1100px) {
  .mv .mv__inner .mv-sec-01 {
    padding-top: 6.25rem;
    padding-right: 3.75rem;
    flex: 1 0 0;
  }
  .mv .mv__inner .mv-sec-02 {
    padding-top: 5.0625rem;
    width: 23.75rem;
  }
  .mv .mv__inner .mv-number-img {
    max-width: 35.25rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .mv .mv-sec-01 {
    padding-top: 2.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .mv .mv-sec-02 {
    padding-top: 2.5rem;
    padding-bottom: 2.1875rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .mv .mv-number {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    text-align: center;
  }
  .mv .mv-number img {
    max-width: 37.5rem;
  }
}
@media (max-width: 575.98px) {
  .mv .mv-sec-01 {
    padding-top: 2.5rem;
    padding-left: 4.2666666667vw;
    padding-right: 4.2666666667vw;
  }
  .mv .mv-sec-02 {
    padding-top: 2.5rem;
    padding-bottom: 2.1875rem;
    padding-left: 4.2666666667vw;
    padding-right: 4.2666666667vw;
  }
  .mv .mv-number {
    padding-left: 6.4vw;
    padding-right: 6.4vw;
  }
}
@media (min-width: 1100px) {
  .mv {
    position: relative;
    background-image: url(../img/service/business/lp/pages/bg-mv-pc-opa.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: auto 100%;
  }
  .mv .mv__inner {
    position: relative;
    z-index: 1;
  }
  .mv .mv__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/service/business/lp/pages/pic-mv-01.png);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: auto 100%;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .mv {
    background-image: url(../img/service/business/lp/pages/pic-mv-01-sp.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: right top;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) and (min-width: 768px) and (max-width: 1099.98px) {
  .mv {
    background-size: 70% auto;
  }
}
@media (max-width: 575.98px) {
  .mv {
    background-image: url(../img/service/business/lp/pages/pic-mv-01-sp.jpg);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: right top;
  }
}
.mv .mv-number-pic {
  background-image: url(../img/service/business/lp/pages/pic-mv-num-01.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (max-width: 1099.98px) {
  .mv .mv-number-pic {
    display: none;
  }
}
.mv .mv-number-pic {
  width: 8.75rem;
  height: 9.875rem;
}
.mv .mv-number {
  position: relative;
}
.mv .mv-number-pic {
  position: absolute;
  bottom: 0;
  right: 6rem;
}
@media screen and (max-width: 1200px) {
  .mv .mv-number-pic {
    right: 0vw;
  }
}

.mv .mv-form-panel {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1215686275);
}
@media (min-width: 1100px) {
  .mv .mv-form-panel {
    min-height: 44rem;
    height: 100%;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .mv .mv-form-panel {
    min-height: 25rem;
  }
}
@media (max-width: 575.98px) {
  .mv .mv-form-panel {
    min-height: 25rem;
  }
}

.companies {
  overflow: hidden;
}

.companies-list {
  margin-top: 30px;
  display: flex;
  align-items: center;
  -webkit-animation: infinity-scroll-left 70s linear infinite;
  animation: infinity-scroll-left 70s linear infinite;
}

.companies-list-item {
  flex: 0 0 auto;
  max-width: 297px;
  max-height: 102px;
  margin-right: 10px;
}

.companies-list-item img {
  height: 85px;
  width: auto;
  display: block;
}

.companies-list:hover {
  animation-play-state: paused;
}

/* アニメーション定義 */
@-webkit-keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
  .companies {
    top: 0;
  }

  .companies-list {
    margin-top: 10px;
    padding-bottom: 10px;
  }

  .companies-list-item {
    max-width: 297px;
    max-height: 102px;
    margin-right: 6px;
  }

  .companies-list-item img {
    height: 50px;
    width: auto;
    display: block;
  }
}


.solution {
  position: relative;
}
.solution .solution__bg {
  position: absolute;
  width: 100%;
  height: 100%;
}
@media (min-width: 1100px) {
  .solution .solution__bg {
    top: 0;
    left: 0;
  }
  .solution .solution__bg.solution__bg-sp-01, .solution .solution__bg.solution__bg-sp-02 {
    display: none;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .solution .solution__bg {
    top: 0;
    left: 0;
  }
  .solution .solution__bg.solution__bg-sp-01, .solution .solution__bg.solution__bg-sp-02 {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .solution .solution__bg.solution__bg-pc {
    display: none;
  }
  .solution .solution__bg.solution__bg-sp-01 {
    top: 0;
    right: 0;
  }
  .solution .solution__bg.solution__bg-sp-02 {
    bottom: 0;
    left: 0;
  }
}
.solution .solution__title,
.solution .solution__subtitle,
.solution .section-main {
  position: relative;
  z-index: 1;
}
@media (min-width: 1100px) {
  .solution {
    background-image: linear-gradient(-41.34deg, #00A23F 1.13%, #59BD4D 54.21%, #EFF74D 102.81%);
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .solution {
    background-image: linear-gradient(-41.34deg, #00A23F 1.13%, #59BD4D 54.21%, #EFF74D 102.81%);
  }
}
@media (max-width: 575.98px) {
  .solution {
    background: linear-gradient(299.41deg, #00A23F -0.38%, #59BD4D 54.12%, #EFF74D 104.01%), linear-gradient(0deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.06));
  }
}
.solution .solution__bg {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  mix-blend-mode: multiply;
}
@media (min-width: 576px) {
  .solution .solution__bg {
    background-image: url(../img/service/business/lp/pages/bg-solution.png);
  }
}
@media (max-width: 575.98px) {
  .solution .solution__bg.solution__bg-sp-01 {
    background-image: url(../img/service/business/lp/pages/bg-solution-sp-01.png);
    background-position: right top;
    background-size: 81.3333333333% auto;
    mix-blend-mode: normal;
  }
  .solution .solution__bg.solution__bg-sp-02 {
    background-image: url(../img/service/business/lp/pages/bg-solution-sp-02.png);
    background-position: left bottom;
    background-size: 100% auto;
  }
}

@media (min-width: 1100px) {
  .needs .needs__reference {
    width: max-content;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .needs .needs__reference {
    width: max-content;
    margin-left: auto;
    margin-right: auto;
  }
}
.needs .needs__reference th, .needs .needs__reference td {
  padding-bottom: 0.25rem;
}
.needs .needs__reference th {
  width: 3em;
}
.needs .needs__item-pic img {
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.102));
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .needs .needs__item-pic img.is-left {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .needs .needs__item-pic img.is-left {
    display: none;
  }
}
@media (min-width: 1100px) {
  .needs .needs__item-pic img.is-up {
    display: none;
  }
}
.needs .needs__item-pic__inner {
  background-color: #fff;
  border: solid 2px green;
  border-radius: 8px;
}
@media (min-width: 576px) {
  .needs .needs__item-pic__inner {
    padding: 1.4375rem 0.875rem 1.625rem 1.125rem;
  }
}
@media (max-width: 575.98px) {
  .needs .needs__item-pic__inner {
    padding: 0.625rem;
  }
}
.needs .needs__item-pic__inner {
  position: relative;
}
.needs .needs__item-pic__inner::after {
  content: "";
  position: absolute;
  background-image: url(../img/service/business/lp/pages/arrow-panel-01-left.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
}
@media (min-width: 1100px) {
  .needs .needs__item-pic__inner::after {
    width: 1.875rem;
    height: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    left: -1.75rem;
  }
}
.cases .cases__footer {
  text-align: center;
}

.rework .rework-cost__subtitle {
  display: flex;
}
@media (min-width: 1100px) {
  .rework .rework-cost__subtitle {
    align-items: center;
    gap: 1.0625rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .rework .rework-cost__subtitle {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 575.98px) {
  .rework .rework-cost__subtitle {
    flex-direction: column;
    align-items: center;
  }
}
@media (min-width: 576px) {
  .rework .rework-cost__subtitle-img {
    width: 4.875rem;
  }
}
@media (max-width: 575.98px) {
  .rework .rework-cost__subtitle-img {
    width: 20.8vw;
  }
}
.rework .rework-cost__subtitle-text {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1100px) {
  .rework .rework-cost__subtitle-text {
    margin-top: 0rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .rework .rework-cost__subtitle-text {
    margin-top: 0.25rem;
  }
}
@media (max-width: 575.98px) {
  .rework .rework-cost__subtitle-text {
    margin-top: 0.25rem;
  }
}
@media (min-width: 1100px) {
  .rework .rework-cost__subtitle-text .-sub {
    margin-top: 0.75rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .rework .rework-cost__subtitle-text .-sub {
    margin-top: 0.75rem;
  }
}
@media (max-width: 575.98px) {
  .rework .rework-cost__subtitle-text .-sub {
    margin-top: 0.75rem;
  }
}

.reason .reason__subtitle {
  text-align: center;
  font-weight: 700;
}
@media (min-width: 1100px) {
  .reason .reason__subtitle {
    font-size: 1.75rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .reason .reason__subtitle {
    font-size: 1.75rem;
  }
}
@media (max-width: 575.98px) {
  .reason .reason__subtitle {
    font-size: 5.6vw;
  }
}
@media (min-width: 576px) {
  .reason .reason__subtitle {
    line-height: 150%;
  }
}
@media (max-width: 575.98px) {
  .reason .reason__subtitle {
    line-height: 150%;
  }
}
.reason .reason__subtitle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1100px) {
  .reason .reason__subtitle {
    max-width: 26.9375rem;
    height: 6.25rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .reason .reason__subtitle {
    max-width: 26.9375rem;
    height: 6.25rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 575.98px) {
  .reason .reason__subtitle {
    height: 21.8666666667vw;
  }
}
.reason .reason__subtitle::before, .reason .reason__subtitle::after {
  content: "";
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.reason .reason__subtitle::before {
  background-image: url(../img/service/business/lp/pages/wing-left.svg);
}
@media (min-width: 576px) {
  .reason .reason__subtitle::before {
    width: 3.4375rem;
  }
}
@media (max-width: 575.98px) {
  .reason .reason__subtitle::before {
    width: 11.9413333333vw;
  }
}
.reason .reason__subtitle::after {
  background-image: url(../img/service/business/lp/pages/wing-right.svg);
}
@media (min-width: 576px) {
  .reason .reason__subtitle::after {
    width: 3.4375rem;
  }
}
@media (max-width: 575.98px) {
  .reason .reason__subtitle::after {
    width: 11.9413333333vw;
  }
}
@media (min-width: 576px) {
  .reason .reason__subtitle-wrapper {
    margin-top: 1.5625rem;
  }
}
@media (max-width: 575.98px) {
  .reason .reason__subtitle-wrapper {
    margin-top: 1rem;
  }
}
@media (min-width: 576px) {
  .reason .reason__subtitle-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 576px) and (min-width: 576px) {
  .reason .reason__subtitle-wrapper {
    height: 12.625rem;
  }
}
@media (min-width: 576px) and (max-width: 575.98px) {
  .reason .reason__subtitle-wrapper {
    height: 12.625rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .reason .reason__subtitle-wrapper {
    max-width: 40.625rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 575.98px) {
  .reason .reason__subtitle-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.1333333333vw 10.1333333333vw;
  }
  .reason .reason__subtitle-wrapper .reason__subtitle {
    order: 3;
  }
}
.reason .reason__subtitle-wrapper::before, .reason .reason__subtitle-wrapper::after {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.reason .reason__subtitle-wrapper::before {
  background-image: url(../img/service/business/lp/pages/pic-reason-01.svg);
}
@media (min-width: 1100px) {
  .reason .reason__subtitle-wrapper::before {
    width: 10.0625rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .reason .reason__subtitle-wrapper::before {
    width: 8.75rem;
  }
}
@media (max-width: 575.98px) {
  .reason .reason__subtitle-wrapper::before {
    width: 28.2666666667vw;
  }
}
@media (min-width: 1100px) {
  .reason .reason__subtitle-wrapper::before {
    height: 100%;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .reason .reason__subtitle-wrapper::before {
    height: 100%;
  }
}
@media (max-width: 575.98px) {
  .reason .reason__subtitle-wrapper::before {
    height: 35.4666666667vw;
  }
}
.reason .reason__subtitle-wrapper::after {
  background-image: url(../img/service/business/lp/pages/pic-reason-02.svg);
}
@media (min-width: 1100px) {
  .reason .reason__subtitle-wrapper::after {
    width: 9.625rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .reason .reason__subtitle-wrapper::after {
    width: 8.625rem;
  }
}
@media (max-width: 575.98px) {
  .reason .reason__subtitle-wrapper::after {
    width: 26.6666666667vw;
  }
}
@media (min-width: 1100px) {
  .reason .reason__subtitle-wrapper::after {
    height: 100%;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .reason .reason__subtitle-wrapper::after {
    height: 100%;
  }
}
@media (max-width: 575.98px) {
  .reason .reason__subtitle-wrapper::after {
    height: 34.6666666667vw;
  }
}
@media (min-width: 1100px) {
  .reason .reason__header-caption {
    margin-top: -2.125rem;
  }
}
@media (max-width: 575.98px) {
  .reason .reason__header-caption {
    margin-top: 2.6666666667vw;
  }
}

.faq {
  background-color: #FAFAFA;
}
.faq .section-main {
  display: flex;
  flex-direction: column;
  max-width: 54.625rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 576px) {
  .faq .section-main {
    margin-top: 2.5rem;
  }
}
@media (max-width: 575.98px) {
  .faq .section-main {
    margin-top: 1.5rem;
  }
}
@media (min-width: 576px) {
  .faq .section-main {
    gap: 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .faq .section-main {
    gap: 1.5rem;
  }
}
@media (min-width: 576px) {
  .faq .section-main {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media (max-width: 575.98px) {
  .faq .section-main {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.faq__item {
  background-color: #ffffff;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1019607843);
  cursor: pointer;
}
@media (min-width: 576px) {
  .faq__item {
    border-radius: 0.25rem;
  }
}
@media (max-width: 575.98px) {
  .faq__item {
    border-radius: 0.25rem;
  }
}
@media (min-width: 576px) {
  .faq__item {
    padding: 1rem 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .faq__item {
    padding: 1rem 1.5rem;
  }
}

@media (min-width: 1100px) {
  .faq__question {
    font-size: 1rem;
    font-weight: 700;
    line-height: 220%;
    letter-spacing: 0.04rem;
  }
}
@media (max-width: 1099.98px) {
  .faq__question {
    font-size: 1rem;
    font-weight: 700;
    line-height: 220%;
    letter-spacing: 0.04rem;
  }
}

.faq__question {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.faq__question .faq__question-q {
  width: max-content;
}
@media (min-width: 576px) {
  .faq__question .faq__question-q {
    margin-right: 0.625rem;
  }
}
@media (max-width: 575.98px) {
  .faq__question .faq__question-q {
    margin-right: 0.625rem;
  }
}
.faq__question .faq__question-text {
  flex: 1 0 0;
}

.faq__question-q {
  color: #59BD4D;
  font-family: Arial;
  font-weight: 700;
  line-height: 170%;
}
@media (min-width: 1100px) {
  .faq__question-q {
    font-size: 1.625rem;
  }
}
@media (max-width: 1099.98px) {
  .faq__question-q {
    font-size: 1.625rem;
  }
}

.faq__answer {
  color: #374151;
  font-family: Noto Sans JP;
  font-weight: 350;
  line-height: 150%;
}
@media (min-width: 1100px) {
  .faq__answer {
    font-size: 1rem;
  }
}
@media (max-width: 1099.98px) {
  .faq__answer {
    font-size: 1rem;
  }
}

@media (min-width: 1100px) {
  .faq__question {
    padding-right: 2.75rem;
  }
}
@media (max-width: 1099.98px) {
  .faq__question {
    padding-right: 1.75rem;
  }
}

.faq__question {
  position: relative;
}
.faq__question::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
  background-image: url(../img/service/business/lp/icon/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto auto;
}
@media (min-width: 576px) {
  .faq__question::before {
    width: 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .faq__question::before {
    width: 1.25rem;
  }
}
@media (min-width: 576px) {
  .faq__question::before {
    height: 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .faq__question::before {
    height: 1.25rem;
  }
}
.is-open .faq__question::before {
  transform: translateY(-50%) rotate(180deg);
}

.faq__answer {
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out, margin-top 0.2s ease-out;
}

.faq-item.is-open .faq__answer {
  max-height: 500px;
}
@media (min-width: 1100px) {
  .faq-item.is-open .faq__answer {
    margin-top: 24px;
  }
}
@media (max-width: 1099.98px) {
  .faq-item.is-open .faq__answer {
    margin-top: 8.5333333333vw;
  }
}

.contact {
  background-color: #FAFAFA;
}
@media (min-width: 1100px) {
  .contact {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .contact {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 575.98px) {
  .contact {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.contact .contact__inner {
  max-width: 85rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 576px) {
  .contact .contact__inner {
    padding: 4rem 1.25rem;
  }
}
@media (max-width: 575.98px) {
  .contact .contact__inner {
    padding: 2.5rem 1.3125rem;
  }
}
@media (min-width: 576px) {
  .contact .contact__inner {
    border-radius: 1rem;
  }
}
@media (max-width: 575.98px) {
  .contact .contact__inner {
    border-radius: 1rem;
  }
}
.contact .contact__inner {
  text-align: center;
  background-color: #59BD4D;
  background-image: url(../img/service/business/lp/pages/bg-contact.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media (min-width: 576px) {
  .contact .contact__subtitle {
    margin-top: 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .contact .contact__subtitle {
    margin-top: 1rem;
  }
}
@media (min-width: 576px) {
  .contact .contact-cta__title {
    margin-top: 4rem;
  }
}
@media (max-width: 575.98px) {
  .contact .contact-cta__title {
    margin-top: 2.5rem;
  }
}
.contact .cta {
  padding-left: 0px;
  padding-right: 0px;
}
@media (min-width: 576px) {
  .contact .cta {
    margin-top: 0.625rem;
  }
}
@media (max-width: 575.98px) {
  .contact .cta {
    margin-top: 0.625rem;
  }
}
@media (min-width: 576px) {
  .contact .contact__desc {
    margin-top: 2.5rem;
  }
}
@media (max-width: 575.98px) {
  .contact .contact__desc {
    margin-top: 2.375rem;
  }
}
.contact .contact__title {
  color: #fff;
  font-weight: Bold;
  text-align: center;
  line-height: 140%;
}
@media (min-width: 576px) {
  .contact .contact__title {
    font-size: 2.125rem;
  }
}
@media (max-width: 575.98px) {
  .contact .contact__title {
    font-size: 1.125rem;
  }
}
.contact .contact__subtitle {
  color: #fff;
  text-align: center;
  font-weight: Bold;
}
@media (min-width: 576px) {
  .contact .contact__subtitle {
    font-size: 1.125rem;
  }
}
@media (max-width: 575.98px) {
  .contact .contact__subtitle {
    font-size: 4.2666666667vw;
  }
}
@media (min-width: 576px) {
  .contact .contact__subtitle {
    line-height: 170%;
  }
}
@media (max-width: 575.98px) {
  .contact .contact__subtitle {
    line-height: 150%;
  }
}
.contact .contact__subtitle {
  background: #59BD4D;
  border-radius: 1000px;
  border: 1px solid #FFF;
  display: inline-block;
}
@media (min-width: 576px) {
  .contact .contact__subtitle {
    padding: 0.625rem 1.75rem;
  }
}
@media (max-width: 575.98px) {
  .contact .contact__subtitle {
    padding: 0.625rem 1.75rem;
  }
}
.contact .contact-cta__title {
  text-align: center;
  font-weight: 700;
  line-height: 170%;
}
@media (min-width: 576px) {
  .contact .contact-cta__title {
    font-size: 1.125rem;
  }
}
@media (max-width: 575.98px) {
  .contact .contact-cta__title {
    font-size: 1.125rem;
  }
}
.contact .contact__desc {
  color: #fff;
  font-weight: 700;
  line-height: 150%;
  font-weight: 500;
}
@media (min-width: 576px) {
  .contact .contact__desc {
    font-size: 0.875rem;
  }
}
@media (max-width: 575.98px) {
  .contact .contact__desc {
    font-size: 0.875rem;
  }
}
@media (min-width: 1100px) {
  .contact .contact__desc {
    text-align: center;
  }
}
@media (max-width: 1099.98px) {
  .contact .contact__desc {
    text-align: left;
  }
}
.contact .cta__button-link-contact,
.contact .cta__button-link-download {
  border: 2px solid #fff;
}

/* ===============================
   YouTube バナー & モーダル
   =============================== */

/* --- モーダル制御（フェード） --- */
.button-youtube-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;

  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, .7);
  transition: opacity .2s ease, visibility .2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-youtube-modal.is-show {
  opacity: 1;
  visibility: visible;
}

/* --- モーダル要素 --- */
.button-youtube-modal-overlay {
  position: absolute;
  inset: 0;
}

.button-youtube-modal-content {
  position: relative;
  width: 80vw;
  max-width: 800px;
  background: #000;
}

.button-youtube-modal-iframe iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
}

.button-youtube-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 32px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* --- バナーのフェード & ホバー拡大 --- */
.button-youtube-wrapper {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;

  width: 220px;
  opacity: 1;
  transition:
    opacity .3s ease,
    transform .3s ease;
}

.button-youtube-wrapper:hover {
  transform: scale(1.05);
}

.button-youtube-wrapper.is-hide {
  opacity: 0;
}

/* --- バナー中身 --- */
.button-youtube {
  background-color: #fff;
  display: block;
  cursor: pointer;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .3);
}

.button-youtube img {
  width: 100%;
  display: block;
}

.button-youtube-text {
  margin-bottom: 10px;
  display: block;
  text-align: center;
  color: #000;
  font-size: 14px;
  font-weight: 700;
}
.button-youtube:hover {
  text-decoration: none; 
}

/* --- バナーの閉じるボタン --- */
.button-close-banner {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 24px;
  height: 24px;
  background: #333;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  z-index: 1001;
}

.button-close-banner:hover {
  background: #000;
}


/* ===============================
   企業ロゴ スクロール系
   =============================== */

.companies {
  position: relative;
  top: 0;
  padding: 0;
}

.companies-list {
  margin-top: 40px;
  display: flex;
  align-items: center;
  animation: infinity-scroll-left 44s linear infinite;
}

.companies-list.list2 {
  margin-top: 10px;
  animation: infinity-scroll-right 40s linear infinite;
}

.companies-list-item {
  flex: 0 0 auto;
  max-width: 160px;
  max-height: 54px;
  margin-right: 10px;
}

.companies-list-item img {
  height: 54px;
  width: auto;
  display: block;
}

@-webkit-keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); } }

@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); } }

@-webkit-keyframes infinity-scroll-right {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0); } }

@keyframes infinity-scroll-right {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0); } }


  @media (max-width: 767px) {
  .button-youtube-wrapper {
  display: none; }
 
    .companies {
      top: 0; }
      .companies-list-item {
        max-width: 106px;
        max-height: 36px;
        margin-right: 6.6px; }
        .companies-list-item img {
          height: 36px;
          width: auto;
          display: block; }
    .download {
      margin-top: 40px; }



 }