:root {
  --breakpoint-xs: 576px;
  --breakpoint-sm: 768px;
  --color-primary: #0996f0;
  --color-primary-xlight: #eaf6ff;
  --color-secondary: #fff232;
  --color-gray: #4f4f4f;
  --color-gray-light: #dfdfdf;
  --color-gray-xlight: #f6f6f6;
  --color-red: #de4d4d;
}

* {
  box-sizing: border-box;
}

body {
  font-weight: 400;
  color: var(--color-gray);
  min-width: auto;
  letter-spacing: 0.04em;
  line-height: 1.75;
  font-size: 16px;
}

/* utility */
.cmn-text-color-primary {
  color: var(--color-primary) !important;
}
.cmn-text-color-secondary {
  color: var(--color-secondary) !important;
}
.cmn-text-color-gray {
  color: var(--color-gray) !important;
}
.cmn-text-color-gray-light {
  color: var(--color-gray-light) !important;
}
.cmn-text-color-gray-xlight {
  color: var(--color-gray-xlight) !important;
}
.cmn-cta-panel {
  background-color: var(--color-primary-xlight);
  padding: 70px 24px;
  @media (max-width: 768px) {
    padding: 40px 24px;
  }
  .inner {
    background-color: #fff;
    padding: clamp(32px, 3.5vw, 40px) clamp(20px, 4.5vw, 64px);
    border-radius: 24px;
  }
  h2 {
    font-size: 24px;
    color: var(--color-primary);
    margin-top: 4px;
  }
  p {
    margin-top: 8px;
  }
  .cta-panel__btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    width: 100%;

    a[class*="btn-"] {
      flex: 1 1 calc((100% - 16px) / 2);
      font-size: 18px;
      height: 78px;
      span {
        display: block;
        font-size: 12px;
        font-weight: 500;
        line-height: 1.4;
      }
    }
  }
  @media (max-width: 768px) {
    h2 {
      font-size: 20px;
    }
    .cta-panel__btns {
      flex-direction: column;
      a[class*="btn-"] {
        height: 68px;
        min-height: fit-content;
        padding: 12px 20px;
        flex: none;
        width: 100%;
      }
    }
  }
}
#contents {
  overflow-x: hidden;
}
.inner {
  margin: 0 auto;
  max-width: 1160px;
  @media (max-width: 768px) {
    max-width: 89.06vw;
    width: 100%;
  }
}
._note {
  font-size: 12px;
  color: var(--color-gray);
  line-height: 1.8;
  margin-top: 20px;
}
.container-narrow {
  margin: 0 auto;
  max-width: 928px;
  @media (max-width: 768px) {
    max-width: 100%;
  }
}
.pc-block {
  display: block;
  @media (max-width: 768px) {
    display: none;
  }
}
.sp-block {
  display: none;
  @media (max-width: 768px) {
    display: block;
  }
}
._section-body {
  margin-top: 40px;
  & ~ ._section-body {
    margin-top: 80px;
  }
  @media (max-width: 768px) {
    margin-top: 24px;
    & ~ ._section-body {
      margin-top: 40px;
    }
  }
}
._notice {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.48px;
}
section {
  padding: 0 24px;
  margin: 70px auto;
  @media (max-width: 768px) {
    padding: 0;
    margin: 40px auto;
  }
}
h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.04em;
  @media (max-width: 768px) {
    font-size: 24px;
  }
}
h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
  @media (max-width: 768px) {
    font-size: 18px;
  }
}
p {
  line-height: 1.8;
}
._text-link {
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: 600;
  &:hover {
    color: #0776bd;
  }
  &:visited,
  &:link {
    text-decoration: underline;
  }
}

