/* reset.css */

/* 1. 기본 마진/패딩 제거 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

/* 2. 문서 전체 폰트와 배경 초기화 */
html,
body {
  height: 100%;
  font-family: sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background: #fff;
  color: #38281e;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 3. 리스트 초기화 */
ul,
ol {
  list-style: none;
}

/* 4. 링크 초기화 */
a {
  text-decoration: none;
  color: inherit;
}

/* 5. 이미지 초기화 */
img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
}

/* 6. 폼 요소 초기화 */
input,
button,
textarea,
select {
  font: inherit;
  border: none;
  background: none;
  outline: none;
  color: inherit;
}

/* 7. 버튼 커서 */
button {
  cursor: pointer;
}

/* 8. 테이블 초기화 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 9. strong, em 초기화 */
strong {
  font-weight: bold;
}
em {
  font-style: italic;
}

:root {
  --max-content-width: 1200px;
  --section-gutter: 24px;
  --section-gutter-sp: 20px;

  --color-btn-contact: #de7800;
  --color-btn-contact-hover: #ff9110;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
}
main {
  padding: 0;
  margin: 0;

  font-family: 'Noto Sans JP', sans-serif;
}

b {
  font-weight: 500;
}

#wpadminbar {
  position: absolute !important;
}

.pc-none {
  display: none;
}

.sp-none {
  display: block;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

@media (max-width: 768px) {
  .pc-none {
    display: block;
  }

  .sp-none {
    display: none;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.9);

  .header-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 24px;
    min-width: 0;

    @media (max-width: 940px) {
      max-width: 100%;
      padding: 0;
      height: 86px;
    }

    @media (max-width: 700px) {
      height: 60px;
    }

    .header__right {
      min-width: 0;
    }

    .header__logo {
      min-width: 0;
      flex-shrink: 0;

      a {
        @media (max-width: 940px) {
          margin-left: 10px;
        }

        .logo {
          @media (max-width: 700px) {
            width: 40vw;
            padding: 5px 0;
          }
        }
      }
    }

    .header__right {
      display: flex;
      align-items: center;
      gap: 20px;

      @media (max-width: 700px) {
        gap: 7px;
      }

      .free-dial {
        color: #38281e;

        .free-dial__top {
          .free-dial__icon {
            margin-bottom: -4px;

            @media (max-width: 700px) {
              width: 32px;
            }
          }
        }

        .free-dial__number {
          font-size: 30px;
          font-weight: bold;
          margin-bottom: 2px;

          @media (max-width: 700px) {
            font-size: 15px;
          }
        }

        .free-dial__text {
          font-size: 14px;

          @media (max-width: 700px) {
            font-size: 7px;
          }

          .big_text {
            font-size: 18px;

            @media (max-width: 700px) {
              font-size: 9px;
            }
          }
        }
      }

      .header-contact {
        .header-contact__link {
          position: relative;
          display: inline-block;
          padding: 16px 50px;
          background-color: #de7800; /* 버튼 색상 */
          color: #fff;
          text-decoration: none;
          border-radius: 40px;
          font-size: 20px;

          @media (max-width: 940px) {
            display: none !important;
          }
        }

        .header-contact__link:hover {
          background-color: var(--color-btn-contact-hover);
          transition: 0.2s ease-in-out;
        }

        .header-contact__link::after {
          position: absolute;
          font-family: 'Material Icons';
          content: 'chevron_right'; /* 아이콘 이름 */
          font-size: 29px;
          right: 16px; /* 버튼 내부 오른쪽 여백 */
          top: 50%;
          transform: translateY(-50%);
          transition: 0.2s ease-in-out;
        }

        .header-contact__link:hover::after {
          right: 8px;
          transition: 0.2s ease-in-out;
        }

        .header-content__link-sp {
          display: none;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          background-color: #de7800; /* 버튼 색상 */
          color: #fff;
          font-size: 10px;
          width: clamp(40px, 60px, 86px);
          height: clamp(40px, 60px, 86px);

          @media (max-width: 940px) {
            display: flex;
            width: 86px;
            height: 86px;
          }

          @media (max-width: 700px) {
            width: 60px;
            height: 60px;
          }

          .header-contact__icon {
            margin-bottom: 7px;
          }
        }
      }
    }
  }
}

