@charset "utf-8";

/* カラー */

:root {
    --color-primary: #313131;
    --color-secondary: #30c792;
    --color-secondary-light: #E3F3ED;
    --color-secondary-dark: #155a43;
    --color-tertiary: #fff;
    --color-accent: #f16f40;
    --body-bg: #f9f9f9;
    --footer-bg: #0e6748;
    --table-bg: #f7f7f7;
}

/* フォントサイズ */

:root {
    --font-size-base: 18px;
    --font-size-small: 12px;
    --font-size-small-2: 15px;
    --font-size-small-3: 16px;
    --font-size-large: 20px;
    --font-size-large-2: 24px;
    --font-size-large-3: 26px;
    --font-size-x-large: 28px;
    --font-size-xx-large: 32px;
    --font-size-xxx-large: 36px;
    --font-size-xxxx-large: 48px;
}

/* フォント */

:root {
    --font-family-base: "Noto Sans JP", sans-serif;
    --font-family-accent: "Hiragino Kaku Gothic ProN", sans-serif;
}

/* フォントウェイト */

:root {
    --font-weight-base: 500;
    --font-weight-accent: 600;
    --font-weight-bold: 700;
}

/* ベース */

body {
    font-size: var(--font-size-base);
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-base);
    color: var(--color-primary);
    background-color: var(--body-bg);
    font-feature-settings: "palt";
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

/* ラッパー */

.wrapper {
    width: min(100% - 10%, 1000px);
    margin-inline: auto;
}

/* ロゴ */
.logo__img {
    width: 16%; /* 親要素の幅に合わせる */
    max-width: 100%; /* 親要素を超えないようにする */
    object-fit: contain; /* 全体を表示 */
}

.header__logo {
    font-size: 0.6rem; /* フォールバック */
    line-height: 1;
    white-space: nowrap;
    padding-top: 1%;
}

@media (min-width: 768px) {
    .header__logo {
        font-size: 1.2rem;
    }
}

@supports (font-size: clamp(0.4rem, 2vw, 1.2rem)) {
    .header__logo {
        font-size: clamp(0.4rem, 2vw, 1.2rem);
    }
}


.logo-container {
    display: flex;
    align-items: center;
    gap: 1%; /* ロゴとテキストの間隔を調整 */
    background-color: rgba(255,255,255,0.7);
    padding: 5px 10px;
    width: 73%;

    @media (max-width: 1024px) {
        width: 63%;
    }

    @media (max-width: 767px) {
        width: 87%;
    }
}

.logo__link {
    display: flex;
    align-items: center;
}


.footer__logo {
    width: 150px;
}

.footer__logo .logo__img {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(186deg) brightness(103%) contrast(103%);

}

.footer__logo-text {
    color: #fff;
}

@media (min-width: 768px) {
    .footer__logo {
        width: 200px;
    }
}

/* ボタン */

.btn {
    position: relative;
    text-align: center;
    width: 220px;
    max-width: 100%;
    display: inline-block;
    font-family: var(--font-family-accent);
    font-weight: var(--font-weight-accent);
    color: var(--color-tertiary);
    letter-spacing: 0.08em;
    line-height: 1.33333;
    background-color: var(--color-accent);
    border-radius: 64px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    padding-top: 8px;
    padding-right: 33px;
    padding-bottom: 8px;
    padding-left: 33px;
}

.btn::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: var(--color-tertiary);
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: 1em;
}

.header__btn {
    display: none;

    @media (min-width: 768px) {
        display: block;
    }
}

.btn--mainvisual {
    margin-top: 65px;
}

.btn--center {
    display: table;
    margin-inline: auto;
}

.btn--large {
    font-size: var(--font-size-base);
    width: 280px;
    padding-top: 12px;
    padding-bottom: 12px;

    @media (min-width: 768px) {
      font-size: var(--font-size-large-3);
      width: 420px;
      padding-top: 24px;
      padding-right: 44px;
      padding-bottom: 24px;
      padding-left: 44px;
    }
}