/* =================================================
  mainvisual animation
================================================= */
@keyframes mv-slide-left {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes mv-fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes mv-scale-in {
  from {
    opacity: 0;
    transform: scale(1.06);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.mainvisual ._title ._line,
.mainvisual ._subtitle,
.mainvisual ._desc,
.mainvisual ._cta,
.mainvisual ._notice,
.mainvisual ._img {
  opacity: 0;
}
.mainvisual ._title ._line {
  display: block;
}
body.is-loaded {
  .mainvisual ._title ._line:nth-child(1) {
    animation: mv-slide-left 0.8s ease-out forwards;
  }
  .mainvisual ._title ._line:nth-child(2) {
    animation: mv-slide-left 0.8s ease-out forwards 0.08s;
  }
  .mainvisual ._title ._line:nth-child(3) {
    animation: mv-slide-left 0.8s ease-out forwards 0.16s;
  }
  .mainvisual ._img {
    animation: mv-scale-in 1.0s ease forwards 0.35s;
    @media (max-width: 768px) {
      animation: mv-scale-in 1.0s ease forwards 0.1s;
    }
  }
  .mainvisual ._subtitle {
    animation: mv-fade-up 0.6s ease forwards 0.35s;
  }
  .mainvisual ._desc {
    animation: mv-fade-up 0.6s ease forwards 0.5s;
  }
  .mainvisual ._cta {
    animation: mv-fade-up 0.6s ease forwards 0.65s;
  }
  .mainvisual ._notice {
    animation: mv-fade-up 0.6s ease forwards 0.8s;
  }
}
@media (prefers-reduced-motion: reduce) {
  .mainvisual ._title ._line,
  .mainvisual ._subtitle,
  .mainvisual ._desc,
  .mainvisual ._cta,
  .mainvisual ._notice,
  .mainvisual ._img {
    opacity: 1;
    animation: none;
  }
}

/* =================================================
  mainvisual
================================================= */
.mainvisual {
  margin-top: 120px;
  padding: 0;
  position: relative;
  aspect-ratio: 1862 / 624;
  @media (max-width: 1049px) {
    margin-top: 62px;
  }
  .inner {
    max-width: 1232px;
    height: 100%;
    min-height: fit-content;
    @media (max-width: 768px) {
      max-width: 100%;
      width: 100%;
    }
  }
  ._body {
    max-width: 70%;
    padding: 24px 0 40px 48px;
    position: relative;
    height: 100%;
    min-height: fit-content;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    ._cta {
      margin-top: 24px;
      display: flex;
      gap: 16px;
      a {
        white-space: nowrap;
      }
    }
    sup {
      font-size: 10px;
    }
    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100vw;
      right: 0;
      bottom: 0;
      background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 1) 75%,
        rgba(255, 255, 255, 0) 100%
      );
      z-index: -1;
    }
    &::after {
      content: "";
      background-image: url(../img/accounting/img-bg.png);
      background-repeat: no-repeat;
      background-size: contain;
      position: absolute;
      bottom: -18%;
      left: -340px;
      width: 600px;
      height: 600px;
      z-index: -1;
    }
  }
  ._title {
    font-size: max(24px, min(calc(1.76vw + 17.41px), 48px));
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.16em;
    margin-block: 20px;
  }
  ._subtitle {
    font-size: max(17px, min(calc(0.39vw + 14.54px), 20px));
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
  ._desc {
    font-size: max(13.5px, min(calc(0.39vw + 12.54px), 16px));
    line-height: 2;
    letter-spacing: 0.08em;
    margin-top: 8px;
  }
  ._notice {
    margin-top: 48px;
  }
  ._img {
    position: absolute;
    top: 0;
    left: 16rem;
    right: 0;
    width: auto;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
  }

  @media (min-width: 2039px) {
    ._img {
      height: initial;
    }
  }
  @media (max-width: 1019px) {
    ._body {
      max-width: 65%;
    }
    ._img {
      left: 10rem;
    }
  }
  @media (max-width: 780px) {
    aspect-ratio: unset;
    ._body {
      padding: 16px 24px;
      height: fit-content;
      &::before {
        left: 0;
      }
    }
    ._notice {
      font-size: 10px;
      margin-top: 24px;
    }
  }
  @media (max-width: 768px) {
    min-height: 768px;
    display: flex;
    align-items: flex-end;
    ._inner {
      height: 100%;
    }
    ._body {
      max-width: 100%;
      &::before {
        left: 0;
        background: none;
      }
      ._cta {
        margin-top: 12px;
        flex-direction: column;
        gap: 8px;
        width: 100%;
        a {
          width: 100%;
        }
      }
      ._notice {
        margin-top: 16px;
      }
    }
    ._img {
      left: 0;
      right: 0;
      top: 0;
      bottom: initial;
      height: auto;
      margin: 0;
    }
  }
}

/* =================================================
  about
================================================= */
.section-about {
  background-color: #fff;
  position: relative;
  z-index: 2;
  @media (max-width: 768px) {
    padding-top: 24px;
    margin-top: 0;
  }
  ._subtitle {
    color: var(--color-primary);
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    @media (max-width: 768px) {
      font-size: 16px;
      span {
        font-size: 14px;
      }
    }
  }
  ._contentAbout,
  ._contentStreamed {
    gap: 24px;
  }
  ._outline {
    margin-top: 24px;
  }
  ._contentStreamed {
    ._outline {
      text-align: center;
      @media (max-width: 768px) {
        text-align: left;
      }
    }
  }
  ._notice {
    display: block;
    text-align: right;
    margin-top: -16px;
    width: 100%;
    @media (max-width: 768px) {
      text-align: left;
    }
  }
  ._contentVideo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 48px 40px;
    border-radius: 24px;
    background: linear-gradient(84deg, #1da3f8 0%, #68c4ff 100%);
    ._video {
      width: 100%;
      iframe {
        width: 100%;
        min-width: 536px;
        aspect-ratio: 16 / 9;
        height: auto;
      }
      @media (max-width: 768px) {
        iframe {
          min-width: 100%;
        }
      }
    }
    ._item {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
      color: #fff;
      h3 {
        font-weight: 700;
      }
      .btn-outline {
        border: 0;
        margin-top: 16px;
      }
    }
    @media (max-width: 1022px) {
      flex-direction: column;
      padding: 32px 24px;
      ._item {
        align-items: center;
      }
    }
  }
  ._contentComparison {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    ._itemImg {
      max-width: 612px;
      overflow-x: visible;
      img {
        width: 100%;
        min-width: initial;
      }
    }
    @media (max-width: 1022px) {
      flex-direction: column;
      ._item {
        h3 {
          text-align: center;
        }
      }
    }
  }
  ._itemImg {
    display: block;
    width: 100%;
    overflow-x: auto;
    text-align: center;
    img {
      min-width: 1000px;
    }
    @media (max-width: 768px) {
      img {
        width: 100%;
        max-width: 375px;
        min-width: auto;
      }
    }
  }
}

/* =================================================
  features
================================================= */
.section-features {
  overflow: hidden;
  ._items {
    display: flex;
    flex-direction: column;
    gap: 80px;
    @media (max-width: 768px) {
      gap: 48px;
    }
  }
  ._item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: min-content auto;
    grid-template-areas:
      "visual header"
      "visual body";
    column-gap: 48px;
    &:nth-child(even) {
      grid-template-areas:
        "header visual"
        "body   visual";
      @media (max-width: 768px) {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas:
          "header"
          "visual"
          "body";
      }
    }
    @media (max-width: 768px) {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
      grid-template-areas:
        "header"
        "visual"
        "body";
      row-gap: 16px;
    }
  }
  ._itemHeader {
    grid-area: header;
    align-self: end;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    h3 {
      line-height: 1.5;
      font-weight: 700;
      @media (max-width: 768px) {
        text-align: center;
      }
    }
    @media (max-width: 768px) {
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }
  }
  ._itemVisual {
    grid-area: visual;
    overflow: visible;
    display: grid;
    place-content: center;
    --overflow-v: 10%;
    margin-block: calc(-1 * var(--overflow-v));
    img {
      --overflow: 14%;
      width: calc(100% + var(--overflow) * 2);
      max-width: none;
      margin-inline: calc(-1 * var(--overflow));
      display: block;
    }
    @media (max-width: 768px) {
      height: auto;
      margin-top: calc(-0.8 * var(--overflow-v));
      margin-bottom: calc(-0.4 * var(--overflow-v));
      img {
        --overflow: 4%;
      }
    }
  }
  ._itemBody {
    grid-area: body;
    align-self: start;
    p {
      margin-top: 16px;
    }
    ._lead {
      margin-top: 0;
    }
    ._notice {
      display: block;
      margin-top: 8px;
    }
    ._itemBanner {
      margin-top: 16px;
      display: inline-block;
      @media (max-width: 768px) {
        margin-top: 24px;
        display: block;
        width: fit-content;
        margin-inline: auto;
        img {
          max-width: 375px;
          width: 100%;
        }
      }
    }
  }
  ._feature {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: fit-content;
    color: var(--color-primary);
    span {
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.15em;
    }
    strong {
      font-size: 32px;
      font-weight: 700;
      line-height: 1;
    }
    @media (max-width: 768px) {
      flex-direction: row;
      align-items: baseline;
      gap: 6px;
      justify-content: center;
      margin: 0 auto;
      strong {
        font-size: 32px;
      }
    }
  }
  ._lead {
    display: flex;
    font-size: 18px;
    gap: 12px;
    font-weight: 500;
    align-items: center;
    &::before {
      content: "";
      display: inline-block;
      width: 32px;
      height: 1px;
      background-color: currentColor;
      flex-shrink: 0;
    }
  }
}