.section-hero {
  position: relative;
  overflow: hidden;
  height: 98vh;

  @media (max-width: 768px) {
    height: auto !important;
  }

  .hero-wrapper {
    position: relative;
    display: flex;
    max-width: var(--max-content-width);
    padding: 0 var(--section-gutter);
    margin: 0 auto;

    .ceo-name {
      position: absolute;
      top: 330px;
      right: 0;
      font-size: 14px;
      line-height: 20px;
      font-weight: 500;
      background-color: rgba(0, 0, 0, 0.6);
      color: #fff;
      padding: 12px 8px;

      @media (max-width: 640px) {
        background-color: transparent !important;
        font-size: 9px;
        right: 20px;
        top: 440px;
      }
    }

    .hero-lead {
      position: absolute;
      top: 172px;
      width: 100%;
      max-width: 626px;
      flex-direction: column;
      padding: 0 var(--section-gutter);

      @media (max-width: 640px) {
        display: flex;
        flex-direction: column;
        justify-content: center;
        top: 85px;
        left: 50%;
        transform: translateX(-50%);
      }

      .hero-lead__target {
        font-size: clamp(16px, 24px, 28px);
        color: #4da635;
        background-color: #fff;
        padding-top: 16px;
        padding-bottom: 15px;
        text-align: center;
        margin-bottom: 23px;
        font-weight: 500;
        width: 100%;

        @media (max-width: 768px) {
          font-size: clamp(16px, 3vw, 3vw);
          padding-top: 10px;
          padding-bottom: 9px;
          text-align: center;
          width: 100%;
          margin-bottom: 28px;
        }
      }

      .hero-lead__mainlead {
        position: relative;
        color: #fff;
        margin-bottom: 26px;

        .quote {
          position: absolute;
          font-size: 64px;
          font-family: 'BIZ UDPGothic';

          @media (max-width: 640px) {
            font-size: 40px;
          }
        }

        .quote--open {
          top: 0;
          left: -8px;
        }

        .quote--close {
          top: 74px;
          right: -8px;
        }

        .hero-lead__mainlead-text {
          font-size: 74px;
          text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          letter-spacing: -0.025em;
          text-align: center;

          @media (max-width: 640px) {
            font-size: 46px;
            padding-left: 18px;
            padding: 0 5px;
            width: unset;
            text-align: center;
          }
        }
      }

      .hero-lead__sublead {
        color: #fff;
        font-size: 26px;
        text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
        margin-bottom: 26px;
        width: fit-content;

        @media (max-width: 640px) {
          font-size: 16px;
        }
      }

      .hero-lead__merit {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
        width: 586px;
        margin-bottom: 29px;
        margin: 0 auto 29px;

        @media (max-width: 640px) {
          width: 100%;
          padding: 0;
          gap: 20px;
        }

        .hero-lead__merit-title {
          display: flex;
          justify-content: center;
          align-items: center;
          width: 160px;
          height: 160px;
          border-radius: 80px;
          border: 2px solid #fff;
          font-size: 30px;
          color: #fff;
          text-align: center;
          line-height: 38px;

          @media (max-width: 640px) {
            width: 100%;
            height: 100%;
            aspect-ratio: 1 / 1;
            font-size: 18px;
            font-weight: 600;
            line-height: 24px;
          }
        }
      }

      .hero-lead__btn-contact {
        width: 586px;
        text-align: center;
        z-index: 100;
        margin: 0 auto;

        @media (max-width: 640px) {
          display: none;
        }
        .hero-lead__btn-link {
          position: relative;
          display: inline-block;
          width: 480px;
          padding: 26px 0;
          text-align: center;
          color: #fff;
          background-color: var(--color-btn-contact);
          border-radius: 80px;
          text-decoration: none;
          font-size: 28px;
          transition: 0.2s ease-in-out;
        }

        .hero-lead__btn-link:hover {
          background-color: var(--color-btn-contact-hover);
          transition: 0.2s ease-in-out;
        }

        .hero-lead__btn-link::after {
          position: absolute;
          font-family: 'Material Icons';
          content: 'chevron_right';
          font-size: 29px;
          right: 16px;
          top: 50%;
          transform: translateY(-50%);
          transition: right 0.2s ease-in-out;
        }
        .hero-lead__btn-link:hover::after {
          right: 8px;
          transition: right 0.2s ease-in-out;
        }
      }
    }
  }

  .hero-img {
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;

    @media (max-width: 768px) {
      height: auto !important;
    }
  }
}

.section-message {
  padding: 60px 0;
  text-align: center;

  @media (max-width: 768px) {
    padding: 60px 0 0 0;
  }

  .message__head {
    max-width: var(--max-content-width);
    padding: 0 var(--section-gutter);
    text-align: center;
    margin: 0 auto 53px;

    @media (max-width: 768px) {
      padding: 0 var(--section-gutter-sp);
    }

    .message__headline {
      font-size: 32px;
      font-weight: 400;
      margin-bottom: 28px;

      @media (max-width: 586px) {
        font-size: 20px;
      }
    }
  }

  .message__body {
    position: relative;
    overflow-x: hidden;

    .message__message {
      max-width: var(--max-content-width);
      padding: 0 var(--section-gutter);
      font-size: 20px;
      line-height: 2.4;
      font-weight: 300;
      margin: 0 auto;

      @media (max-width: 768px) {
        padding: 0 var(--section-gutter-sp);
        font-size: 16px;
        line-height: 38px;
      }
    }

    .message__swiper {
      position: relative;
      height: 787px;
      overflow: hidden;
      background-image: url('../../tasuki/images/pages/lp/bg_message.png');
      background-repeat: repeat-x;
      background-size: 100% 100%; /* 세로에 맞추고 가로는 자동 */
      background-position: 0 50%;
    }

    .marquee-wrapper {
      padding-top: 90px;
      width: 100%;
      overflow: hidden;
      position: relative;
      height: 600px;
    }

    .marquee-track {
      display: flex;
      width: fit-content;
    }

    .marquee-track img {
      height: 600px;
      width: auto;
      display: block;
      flex-shrink: 0;
      object-fit: cover;
    }
  }

  .wave-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  svg {
    width: 100%;
    height: 100%;
  }
  path {
    fill: none;
    stroke-width: 1;
  }
}

.section-trouble {
  padding: 0 0 100px 0;

  @media (max-width: 768px) {
    padding: 0 0 80px 0;
  }

  .trouble__head {
    .trouble__headline {
      font-size: 36px;
      font-weight: 300;
      text-align: center;
      margin-bottom: 50px;
      display: flex;
      justify-content: center;
      align-items: baseline;

      @media (max-width: 980px) {
        font-size: 23px;
        flex-direction: column;
        align-items: center;
      }

      .headline-1 {
        margin-bottom: 30px;
      }

      .headline-2 {
        margin-bottom: 20px;
      }

      .big-text {
        font-size: 48px;
        @media (max-width: 768px) {
          font-size: 32px;
        }
      }

      .big-text.accent {
        position: relative;
      }

      .big-text.accent::before {
        content: '●';
        position: absolute;
        color: #e86b00;
        font-size: 8px;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);

        @media (max-width: 768px) {
          top: -6px;
        }
      }
    }
  }

  .trouble__body {
    margin: 0 auto;
    text-align: center;
    font-weight: 300;
    padding: 0 var(--section-gutter-sp);

    .trouble__list {
      display: inline-block;
      padding: 35px 58px 34px;
      background-color: #ebe9e6;
      text-align: left;

      @media (max-width: 768px) {
        padding: 38px 12px;
        width: 100%;
      }

      .trouble__list-item {
        font-size: 24px;
        display: flex;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 20px;
        line-height: 1.5;

        @media (max-width: 768px) {
          font-size: 16px;
          gap: 6px;
          margin-bottom: 16px;
        }

        .icon_check {
          width: 24px;
          margin-top: 6px;

          @media (max-width: 768px) {
            width: 18px;
          }
        }
      }

      .trouble__list-item:last-child {
        margin-bottom: 0;
      }
    }
  }
}