.btn--about {
    margin-top: 64px;

    @media (min-width: 768px) {
        margin-top: 100px;
    }
}

.btn__link {
    padding-right: 14px;
}
/* セクションヘッダー */

.section-heading {
    color: var(--color-secondary);
    font-size: var(--font-size-large);
    font-weight: var(--font-weight-accent);
    line-height: 1.34375;
    letter-spacing: 0.08em;
    font-family: var(--font-family-accent);

    @media (min-width: 768px) {
        font-size: var(--font-size-xx-large);
    }
}

.section-heading--center {
    text-align: center;
}

/* セクションヘッダーサブ */
.section-heading__sub {
    color: var(--color-secondary);
    font-size: var(--font-size-large);

    @media (min-width: 768px) {
        font-size: var(--font-size-large-3);
    }
}

.money .section-heading__sub {
    &:first-of-type {
        margin-top: 44px;

        @media (min-width: 768px) {
            margin-top: 56px;
        }
    }

    &:nth-of-type(2) {
        margin-top: 64px;

        @media (min-width: 768px) {
            margin-top: 75px;
        }
    }
}

/* セクション背景 */

.section-bg-accent {
    background-color: var(--color-secondary-light);
}

/* セクションテキスト */
.section__text-area {
    text-align: center;
    max-width: 800px;
    margin-top: 24px;
    margin-inline: auto;

    @media (min-width: 768px) {
        margin-top: 45px;
    }
}

.section__text-area--menu {
    max-width: 630px;
}

.section__text {
    word-break: keep-all; /* 単語の途中で改行しない */
    overflow-wrap: break-word; /* 必要に応じて折り返し */
    font-size: var(--font-size-small-2);
    line-height: 2;

    @media (min-width: 767px) {
        font-size: var(--font-size-base);
    }
}

/* =============================================
ヘッダー
============================================= */

.header {
    position: relative;
    width: 100%;
    max-width: 100%;
    z-index: 999;
}

.header__inner {
    width: min(100% - 5%, 1228px);
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;

    @media (min-width: 768px) {
        position: absolute;
        top: 15px;
    }
}

.icons {
    display: none;
    align-items: center;
    gap: 15px;

    @media (min-width: 768px) {
        display: flex;
    }
}

.icons__item {
    width: 55px;
    height: 55px;
}

.icons__item--facebook {
    width: 44px;
    height: 44px;
    margin-right: 4px;
}

.icons__item--x {
  width: 45px;
  height: 45px;
}

.icons__item--x img {
  border-radius: 6px;
}


.icons__link {
    display: block;
    width: 100%;
    height: 100%;
}

.icons__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: crisp-edges;
}

/* ハンバーガメニューボタン */

.menu-btn {
    display: block;
    position: relative;
    display: grid;
    place-items: center;
    width: 36px;
    height: 18px;
    cursor: pointer;
    z-index: 999;

    @media (min-width: 768px) {
        display: none;
    }

}

.menu-btn .menu-btn__line:nth-of-type(1) {
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: var(--color-secondary);
    border-radius: 10px;
    top: 0;
    transition: .4s;
    z-index: 999;
}

.menu-btn .menu-btn__line:nth-of-type(2) {
    position: absolute;
    display: block;
    width: 100%;
    height: 4px;
    background-color: var(--color-secondary);
    z-index: 999;
}

.menu-btn .menu-btn__line:nth-of-type(3) {
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: var(--color-secondary);
    border-radius: 10px;
    bottom: 0;
    transition: .4s;
    z-index: 999;
}

.menu-btn.active .menu-btn__line:nth-of-type(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-btn.active .menu-btn__line:nth-of-type(2) {
    opacity: 0;
}

.menu-btn.active .menu-btn__line:nth-of-type(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ハンバーガメニュー */

.global-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--body-bg);
    z-index: 990;
    transition: .4s;
}