/* =================================================
  comparison
================================================= */
.section-comparison {
  ._grid {
    font-weight: 500;

    /* データセル */
    ._label,
    ._streamed,
    ._competitor {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    /* ---------- PC ---------- */
    @media (min-width: 769px) {
      display: grid;
      margin: 40px auto;
      padding-bottom: 48px;
      grid-template-columns: 24% 1fr 34%;

      ._row {
        display: contents;
      }
      ._row:not(:first-child):not(:last-child) {
        > * {
          position: relative;
          &:after {
            content: "";
            display: block;
            width: calc(100% - 64px);
            height: 1px;
            background-color: var(--color-gray-light);
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            margin: 0 auto;
          }
        }
      }

      /* ヘッダー */
      ._thEmpty,
      ._thCompetitor {
        padding: 24px 16px 32px;
        font-size: 18px;
        font-weight: 500;
        text-align: center;
        align-self: end;
      }
      ._thStreamed {
        padding: 24px 16px 80px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        img {
          max-height: 64px;
          width: auto;
        }
      }
      ._thCompetitor {
        line-height: 1.4;
      }

      /* データセル */
      ._label,
      ._streamed,
      ._competitor {
        padding: 24px 32px;
      }
      ._label {
        line-height: 1.8;
        border-left: 1px solid var(--color-gray-light);
      }
      ._streamed {
        background-color: var(--color-primary-xlight);
        border-left: 1px solid var(--color-primary);
        border-right: 1px solid var(--color-primary);
        padding: 48px 24px;
        font-size: 18px;
      }
      ._competitor {
        border-right: 1px solid var(--color-gray-light);
        background-color: var(--color-gray-xlight);
      }

      /* 最初の行 */
      ._row:nth-child(2) ._label {
        border-top: 1px solid var(--color-gray-light);
        border-radius: 16px 0 0 0;
      }
      ._row:nth-child(2) ._streamed {
        border-top: 1px solid var(--color-primary) !important;
        border-radius: 16px 16px 0 0;
        padding: 48px 24px 40px;
        margin-top: -48px;
      }
      ._row:nth-child(2) ._competitor {
        border-top: 1px solid var(--color-gray-light);
        border-radius: 0 16px 0 0;
      }

      /* 最終行 */
      ._row:last-child ._label {
        border-radius: 0 0 0 16px;
        border-bottom: 1px solid var(--color-gray-light);
      }
      ._row:last-child ._streamed {
        border-bottom: 1px solid var(--color-primary) !important;
        border-radius: 0 0 16px 16px;
        padding: 40px 24px 48px;
        margin-bottom: -48px;
      }
      ._row:last-child ._competitor {
        border-radius: 0 0 16px 0;
        border-bottom: 1px solid var(--color-gray-light);
      }

      ._spLabel {
        display: none;
      }
      ._icon {
        display: block;
        width: auto;
        height: 58px;
        margin-bottom: 16px;
      }
    }

    /* ---------- SP ---------- */
    @media (max-width: 768px) {
      margin-top: 32px;
      font-size: 14px;
      line-height: 1.5;

      ._rowHeader {
        display: none;
      }
      ._row {
        margin-bottom: 40px;
        &:last-child {
          margin-bottom: 0;
        }
      }
      ._label {
        font-size: 18px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 16px;
      }
      ._spSmall {
        font-size: 14px;
        font-weight: 500;
      }
      ._streamed,
      ._competitor {
        padding: 16px;
        gap: 12px;
      }
      ._streamed {
        background-color: var(--color-primary-xlight);
        border-radius: 16px 16px 0 0;
      }
      ._competitor {
        background: var(--color-gray-xlight);
        border-radius: 0 0 16px 16px;
      }
      ._spLabel {
        display: inline-block;
        font-size: 15px;
        font-weight: 700;
        line-height: 1.4;
        color: var(--color-primary);
        padding: 4px 24px;
        border-radius: 100px;
        background: #fff;
      }
      ._competitor ._spLabel {
        color: var(--color-gray);
        padding: 4px 16px;
      }
    }

    /* ---------- 共通コンテンツ ---------- */
    ._flow {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 6px;
      list-style: none;
      margin: 0;
      padding: 0;
      ._step {
        text-align: center;
        &:not(:first-child)::before {
          content: "→";
          font-size: 16px;
          line-height: 1;
          margin-right: 6px;
        }
      }
      @media (max-width: 768px) {
        ._step {
          white-space: normal;
        }
      }
    }

    ._accent {
      color: var(--color-primary);
      font-weight: 700;
      font-size: 22px;
      @media (max-width: 768px) {
        font-size: 16px;
      }
    }
  }
}

/* =================================================
  results
================================================= */
.section-results {
  ._cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;

    img {
      width: 100%;
      height: auto;
      display: block;
      align-self: start;
    }

    @media (max-width: 768px) {
      grid-template-columns: 1fr;
      justify-items: center;

      img {
        max-width: 420px;
        width: 100%;
      }
    }
  }
}