.section-results {
  position: relative;
  background-image: url('../../tasuki/images/pages/lp/bg_results.png');
  background-size: cover;
  color: #fff;
  padding: 90px 0 100px;
  z-index: -1;

  @media (max-width: 768px) {
    padding: 50px 20px 118px;
    background-image: url('../../tasuki/images/pages/lp/bg_results_sp.png');
  }

  .results__head {
    position: relative;
    text-align: center;
    margin-bottom: 58px;

    @media (max-width: 768px) {
      margin-bottom: 42px;
    }

    .results__headline {
      font-size: 36px;
      font-weight: 400;
      line-height: 56px;

      @media (max-width: 768px) {
        font-size: 20px;
        line-height: 34px;
      }
    }
  }

  .result__duration {
    position: absolute;
    bottom: 20px;
    right: 80px;
    @media (max-width: 768px) {
      right: 20px;
    }
  }

  .results__body {
    position: relative;

    .results__list {
      display: flex;
      justify-content: center;
      gap: 50px;

      @media (max-width: 768px) {
        flex-direction: column;
        gap: 20px;
      }

      .result__item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        border: 1px solid #fff;
        width: 260px;
        height: 160px;
        background-color: rgba(0, 0, 0, 0.6);

        @media (max-width: 768px) {
          width: 100%;
          height: 120px;
        }

        text-align: center;
        .result__item-category {
          font-size: 24px;
          margin-bottom: 12px;
          @media (max-width: 768px) {
            font-size: 18px;
          }
        }

        .result__item-accent {
          font-size: 80px;
          font-weight: 600;
          @media (max-width: 768px) {
            font-size: 60px;
          }
        }

        .result__item-text {
          font-size: 30px;
          @media (max-width: 768px) {
            font-size: 24px;
          }
        }
      }
    }
  }
}

.section-results::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(62, 53, 0, 0.7);
  z-index: 0;
  mix-blend-mode: multiply;

  @media (max-width: 768px) {
    background-color: transparent;
  }
}

.section-strengths {
  position: relative;
  padding: 120px 0 300px;

  @media (max-width: 1000px) {
    padding: 80px 20px 150px;
  }

  .strengths__head {
    max-width: 1200px;
    margin: 0 auto 60px;

    @media (max-width: 768px) {
      margin: 0 auto 47px;
    }

    .strengths__headline {
      font-size: 50px;
      font-weight: 400;
      margin: 0 auto;
      text-align: center;
      margin-bottom: 27px;

      @media (max-width: 1000px) {
        font-size: 28px;
        margin-bottom: 12px;
      }
    }

    .strengths__headline-en {
      font-size: 18px;
      letter-spacing: 0.5em;
      color: #316732;
      text-align: center;
      display: inline-block;
      width: 100%;

      @media (max-width: 1000px) {
        font-size: 13px;
      }
    }
  }

  .strengths__body {
    max-width: 1200px;
    margin: 0 auto;

    .strengths__message {
      font-size: 20px;
      line-height: 48px;
      text-align: center;
      font-weight: 300;
      margin-bottom: 88px;

      @media (max-width: 1000px) {
        font-size: 16px;
        line-height: 28px;
        text-align: left;
        margin-bottom: 48px;
      }
    }

    .strengths__list {
      padding: 0 34px;
      display: flex;
      flex-direction: column;
      gap: 50px;

      @media (max-width: 1000px) {
        padding: 0;
      }

      .strength__item {
        background-color: #fff;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        padding: 75px 50px 50px 50px;

        @media (max-width: 1000px) {
          padding: 75px 20px 50px;
        }
      }

      .strength__item-header {
        margin-bottom: 46px;

        @media (max-width: 1000px) {
          margin-bottom: 30px;
        }

        h3 {
          font-size: 30px;
          font-weight: 300;
          display: flex;
          align-items: baseline;

          @media (max-width: 1000px) {
            flex-direction: column;
            align-items: center;
            font-size: 22px;
            line-height: 36px;
          }
        }

        .strenth__list-number {
          position: relative;
          font-size: 50px;
          color: #316732;
          border-right: 1px solid #316732;
          font-weight: 500;
          margin-right: 30px;
          padding-right: 30px;
          padding-left: 12px;
          height: 40px;
          display: flex;
          align-items: flex-end;

          @media (max-width: 1000px) {
            font-size: 36px;
            padding-left: 0;
            border-right: 0;
            margin-right: 0;
            padding-right: 0;
            border-bottom: 1px solid #316732;
            padding-bottom: 10px;
            margin-bottom: 30px;
            justify-content: center;
            align-items: center;
          }
        }

        .strenth__list-number::before {
          content: 'Strengths';
          position: absolute;
          top: -24px;
          left: calc(50% - 9px);
          transform: translateX(-50%);
          font-size: 12px;
          letter-spacing: 0.2em;

          @media (max-width: 1000px) {
            left: 50%;
            top: -34px;
            font-size: 13px;
          }
        }
      }

      .strength__item-body {
        display: flex;
        justify-content: space-between;
        gap: 20px;

        @media (max-width: 1000px) {
          flex-direction: column;
        }

        .strength__item-desc,
        .strength__item-img {
          width: 50%;
          flex-shrink: 1;

          @media (max-width: 1000px) {
            width: 100%;
          }
        }

        .strength__item-desc {
          font-size: 18px;
          line-height: 36px;
          font-weight: 300;

          @media (max-width: 1000px) {
            margin-bottom: 40px;
            font-size: 16px;
            line-height: 28px;
          }
        }

        .strength__item-img {
          text-align: right;

          @media (max-width: 1000px) {
            text-align: center;

            img {
              width: 100%;
            }
          }
        }

        .strength01 {
          @media (max-width: 1000px) {
            text-align: center;

            img {
              width: 100%;
            }
          }
        }

        .strength05-list {
          margin: 30px 0 38px;

          @media (max-width: 786px) {
            margin: 50px 0 28px;
          }
          li {
            display: flex;
            align-items: center;
          }
          li::before {
            content: '●';
            margin-right: 12px;
            font-size: 12px;
          }
        }
      }
    }
  }
}