.global-nav.active {
    display: block;
}

.global-nav__list {
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.global-nav__item {
    width: 80%;
    border-bottom: 1px dotted var(--color-secondary);
}

.global-nav__link {
    display: block;
    color: var(--color-secondary);
    padding-top: 30px;
    padding-bottom: 30px;
}

/* =============================================
メインビジュアル
============================================= */

.mainvisual {
    position: relative;
    width: 100%;
    height: 120vh;
    background-image: url(../img/mainvisual-bg.png);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    z-index: 1;

    @media (min-width: 1025px) {
        display: flex;
        height: 100vh;
    }
}

.mainvisual__text {
    padding: 10% 0 0 10%;
    width: 50%;

    @media (max-width: 1024px) {
        width: 100%;
        padding: 16% 0 0 9%;
    }

    & br {
        @media (max-width: 1024px) {
            display: none;
        }
    }
}

div#iju-movie {
    padding: 10% 5% 0 3%;
    width: 50%;

    @media (max-width: 1024px) {
        width: 100%;
        padding: 13% 0 0 13%;
    }

    @media (max-width: 767px) {
        padding: 13% 0 0 4%;
    }
}


div#iju-movie iframe {
    width: 100%;

    @media (max-width: 1024px) {
        width: 560px;
        height: 315px;
    }

    @media (max-width: 767px) {
        width: 96%;
        height: auto;
    }
}

section.summary.section-voices-of-workers-sp {
    display: block;

    @media (min-width: 1024px) {
        display: none;
    }

    @media (max-width: 1024px) {
        margin-top: -100px;
    }

    @media (max-width: 767px) {
        margin-top: -60px;
    }
}

section.section-voices-of-workers-sp {
    display:block;
    margin-top: 60px;
    text-align: center;

    @media (min-width: 1025px) {
        display: none;
    }

    @media (max-width: 1024px) {
        text-align: center;
    }

    @media (max-width: 768px) {
        text-align: unset;
    }
}

.mainvisual__text-main {
    width: fit-content;
    color: var(--color-tertiary);
    background-color: var(--color-secondary);
    font-size: clamp(1.5rem, 1.129rem + 1.524vw, 2.5rem);
    font-family: var(--font-family-accent);
    font-weight: var(--font-weight-accent);
    line-height: 1.55;
    letter-spacing: 0.08em;
    padding-right: 30px;
    padding-left: 20px;

    &:first-of-type {
        margin-bottom: 7px;
    }

    & br {
        @media (max-width: 767px) {
            display: block;
        }
    }
}

.mainvisual__text-sub {
    width: fit-content;
    color: var(--color-tertiary);
    font-size: clamp(0.875rem, 0.7rem + 0.6vw, 1.25rem);
    font-family: var(--font-family-accent);
    font-weight: var(--font-weight-accent);
    background-color: var(--color-secondary);
    line-height: 1.55;
    letter-spacing: 0.08em;
    padding-right: 30px;
    padding-left: 20px;
    margin-top: 19px;

    @media (min-width: 768px) {
        margin-top: 20px;
    }
}

/* =============================================
summary
============================================= */
.summary {
    height: 1100px;
    background-image: url(../img/summary-bg-sp.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 80%;
    margin-top: -72px;

    @media (min-width: 768px) {
        background-image: url(../img/summary-bg-pc.jpg);
        background-size: cover;
        background-position: 80%;
    }

    @media (max-width: 1024px) {
        margin-top: -75px;
        height: 56vh;
    }

    @media (max-width: 767px) {
        height: 647px;ｓ
        margin-top: -85px;
    }
}

.summary__inner {
    margin-left: 10%;
    padding: 18% 0 0 0%;
    max-width: 30%;

    @media (max-width: 1024px) {
        max-width: 49%;
        padding: 26% 0 0 0%;
    }

    @media (max-width: 767px) {
        padding: 30% 0 0 0%;
        max-width: 72%;
    }
}

.summary__text {
  font-size: var(--font-size-small-3);
  line-height: 2;

  @media (min-width: 768px) {
      &:first-of-type {
          margin-top: 48px;
      }
  }

  @media (min-width: 1024px) {
    font-size: var(--font-size-base);
    line-height: 2.4;
    word-break: keep-all;
    overflow-wrap: normal;
  }
}

div#voices-of-workers {
    margin-top: 2rem;
    display: none;

    @media (min-width: 1025px) {
        display: block;
      }
}