.section-case {
  ._case {
    border: 1px solid var(--color-gray-light);
    border-radius: 24px;
    padding: 32px 24px;
    @media (max-width: 768px) {
      padding: 24px 20px;
    }
    ._header {
      display: flex;
      gap: 24px;
      align-items: flex-start;
      padding-bottom: 24px;
      border-bottom: 1px solid var(--color-gray-light);
      @media (max-width: 768px) {
        flex-direction: column;
      }
      ._image {
        flex: 0 0 285px;
        aspect-ratio: 285 / 160;
        @media (max-width: 768px) {
          flex: 0 0 100%;
        }
        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          border-radius: 8px;
        }
      }
      ._container {
        ._title {
          font-size: 20px;
          font-weight: 600;
          margin: 0;
        }
        ._name {
          font-size: 14px;
          margin-top: 8px;
          line-height: 1.4;
        }
        ._info {
          margin-top: 8px;
          display: flex;
          flex-direction: column;
          gap: 8px;
          ._dateSet {
            display: flex;
            gap: 8px 16px;
          }
          ._date {
            font-size: 14px;
            display: flex;
            gap: 8px;
            align-items: center;
            dt {
              padding: 2px 8px;
              background-color: var(--color-gray-xlight);
              border-radius: 2px;
            }
          }
          @media (max-width: 768px) {
            ._dateSet {
              flex-direction: row;
            }
          }
        }
      }
    }
    ._body {
      padding-top: 24px;
      ._tag {
        font-size: 14px;
        color: var(--color-primary);
        background-color: var(--color-primary-xlight);
        border-radius: 2px;
        padding: 4px 8px;
        line-height: 1;
        font-weight: 500;
        width: fit-content;
      }
      ._comment {
        p {
          font-size: 16px;
          margin-top: 8px;
        }
      }
    }
  }

  ._subCases {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;

    @media (max-width: 768px) {
      grid-template-columns: 1fr;
    }

    ._case {
      margin-top: 0;
      padding: 24px;

      @media (min-width: 769px) {
        ._header {
          display: grid;
          grid-template-columns: 180px 1fr;
          column-gap: 16px;
          row-gap: 16px;

          ._image {
            flex: none;
            aspect-ratio: 180 / 130;
            grid-row: 2;
            grid-column: 1;
          }

          ._container {
            display: contents;

            ._title {
              grid-row: 1;
              grid-column: 1 / -1;
              line-height: 1.6;
            }
            ._info {
              grid-row: 2;
              grid-column: 2;
              margin-top: 0;
              flex-direction: column;
              gap: 8px;
              ._dateSet {
                flex-direction: column;
              }
            }
          }
        }
      }
    }
  }
}