.section-strengths::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-image: url('../../tasuki/images/pages/lp/bg_strengths_top.png');
  background-repeat: repeat-x;
  height: 1495px;
  width: 100%;
  z-index: -1;
}

.section-strengths::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url('../../tasuki/images/pages/lp/bg_strengths_bottom.png');
  background-repeat: repeat-x;
  background-size: cover;
  width: 100%;
  min-height: 714px;
  z-index: -1;

  @media (max-width: 1000px) {
    min-height: 360px;
  }
}

.section-cta {
  margin: 0 auto;
  background-color: #2f4f4f;
  padding: 63px 0 60px;

  @media (max-width: 1000px) {
    padding: 40px 0;
  }

  .cta-container {
    max-width: 1200px;
    padding: 24px;
    margin: 0 auto;
  }

  .cta__head {
    margin-bottom: 33px;

    .cta__headline {
      font-weight: 300;
      font-size: 28px;
      text-align: center;
      color: #fff;

      @media (max-width: 1000px) {
        font-size: 20px;
        line-height: 28px;
      }
    }
  }

  .cta__body {
    background-color: #fff;
    padding: 40px 0;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;

    @media (max-width: 1000px) {
      flex-direction: column;
      padding: 40px 20px;
    }

    .free-dial {
      position: relative;
      padding-right: 50px;
      margin-right: 50px;

      @media (max-width: 1000px) {
        padding-right: 0;
        margin-right: 0;
        margin-bottom: 30px;
      }

      .free-dial__top {
        display: flex;
        align-items: center;
        gap: 7px;
      }

      .free-dial__icon {
        width: 88px;
        @media (max-width: 1000px) {
          width: 44px;
        }
      }

      .free-dial__number {
        font-size: 46px;
        letter-spacing: 0.02em;
        margin-bottom: 5px;

        @media (max-width: 1000px) {
          font-size: 30px;
        }
      }

      .free-dial__text {
        font-size: 21px;

        @media (max-width: 1000px) {
          font-size: 15px;
        }

        @media (max-width: 1000px) {
          text-align: center;
        }

        .big_text {
          font-size: 27px;
          @media (max-width: 1000px) {
            font-size: 18px;
          }
        }
      }
    }

    .free-dial::after {
      position: absolute;
      top: -20px;
      right: 0;
      content: '';
      border-right: 1px solid #316732;
      height: 100px;

      @media (max-width: 1000px) {
        display: none;
      }
    }

    .cta__btn-contact {
      width: 480px;
      text-align: center;

      @media (max-width: 1000px) {
        width: 100%;
      }

      .cta__btn-link {
        position: relative;
        display: inline-block;
        width: 480px;
        padding: 26px 0;
        text-align: center;
        color: #fff;
        background-color: #de7800;
        border-radius: 80px;
        text-decoration: none;
        font-size: 28px;

        @media (max-width: 1000px) {
          font-size: 20px;
          padding: 20px 0;
          max-width: 100%;
        }
      }

      .cta__btn-link::after {
        position: absolute;
        font-family: 'Material Icons';
        content: 'chevron_right'; /* 아이콘 이름 */
        font-size: 29px;
        right: 8px; /* 버튼 내부 오른쪽 여백 */
        top: 50%;
        transform: translateY(-50%);
      }
    }
  }
}