iframe#section-voices-of-workers-sp-iframe {

    @media (max-width: 767px) {
        width: 96%;
        height: auto;
    }
}

div#voices-of-workers-sp {
    padding: 0 0 0 7%;

    @media (max-width: 1025px) {
        padding: 0;
        text-align: center;
    }

    @media (max-width: 767px) {
        padding: 0px 0 0 4%;
        text-align: unset;
    }
}

/* =============================================
question
============================================= */

.question {
    padding-top: 72px;
    padding-bottom: 80px;

    @media(min-width: 768px) {
        padding-top: 150px;
        padding-bottom: 39px;
    }
}

.question__group {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 15px;
    border: 3px solid var(--color-secondary);
    border-radius: 8px;
    padding-top: 30px;
    padding-left: 15px;
    padding-bottom: 30px;
    padding-right: 0px;
    margin-top: 48px;
    justify-content: center;

    @media(min-width: 768px) {
        border: 4px solid var(--color-secondary);
        margin-top: 40px;
        flex-direction: row;
    }
}

.question__text {
    display: flex;
    gap: 10px;
    font-size: var(--font-size-small-3);
    line-height: 2.3715;

    @media (min-width: 768px) {
        gap: 15px;
        font-size: var(--font-size-x-large);
    }

    &::before {
        content: '';
        background-image: url(../img/check.png);
        background-size: contain;
        background-repeat: no-repeat;
        display: inline-block;
        width: 20px;
        height: 20px;
        vertical-align: middle;
        position: relative;
        top: 8px;

        @media (min-width: 768px) {
            width: 24px;
            height: 24px;
            top: 22px;
        }
    }
}

.question__answer {
    text-align: center;
    font-size: var(--font-size-small-3);
    line-height: 2.3715;
    letter-spacing: 0.08em;
    margin-top: 104px;
    position: relative;

    @media (min-width: 768px) {
        font-size: var(--font-size-large);
        margin-top: 124px;
    }

    &::before {
        content: '';
        display: inline-block;
        width: 120px;
        height: 50px;
        background-color: var(--color-secondary);
        clip-path: polygon(100% 0, 0 0, 50% 50%);
        position: absolute;
        top: -50px;
        left: 50%;
        transform: translateX(-50%);

        @media (min-width: 768px) {
            width: 170px;
            height: 70px;
            top: -60px;
        }
    }

}

.question__answer-accent {
    color: var(--color-accent);
    font-size: var(--font-size-large);
    font-weight: var(--font-weight-bold);

    @media (min-width: 768px) {
        font-size: var(--font-size-large-2);
    }
}


/* =============================================
content
============================================= */

.content {
    padding-top: 56px;
    padding-bottom: 72px;

    @media (min-width: 768px) {
        padding-top: 72px;
        padding-bottom: 80px;
    }
}

.media {
    display: flex;
    flex-direction: column;

    &:not(:last-child) {
        margin-top: 40px;
        margin-bottom: 43px;

        @media (min-width: 768px) {
            margin-top: 64px;
            margin-bottom: 80px;
        }
    }

    @media (min-width: 768px) {
        flex-direction: row;
    }
}

.media__img-wrapper {
    width: 98%;
    z-index: 1;
    margin-left: 15px;

    @media (min-width: 768px) {
        width: 50%;
    }
}