.section-price {
  ._sectionDescription {
    font-weight: bold;
    text-align: center;
    margin-top: 40px;
    font-size: 24px;
    color: var(--color-primary);
    @media (max-width: 768px) {
      font-size: 20px;
      margin-top: 32px;
    }
  }
  ._price {
    margin-top: 24px;
    ._header {
      ._list {
        display: flex;
        flex-wrap: wrap;
        @media (max-width: 768px) {
          row-gap: 20px;
        }
        ._item {
          @media (min-width: 769px) {
            flex: 0 0 25%;
            & + ._item {
              border-left: 1px solid var(--color-gray-light);
            }
          }
          @media (max-width: 768px) {
            flex: 0 0 50%;
            &:nth-child(even) {
              border-left: 1px solid var(--color-gray-light);
            }
          }
          dt,
          dd {
            font-size: 20px;
            font-weight: bold;
            text-align: center;
            @media (max-width: 768px) {
              font-size: 18px;
            }
          }
          dd {
            span {
              font-size: 80px;
              line-height: 1;
              color: var(--color-primary);
            }
            small {
              display: block;
              font-size: 12px;
              font-weight: 400;
            }
          }
        }
      }
    }
    ._body {
      margin-block: 32px 40px;
      ._list {
        display: flex;
        flex-wrap: wrap;
        column-gap: 32px;
        row-gap: 20px;
        @media (max-width: 768px) {
          column-gap: 16px;
          row-gap: 8px;
        }
        ._item {
          font-size: 18px;
          font-weight: bold;
          display: flex;
          align-items: center;
          gap: 8px;
          &::before {
            content: "";
            display: block;
            width: 24px;
            height: 24px;
            background-image: url(../img/second/combination/icon-check.svg);
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
          }
        }
      }
    }
  }
  ._promotion {
    margin-top: 40px;
    border: 1px solid var(--color-gray-light);
    border-radius: 10px;
    padding: 24px 24px 24px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    @media (max-width: 768px) {
      flex-direction: column;
      gap: 8px;
      margin-top: 24px;
    }
    ._icon {
      flex-shrink: 0;
      width: 64px;
      height: 64px;
      background-color: var(--color-primary-xlight);
      border-radius: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    p {
      font-size: 16px;
      line-height: 1.8;
    }
    ._text-link {
      font-weight: 500;
    }
  }
  ._banner {
    margin-top: 40px;
    display: block;
    @media (max-width: 768px) {
      margin-top: 24px;
    }
    img {
      width: 100%;
      height: auto;
    }
  }
}

/* =================================================
  FAQ
================================================= */
.section-faq {
  background-color: var(--color-primary-xlight);
  padding: 70px 24px;
  @media (max-width: 768px) {
    padding: 40px 24px;
  }
  .list-faq {
    display: grid;
    gap: 20px;
    ._item {
      dt,
      dd {
        border-radius: 10px;
        padding: 16px 24px;
        display: flex;
        @media (max-width: 768px) {
          padding: 16px;
        }
        &::before {
          font-size: 18px;
          font-weight: bold;
          margin-right: 16px;
          margin-top: -4px;
          @media (max-width: 768px) {
            margin-right: 8px;
          }
        }
      }
      dt {
        font-weight: bold;
        background-color: #fff;
        &::before {
          content: "Q.";
          color: var(--color-primary);
        }
      }
      dd {
        &::before {
          content: "A.";
          color: var(--color-red);
        }
      }
    }
  }
}

/* =================================================
  flow
================================================= */
.section-flow {
  ._flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 86px;
    @media (max-width: 768px) {
      row-gap: 64px;
      grid-template-columns: 1fr;
      grid-auto-flow: row;
      justify-content: center;
    }
    ._step {
      display: grid;
      grid-row: span 3;
      grid-template-rows: subgrid;
      justify-items: center;
      @media (max-width: 768px) {
        display: flex;
        flex-direction: column;
        align-items: center;
        grid-row: auto;
        gap: 24px;
      }
    }
    ._container {
      display: contents;
      @media (max-width: 768px) {
        display: block;
        text-align: center;
      }
    }
    ._title {
      font-size: 18px;
      font-weight: bold;
      line-height: 1.5;
      text-align: center;
      padding-top: 24px;
      align-self: start;
      @media (max-width: 768px) {
        padding-top: 0;
        align-self: auto;
      }
    }
    ._description {
      margin-top: 16px;
      text-align: center;
      align-self: start;
      @media (max-width: 768px) {
        align-self: auto;
        margin-top: 8px;
      }
    }
    ._image {
      position: relative;
      text-align: center;
      img {
        width: 100%;
        height: auto;
      }
      @media (max-width: 768px) {
        img {
          max-width: 320px;
          width: 50%;
        }
      }
    }
    > ._step:not(:first-child) {
      ._image {
        &::before {
          content: "";
          display: inline-block;
          background-image: url(../img/accounting/img-flow-arrow.svg);
          width: 22px;
          height: 22px;
          background-size: contain;
          background-repeat: no-repeat;
          background-position: center;
          position: absolute;
          top: 0;
          bottom: 0;
          left: -54px;
          margin: auto;
          @media (max-width: 768px) {
            transform: rotate(90deg);
            top: -46px;
            bottom: auto;
            left: 0;
            right: 0;
            margin: auto;
          }
        }
      }
    }
  }
}