.section-case {
  padding: 120px 0;

  @media (max-width: 786px) {
    padding: 80px 0;
  }

  .case__head {
    margin: 0 auto;
    margin-bottom: 57px;

    @media (max-width: 786px) {
      margin-bottom: 40px;
    }

    .case__headline {
      font-size: 50px;
      font-weight: 400;
      margin: 0 auto;
      text-align: center;
      margin-bottom: 27px;

      @media (max-width: 1000px) {
        font-size: 28px;
        margin-bottom: 12px;
      }
    }

    .case__headline-en {
      font-size: 18px;
      letter-spacing: 0.5em;
      color: #316732;
      text-align: center;
      display: inline-block;
      width: 100%;

      @media (max-width: 1000px) {
        font-size: 13px;
      }
    }
  }

  .case__body {
    .case-swiper {
      position: relative;
      width: 100%;

      @media (max-width: 1140px) {
        padding: 0 24px;
      }
    }

    .swiper-wrapper {
      padding: 20px 0;
      overflow: visible;
    }

    .case-arrow-prev {
      position: absolute;
      top: 50%;
      left: calc(calc(calc(100vw - 1060px) / 2) - 48px);
      transform: translateY(-50%);
      z-index: 10;

      @media (max-width: 1140px) {
        left: 16px;
        width: 20px;
      }
    }

    .case-arrow-next {
      position: absolute;
      top: 50%;
      right: calc(calc(calc(100vw - 1060px) / 2) - 48px);
      transform: translateY(-50%);
      z-index: 10;

      @media (max-width: 1140px) {
        right: 16px;
        width: 20px;
      }
    }

    .swiper-slide {
      position: relative;
      width: 1060px;
      overflow: visible;
      box-sizing: border-box;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
      height: auto;

      background-color: #fff;
      margin-right: 0;

      @media (max-width: 1140px) {
        width: 300px;
        max-width: 100%;
      }

      a {
        position: absolute;
        inset: 0;
      }

      .slide-inner {
        padding: 50px;
        box-sizing: border-box;
        height: 100%;

        @media (max-width: 1140px) {
          padding: 30px 20px;
        }
      }
    }

    .case__info {
      display: flex;
      gap: 40px;
      margin-bottom: 50px;

      @media (max-width: 1140px) {
        flex-direction: column-reverse;
        margin-bottom: 25px;
      }

      .info__left {
        width: 350px;
        flex-shrink: 0;

        @media (max-width: 1140px) {
          width: 100%;
        }

        .case__info-img {
          width: 100%;
        }
      }

      .info__right {
        .case__form {
          display: inline-block;
          background-color: #aaa37c;
          color: #fff;
          padding: 3px 17px;
          border-radius: 20px;
          margin-bottom: 18px;
        }

        .case__title {
          font-size: 20px;
          font-weight: 500;
          line-height: 38px;

          @media (max-width: 1140px) {
            font-size: 16px;
            line-height: 28px;
          }
        }

        .case__lead {
          font-size: 18px;
          line-height: 36px;
          display: -webkit-box;
          -webkit-line-clamp: 3; /* 줄 수 설정 */
          -webkit-box-orient: vertical;
          overflow: hidden;
          text-overflow: ellipsis;

          @media (max-width: 1140px) {
            font-size: 16px;
            line-height: 28px;
          }
        }
      }
    }

    .case__beforeafter {
      display: flex;
      justify-content: space-between;
      align-items: center;

      @media (max-width: 1140px) {
        flex-direction: column;
        gap: 20px;
      }

      .case__detail {
        width: 390px;

        @media (max-width: 1140px) {
          width: 100%;
        }

        .case__detail-title {
          background-color: #2f4f4f;
          color: #fff;
          font-weight: 300;
          padding: 12px 20px 10px;
          font-size: 18px;
        }

        .case__detail-table {
          background-color: #f7f7f7;
          padding: 20px;
          font-size: 18px;

          @media (max-width: 1140px) {
            font-size: 16px;
          }

          table {
            width: 100%;
          }

          table th,
          table td {
            padding: 10px 0;
            border-bottom: 1px solid #aaaaaa;
            font-weight: 300;
            line-height: 20px;
          }

          table th {
            color: #2f4f4f;
            text-wrap: nowrap;
            padding-right: 12px;
            vertical-align: top;
          }

          table tr:last-child th,
          table tr:last-child td {
            border-bottom: 0;
          }
        }
      }
    }

    .case__period {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 15px;

      @media (max-width: 1140px) {
        flex-direction: column;

        img {
          transform: rotate(90deg);
          margin-top: -20px;
          margin-bottom: -20px;
        }
      }

      .case__period-left {
        display: flex;
        flex-direction: column;

        @media (max-width: 1140px) {
          flex-direction: row;
          align-items: baseline;
          gap: 12px;
        }

        .case__period-title {
          display: inline-block;
          font-size: 14px;
          margin-bottom: 8px;
        }
        .case__period-period {
          font-size: 24px;
        }
      }
    }
  }
}

.section-consultant {
  padding: 120px 0;
  background-color: #f7f7f7;
  @media (max-width: 768px) {
    padding: 80px 48px 57px;
  }

  .consultant__head {
    margin: 0 auto;
    margin-bottom: 57px;

    .consultant__headline {
      font-size: 50px;
      font-weight: 400;
      margin: 0 auto;
      text-align: center;
      margin-bottom: 27px;

      @media (max-width: 1000px) {
        font-size: 28px;
        line-height: 42px;
        margin-bottom: 12px;
      }
    }

    .consultant__headline-en {
      font-size: 18px;
      letter-spacing: 0.5em;
      color: #316732;
      text-align: center;
      display: inline-block;
      width: 100%;

      @media (max-width: 1000px) {
        font-size: 13px;
      }
    }
  }

  .consultant__body {
    position: relative;
    .consultant-swiper {
      display: flex;
      max-width: 1060px;

      .swiper-slide {
        width: 333px;
        display: flex;

        .consultant__card {
          display: flex;
          flex-direction: column;
          height: 100%;
        }

        .consultant__info {
          display: flex;
          flex-direction: column;
          flex: 1;
        }

        .consultant__photo {
          width: 100%;
          margin-bottom: 26px;
        }

        .consultant__div {
          font-size: 16px;
          margin-bottom: 22px;
          font-weight: 300;
        }

        .consultant__name {
          font-size: 19px;
          margin-bottom: 37px;
          font-weight: 600;
        }

        .consultant__intro {
          line-height: 28px;
          font-size: 16px;
          font-weight: 300;
          margin-top: auto;
        }
      }
    }

    .consultant-arrow-prev {
      position: absolute;
      top: 50%;
      left: calc(calc(calc(100vw - 1060px) / 2) - 48px);
      transform: translateY(-50%);
      z-index: 10;

      @media (max-width: 1140px) {
        left: -32px;
        width: 20px;
      }
    }

    .consultant-arrow-next {
      position: absolute;
      top: 50%;
      right: calc(calc(calc(100vw - 1060px) / 2) - 48px);
      transform: translateY(-50%);
      z-index: 10;

      @media (max-width: 1140px) {
        right: -32px;
        width: 20px;
      }
    }
  }
}