.media__img {
    object-fit: cover;
    width: 100%;
    height: auto;
}

.media__body {
    width: 98%;
    background-color: var(--color-tertiary);
    padding: 24px;
    margin-top: -15px;

    @media (min-width: 768px) {
        width: 50%;
        padding: 40px;
        margin-top: 30px;
        margin-left: -20px;
    }
}

.media__number {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-secondary);
    font-size: var(--font-size-small-3);

    @media (min-width: 768px) {
        font-size: var(--font-size-base);
    }

    &::before {
        content: '';
        display: inline-block;
        width: 56px;
        height: 2px;
        background-color: var(--color-secondary);
        position: relative;
        top: 1px;
    }
}

.media__title {
    color: var(--color-secondary-dark);
    font-size: var(--font-size-large);
    font-weight: var(--font-weight-bold);
    line-height: 2.15;
    letter-spacing: 0.04em;

    @media (min-width: 768px) {
        font-size: var(--font-size-x-large);
    }
}

.media__text {
    font-size: var(--font-size-small-2);
    line-height: 2;

    &:first-of-type {
        margin-top: 10px;
    }

    @media (min-width: 768px) {
        font-size: var(--font-size-base);

        &:first-of-type {
            margin-top: 20px;
        }
    }
}

.nowrap {
  display: inline-block;
  white-space: nowrap;
}

.media--reverse {
    flex-direction: column;
}

@media (min-width: 768px) {
    .media--reverse {
        flex-direction: row-reverse;
    }
}

.media--reverse .media__img-wrapper {
    width: 98%;
    z-index: 1;
    margin-left: 0;
    margin-right: 15px;

    @media (min-width: 768px) {
        width: 50%;
        margin-right: 0;
        margin-left: -15px;
    }
}

.media--reverse .media__body {
    margin-left: 15px;

    @media (min-width: 768px) {
        margin-left: 0;
    }
}

/* =============================================
about
============================================= */

.about {
    padding-top: 56px;
    padding-bottom: 72px;

    @media (min-width: 768px) {
        padding-top: 80px;
        padding-bottom: 100px;
    }
}



.slider {
    margin: 30px auto 0;
    max-width: 90%;
    height: auto;
    overflow: visible;
    position: relative;
    margin-top: 40px;
    margin-bottom: 64px;

    @media (min-width: 768px) {
        max-width: 100%;
        margin-top: 56px;
        margin-bottom: 100px;
    }
}

.slider__item {
    height: auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0px 0px 10px 0px rgba(49, 49, 49, 0.2);
    margin-left: 0;
    margin-right: 0;

    @media (min-width: 768px) {
        margin-left: 16px;
        margin-right: 16px;
    }
}

.slick-list {
    height: auto;
    padding-bottom: 30px;
}

.slider__img {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    aspect-ratio: 316 / 200;
    object-fit: cover;
    width: 100%;
}

.slider__body {
    padding-top: 10px;
    padding-right: 15px;
    padding-bottom: 29px;
    padding-left: 15px;
}

.slider__category {
    width: fit-content;
    color: var(--color-tertiary);
    background-color: var(--color-secondary);
    font-size: var(--font-size-small);
    line-height: 1.83333;
    border-radius: 24px;
    padding-top: 2px;
    padding-right: 13px;
    padding-bottom: 2px;
    padding-left: 13px;
}

.slider__title {
    font-size: var(--font-size-base);
    color: var(--color-secondary-dark);
    font-weight: var(--font-weight-bold);
    line-height: 1.35;
    margin-top: 5px;

    @media (min-width: 768px) {
        font-size: var(--font-size-small-2);
    }
}