/* =================================================
  news
================================================= */
.section-news {
  background-color: var(--color-primary-xlight);
  padding: 70px 24px;
  margin-bottom: 0;
  @media (max-width: 768px) {
    padding: 40px 24px;
  }
  .news-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    .news-single {
      display: flex;
      gap: 40px;
      padding: 24px;
      background-color: #fff;
      border-radius: 10px;
      color: var(--color-gray);
      @media (max-width: 768px) {
        padding: 16px;
        flex-direction: column;
        gap: 4px;
      }
      time {
        @media (max-width: 768px) {
          font-size: 14px;
        }
      }
      p {
        font-weight: 500;
      }
      &:hover {
        color: var(--color-primary);
        opacity: 0.8;
      }
    }
  }
}

/* =================================================
  fixed-cta
================================================= */
.fixed-cta {
  display: none;
  @media (max-width: 768px) {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    &.is-visible {
      transform: translateY(0);
    }
    padding: 12px 24px;
    background-color: #fff;
    box-shadow: 0 -4px 10px 0 rgba(0, 26, 99, 0.1);
    text-align: center;
    z-index: 99;
    p {
      font-size: 14px;
      font-weight: 500;
      line-height: 1;
      margin-bottom: 8px;
    }
    a {
      padding: 12px 20px;
      margin: 0 auto;
      min-width: initial;
      max-width: 320px;
    }
    ._number {
      font-size: 18px;
      display: flex;
      gap: 8px;
      justify-content: center;
      align-items: center;
      &:before {
        content: "";
        display: block;
        width: 16px;
        height: 16px;
        background-image: url(../img/common/icon-phone.svg);
        background-size: contain;
        background-repeat: no-repeat;
      }
    }
    ._info {
      display: block;
      font-size: 11px;
      font-weight: 500;
      line-height: 1.4;
      letter-spacing: 0;
    }
  }
}
#helpfeel-element {
  display: none;
}
@media (max-width: 768px) {
  #footer {
    background: #4f4f4f;
    padding-bottom: 110px;
  }
}