.section-fee {
  padding: 120px 24px;
  max-width: 1200px;
  margin: 0 auto;

  @media (max-width: 768px) {
    padding: 80px 20px;
  }

  .fee__head {
    margin: 0 auto;
    margin-bottom: 57px;

    @media (max-width: 1000px) {
      margin-bottom: 0;
    }

    .fee__headline {
      font-size: 50px;
      font-weight: 400;
      margin: 0 auto;
      text-align: center;
      margin-bottom: 27px;

      @media (max-width: 1000px) {
        font-size: 28px;
        margin-bottom: 12px;
        line-height: 42px;
      }
    }

    .fee__headline-en {
      font-size: 18px;
      letter-spacing: 0.5em;
      color: #316732;
      text-align: center;
      display: inline-block;
      width: 100%;

      @media (max-width: 1000px) {
        font-size: 13px;
        margin-bottom: 47px;
      }
    }
  }

  .fee__body {
    margin: 0 auto;
    text-align: center;

    .fee__message {
      display: inline-block;
      text-align: left;
      margin-bottom: 87px;
      font-weight: 300;
      line-height: 28px;

      @media (max-width: 768px) {
        line-height: 28px;
        margin-bottom: 37px;
      }
    }

    .fee__mainimage {
      margin-bottom: 120px;
      @media (max-width: 768px) {
        width: 100%;
        margin-bottom: 78px;
      }
    }

    .scroll-area {
      overflow-x: scroll;
      overflow-y: hidden !important;
    }

    .sub-section:not(:last-child) {
      margin-bottom: 77px;
    }

    .sub-section1 {
      .ref {
        text-align: left;
        font-size: 14px;
        margin-top: 8px;
        line-height: 20px;
      }
    }

    .sub-section__title {
      display: inline-block;
      font-size: 28px;
      padding: 3px 0 20px;
      border-bottom: 1px solid #6d6d6d;
      margin-bottom: 50px;

      @media (max-width: 768px) {
        font-size: 20px;
        line-height: 32px;
        font-weight: 400;
        padding: 3px 0 10px;
      }
    }

    .sub-section__note {
      margin-bottom: 60px;

      @media (max-width: 768px) {
        text-align: left;
        line-height: 28px;
        margin-bottom: 30px;
      }
    }

    .sub-section__data {
      display: flex;
      justify-content: space-between;
      gap: 30px 60px;
      text-align: left;
      line-height: 28px;
      box-sizing: border-box;

      @media (max-width: 768px) {
        flex-direction: column;
      }

      .sub-section__data-1,
      .sub-section__data-2 {
        width: 546px;

        @media (max-width: 768px) {
          width: 100%;
        }

        .data__desc {
          margin-bottom: 12px;
        }
      }

      .sub-section__data-2 {
        padding-top: 56px;

        @media (max-width: 768px) {
          padding-top: 26px;
        }
        span {
          font-size: 14px;
          display: block;
          margin-bottom: 20px;
        }
      }
    }
  }

  .img-comparison {
    max-width: unset;
  }
}