.slider__text {
    font-size: var(--font-size-small-2);
    line-height: 1.46666;

    &::before {
        content: '';
        display: inline-block;
        width: 16px;
        height: 16px;
        background-image: url(../img/slider-icon01.png);
        background-size: contain;
        background-repeat: no-repeat;
        margin-right: 8px;
    }

    &:first-of-type {
        margin-top: 5px;
    }

    &:not(:last-of-type) {
        margin-bottom: 5px;
    }

    &:nth-of-type(2)::before {
        background-image: url(../img/slider-icon02.png);
    }

    &:nth-of-type(3)::before {
        background-image: url(../img/slider-icon03.png);
    }

}


.arrow-common {
    background-color: var(--color-accent);
    border-radius: 4px;
    z-index: 100;
    width: 30px;
    height: 80px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    @media (min-width: 768px) {
        width: 48px;
        height: 150px;
    }
}

.arrow-common.arrow-prev {
    left: -5%;

    &::after {
        content: '';
        display: inline-block;
        width: 15px;
        height: 15px;
        border-bottom: 4px solid #fff;
        border-left: 4px solid #fff;
        position: absolute;
        top: 50%;
        left: 60%;
        transform: translate(-50%, -60%) rotate(45deg);

        @media (min-width: 768px) {
            width: 25px;
            height: 25px;
        }
    }
}

.arrow-common.arrow-next {
    right: -5%;

    &::after {
        content: '';
        display: inline-block;
        width: 15px;
        height: 15px;
        border-top: 4px solid #fff;
        border-right: 4px solid #fff;
        position: absolute;
        top: 50%;
        right: 10%;
        transform: translate(-50%, -50%) rotate(45deg);

        @media (min-width: 768px) {
            width: 25px;
            height: 25px;
        }
    }
}

/* =============================================
menu
============================================= */

.menu {
    padding-top: 56px;
    padding-bottom: 72px;

    @media (min-width: 768px) {
        padding-top: 80px;
        padding-bottom: 100px;
    }
}

.cards {
    margin-top: 48px;

    @media (min-width: 768px) {
        margin-top: 65px;
    }
}

.card-wrapper {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 15px;

    @media (min-width: 768px) {
        justify-content: center;
        gap: 27px;
    }
}

.card {
    text-align: center;
    flex: 1 1 calc((100% / 2) - 15px);
    max-width: calc((100% / 2) - 15px);
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 24px;
    padding-top: 24px;
    padding-right: 18px;
    padding-bottom: 16px;
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    @media (min-width: 768px) {
        flex: 1 1 calc((100% / 4) - 27px);
        max-width: calc((100% / 4) - 27px);
    }
}

.card__img-wrapper {
    max-width: 80px;
    max-height: 80px;
    margin-inline: auto;

}

.card__img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.card__title {
    color: var(--color-secondary-dark);
    font-size: clamp(1rem, 0.954rem + 0.19vw, 1.125rem);
    font-weight: var(--font-weight-bold);
    line-height: 1.33333;
}

.card__text {
    font-size: clamp(0.938rem, 0.914rem + 0.095vw, 1rem);
    line-height: 1.74;
}

/* =============================================
money
============================================= */

.money {
    padding-top: 56px;
    padding-bottom: 80px;

    @media (min-width: 768px) {
        padding-top: 59px;
        padding-bottom: 140px;
    }
}

.money__text {
    line-height: 2;

    &:first-of-type {
        margin-top: 4px;

        @media (min-width: 768px) {
            margin-top: 20px;
        }
    }

    &:nth-of-type(3) {
        margin-top: 4px;

        @media (min-width: 768px) {
            margin-top: 12px;
        }
    }
}

.money__text-accent {
    color: var(--color-accent);
    font-size: var(--font-size-large);
    font-weight: var(--font-weight-bold);
}

/* リスト */

.money__list {
    border: 3px solid var(--color-secondary);
    border-radius: 8px;
    padding-top: 26px;
    padding-right: 20px;
    padding-bottom: 26px;
    padding-left: 20px;
    margin-top: 28px;

    @media (min-width: 768px) {
        padding-top: 34px;
        padding-right: 36px;
        padding-bottom: 38px;
        padding-left: 36px;
        margin-top: 22px;
    }
}