.section-flow {
  padding: 120px 0;

  @media (max-width: 768px) {
    padding: 80px 0;
  }

  .flow__head {
    margin: 0 auto;
    margin-bottom: 57px;

    .flow__headline {
      font-size: 50px;
      font-weight: 400;
      margin: 0 auto;
      text-align: center;
      margin-bottom: 27px;

      @media (max-width: 1000px) {
        font-size: 28px;
        margin-bottom: 12px;
      }
    }

    .flow__headline-en {
      font-size: 18px;
      letter-spacing: 0.5em;
      color: #316732;
      text-align: center;
      display: inline-block;
      width: 100%;

      @media (max-width: 1000px) {
        font-size: 13px;
      }
    }
  }

  .flow__body {
    .flow-container {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      padding-left: 136px;
      padding-right: 20px;

      @media (max-width: 768px) {
        padding-left: 72px;
      }
    }

    .step {
      display: flex;
      @media (max-width: 768px) {
        display: block;
        overflow: hidden;
        position: relative;
      }
    }

    .step-header {
      pointer-events: none;
      background-color: #ebe9e6;
      color: #2f4f4f;
      display: flex;

      align-items: center;
      font-weight: bold;
      width: 400px;
      flex-shrink: 0;
      padding-left: 20px;

      @media (max-width: 768px) {
        width: 100%;
        padding: 15px 12px;
        justify-content: center;
      }

      .step-header__title {
        display: flex;
        align-items: center;
        gap: 20px;
        font-weight: 400;

        .title__num {
          font-size: 36px;
          @media (max-width: 768px) {
            font-size: 24px;
          }
        }

        .title__title {
          font-size: 22px;
          font-weight: 500;
          @media (max-width: 768px) {
            font-size: 16px;
            line-height: 28px;
          }
        }

        .title_div {
          display: inline-block;
          width: 1px;
          height: 40px;
          background-color: #2f4f4f;

          @media (max-width: 768px) {
            height: 30px;
          }
        }
      }

      @media (max-width: 768px) {
        pointer-events: auto;
        justify-content: space-between;
        cursor: pointer;
      }

      .toggle {
        display: none;

        @media (max-width: 768px) {
          display: block;
        }
      }
    }

    .step .step-content {
      background-color: #f7f7f7;
      font-size: 18px;
      line-height: 36px;
      padding: 20px 16px;
      font-weight: 300;

      @media (max-width: 768px) {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        padding: 0 16px;
        font-size: 16px;
        line-height: 28px;
      }
    }

    .step.open .step-content {
      max-height: 100%;
      padding: 20px 16px;
      transition: max-height 0.4s ease;
    }

    .arrow {
      padding-left: 170px;
      font-size: 24px;

      @media (max-width: 768px) {
        text-align: center;
        padding-left: unset;
      }

      img {
        transform: rotate(90deg);
      }
    }

    .left-label-wrapper {
      position: absolute;
      top: 0;
      left: -10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      height: 100%;

      @media (max-width: 768px) {
        left: 10px;
      }
    }

    .left-label {
      width: 60px;
      writing-mode: vertical-rl;
      text-orientation: mixed;
      background: linear-gradient(to bottom, #4b8540, #b7c600);
      color: white;
      padding: 20px 5px;
      font-size: 24px;
      line-height: 30px;
      letter-spacing: 6px;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      flex-grow: 1;
      position: relative;

      @media (max-width: 768px) {
        justify-content: center;
        width: 40px;
        font-size: 18px;
      }
    }

    .left-label::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 0;
      border-left: 30px solid #fff;
      border-right: 30px solid #fff;
      border-top: 40px solid #b7c600;
      z-index: 100;
      width: 60px;
      overflow: visible;

      @media (max-width: 768px) {
        width: 40px;
        border-left: 20px solid #fff;
        border-right: 20px solid #fff;
        border-top: 20px solid #b7c600;
      }
    }

    .success-point {
      background: #f47920;
      color: white;
      width: 126px;
      height: 126px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      line-height: 24px;
      text-align: center;
      margin-bottom: 20px;
      font-weight: 500;
      background: linear-gradient(to bottom, #e86b00, #fdaf00);
      z-index: 100;
      @media (max-width: 768px) {
        font-size: 11px;
        line-height: 14px;
        width: 70px;
        height: 70px;
        margin-bottom: -6px;
      }
    }
  }
}

.section-faq {
  background-color: #f2f2f2;
  padding: 120px 0;

  @media (max-width: 768px) {
    padding: 80px 0;
  }

  .faq__head {
    margin: 0 auto;
    margin-bottom: 57px;

    .faq__headline {
      font-size: 50px;
      font-weight: 400;
      margin: 0 auto;
      text-align: center;
      margin-bottom: 27px;

      @media (max-width: 1000px) {
        font-size: 28px;
        margin-bottom: 12px;
      }
    }

    .faq__headline-en {
      font-size: 18px;
      letter-spacing: 0.5em;
      color: #316732;
      text-align: center;
      display: inline-block;
      width: 100%;

      @media (max-width: 1000px) {
        font-size: 13px;
      }
    }
  }

  .faq__body {
    .accordion-table {
      max-width: 1172px;
      padding: 0 20px;
      margin: 0 auto;

      .accordion-container {
        margin-bottom: 20px;
        background-color: #fff;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);

        .icon_title {
          display: flex;
          align-items: center;
          gap: 38px;

          @media (max-width: 768px) {
            gap: 15px;
            align-items: flex-start;
          }

          .icon-state {
            flex-shrink: 0;
            @media (max-width: 768px) {
              width: 50px;
              margin-top: 5px;
            }
          }
        }

        .accordion-table__title {
          position: relative;
          font-size: 18px;
          font-weight: 600;
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding: 30px;

          @media (max-width: 768px) {
            padding: 20px 50px 20px 20px;
            font-size: 16px;
            line-height: 28px;
          }

          .line-h {
            position: absolute;
            top: 50%;
            transform: translateX(-50%);
            transform: translateY(-50%);
            right: 30px;
            width: 26px;
            border: 1px solid #707070;
            height: 1px;

            @media (max-width: 768px) {
              right: 20px;
            }
          }

          .line-v {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            right: 42px;
            width: 1px;
            border: 1px solid #707070;
            height: 26px;
            transition: height 0.15s ease-in-out;

            @media (max-width: 768px) {
              right: 32px;
            }
          }
        }

        .accordion-table__body {
          padding: 0 30px;
          font-size: 18px;
          line-height: 36px;

          @media (max-width: 768px) {
            padding: 0 20px;
            font-size: 16px;
            line-height: 28px;
          }

          .icon_title {
            align-items: center;
            padding: 30px 0;
            border-top: 1px solid #2f4f4f;

            @media (max-width: 768px) {
              align-items: flex-start;
              padding: 20px 0;
            }

            .icon-state {
              flex-shrink: 0;
              @media (max-width: 768px) {
                width: 50px;
                margin-top: 5px;
              }
            }
          }
        }
      }

      .accordion-container[open] {
        .line-v {
          height: 1px;
          transition: height 0.3s ease-in-out;
        }
      }
    }
  }
}

.section-ceo {
  background-color: #f2faf9;
  padding: 120px 24px;

  @media (max-width: 768px) {
    padding: 60px 20px;
  }

  .ceo__head {
    display: none;

    @media (max-width: 768px) {
      display: block;
      margin: 0 auto;
      margin-bottom: 57px;

      .ceo__headline {
        font-size: 50px;
        font-weight: 400;
        margin: 0 auto;
        text-align: center;
        margin-bottom: 27px;

        @media (max-width: 1000px) {
          font-size: 28px;
          margin-bottom: 12px;
        }
      }

      .ceo__headline-en {
        font-size: 18px;
        letter-spacing: 0.5em;
        color: #316732;
        text-align: center;
        display: inline-block;
        width: 100%;

        @media (max-width: 1000px) {
          font-size: 13px;
        }
      }
    }
  }

  .ceo__body-head {
    margin: 0 auto;
    display: block;
    @media (max-width: 768px) {
      display: none;
      .ceo__body-headline {
        font-size: 36px;
        font-weight: 400;
        margin: 0 auto;
        margin-bottom: 27px;

        @media (max-width: 1000px) {
          font-size: 28px;
          margin-bottom: 12px;
        }
      }
    }

    .ceo__body-headline-en {
      font-size: 18px;
      letter-spacing: 0.5em;
      color: #316732;
      display: inline-block;
      width: 100%;
      margin-bottom: 46px;

      @media (max-width: 1000px) {
        font-size: 13px;
        margin-bottom: 47px;
      }
    }
  }

  .ceo__body {
    max-width: 1174px;
    padding: 0 20px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    gap: 46px 50px;

    @media (max-width: 768px) {
      flex-direction: column;
      padding: 50px 20px;
    }

    .ceo-info {
      text-align: center;
      flex-shrink: 0;

      @media (max-width: 768px) {
        width: 100%;
      }

      .ceo-info__photo {
        width: 250px;
        margin-bottom: 24px;

        @media (max-width: 768px) {
          width: calc(100% - 74px);
        }
      }

      .ceo-info__company {
        display: block;
        margin-bottom: 8px;
      }

      .ceo-info__title {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;

        .ceo-info__name {
          font-size: 30px;
          font-weight: 400;

          @media (max-width: 768px) {
            font-size: 24px;
          }
        }
      }
    }
  }

  .ceo__message {
    font-size: 18px;
    line-height: 36px;

    @media (max-width: 768px) {
      font-size: 16px;
      line-height: 28px;
    }
  }
}

.section-company {
  background-color: #2f4f4f;
  color: #fff;
  padding: 120px 0;

  @media (max-width: 768px) {
    padding: 80px 0 20px;
  }

  .company__head {
    margin: 0 auto;
    margin-bottom: 57px;

    .company__headline {
      font-size: 50px;
      font-weight: 400;
      margin: 0 auto;
      text-align: center;
      margin-bottom: 27px;

      @media (max-width: 1000px) {
        font-size: 28px;
        margin-bottom: 12px;
      }
    }

    .company__headline-en {
      font-size: 18px;
      letter-spacing: 0.5em;
      color: #de7800;
      text-align: center;
      display: inline-block;
      width: 100%;

      @media (max-width: 1000px) {
        font-size: 13px;
      }
    }
  }

  .company__body {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    padding: 0 24px;
    margin: 0 auto;
    gap: 30px 90px;

    @media (max-width: 768px) {
      flex-direction: column;
    }

    .company__info-wrapper {
      width: 100%;

      .company__info {
        @media (max-width: 768px) {
          width: 100%;
        }
        th,
        td {
          border-block: 1px solid #fff;

          @media (max-width: 768px) {
            border-block: unset;
            display: block;
            text-align: center;
          }
        }
        th {
          padding: 30px 57px;
          text-wrap: nowrap;

          @media (max-width: 768px) {
            background-color: #476565;
            padding: 19px 0;
          }
        }

        td {
          padding: 30px 30px 30px 0;
          line-height: 38px;

          @media (max-width: 768px) {
            padding: 20px 0;
            line-height: 28px;
          }
        }
      }
    }

    .company__image-wrapper {
      width: 38%;
      flex-shrink: 0;

      @media (max-width: 768px) {
        width: 100%;
      }

      .company__image {
        width: 100%;
      }
    }
  }
}

.footer {
  background-color: #2f4f4f;
  color: #fff;
  padding: 36px 0;

  .copyright {
    max-width: 1132px;
    margin: 0 auto;
    font-size: 12px;
    text-align: center;
  }
}

.section-form {
  padding: 120px 24px;

  @media (max-width: 768px) {
    padding: 80px 24px;
  }

  .form__head {
    margin: 0 auto;
    margin-bottom: 57px;

    .form__headline {
      font-size: 50px;
      font-weight: 400;
      margin: 0 auto;
      text-align: center;
      margin-bottom: 27px;

      @media (max-width: 1000px) {
        font-size: 28px;
        margin-bottom: 12px;
      }
    }

    .form__headline-en {
      font-size: 18px;
      letter-spacing: 0.5em;
      color: #2f4f4f;
      text-align: center;
      display: inline-block;
      width: 100%;

      @media (max-width: 1000px) {
        font-size: 13px;
      }
    }
  }

  .form__body {
    max-width: 1200px;
    margin: 0 auto;
    font-weight: 300;

    .form-intro {
      text-align: center;
      font-weight: 300;
      font-size: 36px;
      line-height: 48px;
      @media (max-width: 768px) {
        font-size: 18px;
        line-height: 32px;
        font-weight: 600;
      }
    }

    .mw_wp_form {
      margin-top: 50px;
    }

    .inquiry-input-form {
      max-width: 800px;
      margin: 0 auto;
      font-size: 18px;

      .input-area {
        display: flex;
        align-items: flex-start;
        gap: 10px 15px;
        margin-bottom: 20px;

        @media (max-width: 768px) {
          flex-direction: column;
          margin-bottom: 15px;
        }

        .label {
          font-size: 18px;
          font-weight: 500;
          width: 204px;
          flex-shrink: 0;
          text-align: right;
          padding-right: 75px;
          padding-top: 8px;

          @media (max-width: 768px) {
            width: unset;
            text-align: left;
            font-size: 16px;
          }
        }

        .label.required {
          padding-right: 0;
        }

        .label.required::after {
          content: '必須';
          padding: 0 12px 4px;
          background-color: #cb0000;
          color: #fff;
          margin-left: 15px;
        }

        input[type='text'],
        input[type='email'],
        textarea {
          border: 1px solid #707070;
          padding: 4px;
          width: 100%;
          box-sizing: border-box;
        }

        textarea {
          height: 200px;
        }

        .radio-kind {
          label {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
          }
        }

        .radio-kind span {
          font-weight: 300;
        }

        .raido-kind span:last-child {
          margin-bottom: 0;
        }

        input[type='radio'] {
          appearance: none; /* 기본 브라우저 스타일 제거 */
          -webkit-appearance: none;
          width: 26px;
          height: 26px;
          border: 1px solid #707070;
          border-radius: 50%;
          position: relative;
        }

        input[type='radio']:checked::after {
          content: '';
          position: absolute;
          top: 50%;
          left: 50%;
          width: 16px;
          height: 16px;
          background: #707070;
          border-radius: 50%;
          transform: translate(-50%, -50%);
        }
      }
      .input-area > div {
        width: 100%;
      }
    }

    .privacy {
      text-align: center;
      font-size: 18px;
      margin-top: 33px;
      line-height: 32px;

      @media (max-width: 768px) {
        text-align: left;
      }

      a {
        color: var(--color-btn-contact);
        text-decoration: underline;
      }
    }

    input[type='submit'] {
      cursor: pointer;
      appearance: none;
      -webkit-appearance: none;
    }

    .btn-submit {
      position: relative;
      width: 480px;
      height: 80px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 28px;
      color: #fff;
      background-color: #de7800;
      border-radius: 50px;
      font-weight: 600;
      margin: 54px auto 0;
      cursor: pointer;

      @media (max-width: 768px) {
        width: 100%;
        height: 56px;
        font-size: 19px;
      }
    }

    .btn-submit:hover {
      background-color: var(--color-btn-contact-hover);
    }

    .btn-submit::after {
      position: absolute;
      font-family: 'Material Icons';
      content: 'chevron_right';
      font-size: 29px;
      right: 18px;
      top: 50%;
      transform: translateY(-50%);
      transition: 0.2s ease-in-out;
    }

    .btn-submit:hover::after {
      right: 8px;
      transition: 0.2s ease-in-out;
    }
  }
}

.field-error {
  margin-top: 5px;
  color: red;
  font-size: 13px;
}

.submit-success-message {
  text-align: center;
  border: 1px solid green;
  padding: 20px;
  max-width: 728px;
  margin: 20px auto 0;
}