.money__item {
    line-height: 1.92857;
    padding-left: 1.7em;
    text-indent: -1.7em;

    &:not(:last-of-type) {
        margin-bottom: 24px;
    }
}

.money__number {
    color: var(--color-secondary);
    font-size: var(--font-size-large-2);
    font-weight: var(--font-weight-bold);
    margin-right: 16px;
}


.table__area {
    overflow-x: auto;

    @media (min-width: 1000px) {
        overflow-x: visible;
    }
}

.table {
    font-size: clamp(0.875rem, 0.829rem + 0.19vw, 1rem);
    background-color: var(--color-secondary-light);
    table-layout: fixed;
    white-space: nowrap;
    margin-top: 24px;

    @media (min-width: 768px) {
        margin-top: 40px;
    }
}

.table__header {
    color: var(--color-tertiary);
    background-color: var(--color-secondary);
}

.table__nowrap {
    white-space: nowrap;
}

.table__middle {
    vertical-align: middle;
}

.table__header-cell {
    border-right: 1px solid var(--color-tertiary);
    padding-top: 10px;
    padding-right: 30px;
    padding-bottom: 10px;
    padding-left: 30px;

    &:last-of-type {
        border-right: none;
    }
}

.table__row {
    border-bottom: 1px solid var(--color-tertiary);

    &:nth-child(2) {
        background-color: var(--table-bg);
    }

    &:last-of-type {
        border-bottom: none;
    }
}

.table__cell {
    border-right: 1px solid var(--color-tertiary);
    padding-top: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
    padding-left: 30px;

    &:last-of-type {
        border-right: none;
    }
}

.table__cell--center {
    text-align: center;
    vertical-align: middle;
}

/* =============================================
flow
============================================= */

.flow {
    position: relative;
    padding-top: 45px;
    padding-bottom: 120px;

    @media (min-width: 768px) {
        padding-top: 80px;
        padding-bottom: 150px;
    }
}

.steps {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 26px;

    @media (min-width: 768px) {
        margin-top: 64px;
    }
}

.step {
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr 1fr;
    gap: 14px;
    text-align: center;
    flex: 1 1 calc((100% / 2) - 15px);
    max-width: calc((100% / 2) - 15px);

    @media (min-width: 768px) {
        flex: 1 1 calc((100% / 4) - 27px);
        max-width: calc((100% / 4) - 27px);
    }

    &::after {
        content: '▶︎';
        font-size: var(--font-size-xxx-large);
        color: var(--color-secondary);
        position: absolute;
        top: 30%;
        right: -30px;
        z-index: 100;
    }
}

.step:nth-of-type(2) {
    &::after {
        @media (max-width: 768px) {
            content: none;
        }
    }
}

.step:last-of-type {
    &::after {
        content: none;
    }
}

.step__number {
    color: var(--color-secondary);
    font-size: var(--font-size-large-2);
    font-weight: var(--font-weight-bold);
}

.step__number-accent {
    font-size: var(--font-size-xxx-large);
}

.step__img-wrapper {
    background-color: var(--color-tertiary);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-inline: auto;
}

.step__img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* =============================================
footer
============================================= */

.footer {
    background-color: var(--footer-bg);
    padding-top: 98px;
    padding-bottom: 9px;
    position: relative;
}

.copyright {
    text-align: center;
    font-size: var(--font-size-small);
    color: var(--color-tertiary);
    margin-top: 15px;

    @media (min-width: 768px) {
        margin-top: 40px;
    }
}

.custom-shape-divider-top-1737262607 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg) translateY(1px);
}

.custom-shape-divider-top-1737262607 svg {
    position: relative;
    display: block;
    width: calc(151% + 1.3px);
    height: 29px;
    transform: rotateY(180deg);
}

.custom-shape-divider-top-1737262607 .shape-fill {
    fill: #e3f3ed;
}