/* reset.css */

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

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

/* 2. 문서 전체 폰트와 배경 초기화 */
html,
body {
  height: 100%;
  font-family: 'Noto Sans JP', sans-serif !important;
  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;
}

a:hover {
  opacity: 0.9;
}

/* 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;
}

@media (max-width: 767px) {
  :root {
    --section-gutter: 20px;
  }
}

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

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: 767px) {
  .pc-none {
    display: block;
  }

  .sp-none {
    display: none;
  }
}

.content-width {
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 0 var(--section-gutter);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  background-color: #fff;

  .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) {
      flex-direction: column;
      max-width: 100%;
      padding: 0;
      /* height: 86px; */
    }

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

    .header__right {
      min-width: 0;
      background-color: #fff;
    }

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

      @media (max-width: 940px) {
        display: flex;
        align-items: center;
        height: 64px;
        width: 100%;
        border-bottom: 1px solid #d0d0d0;
      }

      .logo {
        height: 49px;
      }

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

        .logo {
          @media (max-width: 940px) {
            height: 42px;
          }
        }
      }
    }

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

      @media (max-width: 940px) {
        gap: 0;
        justify-content: space-between;
        width: 100%;
        border-bottom: 1px solid #d0d0d0;
      }

      .free-dial {
        color: #38281e;

        @media (max-width: 940px) {
          width: 50%;
          text-align: center;
        }

        .free-dial__icon {
          height: 48px;

          @media (max-width: 940px) {
            height: 28px;
          }
        }
      }

      .header-contact {
        @media (max-width: 940px) {
          width: 50%;
        }
        .header-contact__link {
          position: relative;
          display: inline-block;
          padding: 5px 22px 8px;
          background-color: #006934; /* 버튼 색상 */
          color: #fff;
          text-decoration: none;
          border-radius: 40px;
          font-size: 24px;
          font-weight: 600;
          letter-spacing: 0.1em;
          line-height: 35px;

          @media (max-width: 940px) {
            font-size: 16px;
            line-height: 23px;
            padding: 16px 20px 15px 20px;
            border-radius: 0;
            width: 100%;
            text-align: center;
          }
        }

        .header-contact__link:hover {
          background-color: #4da635;
          transition: 0.2s ease-in-out;
        }
      }
    }
  }
}

.section-title {
  font-size: 36px;
  letter-spacing: 0.05em;
  color: #4da635;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.5em;
  word-break: auto-phrase;

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

.section,
.consultant-card,
#consultants-area {
  scroll-margin-top: 76px;

  @media (max-width: 940px) {
    scroll-margin-top: 120px;
  }
}

.section-subtitle {
  font-size: 20px;
  letter-spacing: 0.04em;
  color: #000;
  font-weight: 500;
  text-align: center;
  line-height: 1.5em;

  @media (max-width: 767px) {
    font-size: 18px;
    font-weight: 400;
  }
}

.section-catch {
  color: #006934;
  font-size: 36px;
  letter-spacing: 0.04em;
  font-weight: 900;
  text-align: center;
  margin-bottom: 20px;

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

.section-hero {
  position: relative;
  overflow: hidden;
  margin-top: 76px;
  height: 800px;
  background: url('../../tasuki-dev/images/pages/lp-industry/hero_main_pc.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;

  @media (max-width: 1199px) {
    margin-top: 60px;
    display: none;
  }

  .section-wrapper {
    width: var(--max-content-width);
    padding: 0 24px;
  }

  h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 72px;
    letter-spacing: 0.2em;
    font-weight: 400;

    .catch {
      opacity: 0;
    }
  }

  .hero-button {
    width: var(--max-content-width);
    position: absolute;
    left: 50%;
    bottom: 92px;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 24px;

    .hero-merit {
      display: flex;
      gap: 30px;
    }
  }

  .btn-hero-contact {
    opacity: 0;
  }

  .associate {
    position: absolute;
    right: 20px;
    bottom: 20px;
  }
}

.section-hero {
  .consultant-cards {
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    grid-auto-rows: 100px;
    max-width: var(--max-content-width);
    width: 100%;
    padding: 0 24px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* grid-template-rows: repeat(2, 1fr); */
    grid-column-gap: 20px;
    grid-row-gap: 25px;

    .card {
      display: flex;
      justify-content: space-between;
      border-radius: 16px;

      background: rgba(158, 164, 146, 0.2); /* 투명한 초록색 */
      backdrop-filter: blur(10px); /* 유리처럼 흐리게 */
      -webkit-backdrop-filter: blur(10px); /* 사파리 대응 */
      border: 2px solid rgba(255, 255, 255, 0.5); /* 살짝 하이라이트 */
      border-radius: 16px; /* 둥근 모서리 */
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); /* 부드러운 그림자 */

      .consultant-photo {
        filter: drop-shadow(12px -5px #d9e81b);
      }
    }

    .card-harada {
      width: 670px;
      height: 424px;
      aspect-ratio: 670 / 424;
      overflow: hidden;
      /* grid-area: 1 / 1 / 3 / 2; */
      position: relative;

      .card-movie {
        position: absolute;
        top: 50px;
        left: 30px;
      }

      .consultant-photo {
        position: absolute;
        top: 5px;
        right: -20px;
        width: 480px;
      }
    }

    .card-yoshikawa {
      grid-area: 1 / 2 / 2 / 3;
      height: 200px;
      width: 464px;
      position: relative;
      clip-path: inset(-30px 0 0 0 round 0 0 16px 16px);

      .card-industry {
        position: absolute;
        top: 30px;
        left: 30px;

        span {
          display: inline-block;
          border: 2px solid #4ea535;
          background-color: #fff;
          margin-bottom: 6px;
          padding: 4px 12px;
          filter: drop-shadow(5px 5px #4ea535);
          font-weight: 900;
        }
      }

      .consultant-photo {
        position: absolute;
        top: -30px;
        right: -20px;
        width: 280px;
        z-index: 20;
        filter: drop-shadow(8px -5px #d9e81b);
      }
    }

    .card-adachi {
      /* grid-area: 2 / 2 / 3 / 3; */
      height: 424px;
      width: 464px;
      position: relative;
      clip-path: inset(-30px 0 0 0 round 0 0 16px 16px);

      .card-industry {
        position: absolute;
        display: flex;
        flex-direction: column;
        top: 30px;
        left: 30px;

        span {
          display: inline-block;
          inline-size: fit-content;
          border: 2px solid #4ea535;
          background-color: #fff;
          margin-bottom: 6px;
          padding: 4px 12px;
          filter: drop-shadow(5px 5px #4ea535);
          font-weight: 900;
        }
      }

      .consultant-photo {
        position: absolute;
        top: 0;
        right: -60px;
        width: 380px;
        z-index: 20;
        filter: drop-shadow(8px -5px #d9e81b);
      }
    }
  }
}

.section-hero-sp {
  position: relative;
  display: none;
  margin-top: 120px;
  width: 100%;
  max-height: 680px;
  aspect-ratio: 860 / 1360;
  overflow: hidden;
  background: url('../../tasuki-dev/images/pages/lp-industry/hero_main_sp.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 620px;

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

  h1 {
    /* display: none; */
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }

  .hero-button {
    position: absolute;
    bottom: 14px;
    padding: 0 24px;
    width: 100%;
    display: flex;
    justify-content: space-between;

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

    .hero-merit {
      img {
        width: 100px;
      }
    }

    .btn-hero-contact img {
      width: 100%;
      margin-top: 20px;
      max-width: 500px;
      margin-bottom: 30px;
    }
    z-index: 20;
  }

  .associate {
    display: none;
  }

  .consultant-cards {
    /* display: none; */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;

    .swiper-slide {
      position: relative;
    }

    .swiper-pagination {
      top: 20px;
      height: 20px;

      .swiper-pagination-bullet {
        border: 2px solid #d0d0d0;
        background-color: #d0d0d0;
        opacity: 1;
      }
      .swiper-pagination-bullet-active {
        width: 24px;
        border-radius: 4px;
        border: 2px solid #d0d0d0;
        background-color: #d0d0d0;
      }
    }

    .card-movie {
      position: absolute;
      top: 120px;
      left: 22px;
      min-width: 150px;
      max-width: 275px;
      width: 30%;
      z-index: 20;

      .btn-more {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        background-color: #ff9500;
        padding: 9px 22px;
        border-radius: 7px;
        color: #fff;
        font-weight: 600;
        gap: 8px;
        margin-top: 32px;
      }
    }

    .card-industry {
      position: absolute;
      top: 24px;
      left: 24px;
      z-index: 20;

      span {
        display: inline-block;
        border: 2px solid #4ea535;
        background-color: #fff;
        margin-bottom: 6px;
        padding: 4px 12px;
        filter: drop-shadow(5px 5px #4ea535);
        font-weight: 500;
        font-size: 14px;
      }

      .btn-more {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        background-color: #ff9500;
        padding: 9px 22px;
        border-radius: 7px;
        color: #fff;
        font-weight: 600;
        gap: 8px;
        margin-top: 12px;
      }
    }

    .consultant-photo {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 100%;
      height: 100%;

      img {
        position: absolute;
        bottom: 0;
        right: 0;
        max-height: 800px;
      }
    }
  }
}

.section-consultant {
  padding: 80px 0;

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

  .content-width {
    @media (max-width: 767px) {
      padding: 0;
    }
  }

  .section-header {
    margin-bottom: 80px;

    @media (max-width: 767px) {
      padding: 0 24px;
      margin-bottom: 40px;
    }
  }

  .consultant-list {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;

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

    .consultant-card {
      position: relative;
      background: url('../../tasuki-dev/images/pages/lp-industry/bg_consultant.png');
      background-position: bottom;
      background-size: contain;
      background-repeat: no-repeat;
      width: calc(calc(100% - 72px) / 3);

      a:hover {
        opacity: 1;
      }

      .industry-list {
        position: absolute;
        left: 0;
        bottom: 12px;
        height: 66px;
        padding: 0 15px;
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        align-items: flex-start;

        li {
          display: inline-flex;
          padding: 3px 12px 5px;
          background-color: #fff;
          font-size: 100%;
          font-weight: 600;
        }
      }
    }

    .consultant-card:hover {
      background: url('../../tasuki-dev/images/pages/lp-industry/bg_consultant_hover.png');
      background-position: bottom;
      background-size: contain;
      background-repeat: no-repeat;
      width: calc(calc(100% - 72px) / 3);
    }
  }

  .consultants {
    display: none;
    @media (max-width: 767px) {
      display: block;
      img {
        width: 100%;
      }
    }
  }
}

.section-about-industry {
  padding: 80px 0 0;

  @media (max-width: 767px) {
    padding: 40px 0;
    text-align: justify;
  }

  .section-title {
    margin-bottom: 60px;
  }
  .section-title span {
    position: relative;
    display: inline-block;
    z-index: 2;
  }
  .section-title span::before {
    content: '';
    display: block;
    width: 100%;
    height: 20px;
    background-color: rgba(234, 164, 83, 0.4);
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -2;
  }

  .section-header {
    margin-bottom: 80px;

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

    .section-catch {
      font-size: 36px;
      letter-spacing: 0.05em;
      color: #4da635;
      font-weight: 600;
      text-align: center;
      margin-bottom: 20px;
      line-height: 1.5em;
      word-break: auto-phrase;

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

    .section-subtitle {
      @media (max-width: 767px) {
        text-align: left;
        font-weight: 400;
      }
    }
  }

  .consultant-card {
    position: relative;
    background-repeat: no-repeat;
    width: 100%;
    margin-bottom: 80px;

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

    .consultant-info {
      display: flex;
      align-items: flex-end;
      gap: 50px;
      margin-bottom: 50px;

      @media (max-width: 767px) {
        gap: 20px;
        margin-bottom: 20px;
      }

      .thumb {
        position: relative;
        width: 320px;
        flex-shrink: 0;
        background: url('../../tasuki-dev/images/pages/lp-industry/bg_consultant.png');
        background-position: bottom;
        background-size: contain;
        background-repeat: no-repeat;

        @media (max-width: 767px) {
          width: 27%;
          min-width: 160px;
        }

        .icon_more {
          position: absolute;
          left: 0;
          bottom: 0;
          width: 25%;
        }
      }

      .info {
        margin-bottom: 22px;

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

      .part,
      .position {
        display: block;
        font-size: 24px;
        letter-spacing: 0.08em;
        line-height: 1.3em;

        @media (max-width: 767px) {
          font-size: 18px;
          margin-bottom: 4px;
        }
      }

      .name {
        display: block;
        font-size: 36px;
        font-weight: 700;
        letter-spacing: 0.08em;
        color: #4da635;
        margin-top: 8px;

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

      .sns-list {
        display: flex;
        align-items: center;
        margin-top: 14px;
        gap: 20px;

        @media (max-width: 767px) {
          margin-top: 10px;
          gap: 10px;
        }

        img {
          width: 30px;
          @media (max-width: 767px) {
            width: 24px;
          }
        }
      }

      .profile-short-pc {
        font-size: 18px;
        letter-spacing: 0.04em;
        margin-top: 24px;
        line-height: 1.3em;

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

    .profile-short-sp {
      font-size: 18px;
      letter-spacing: 0.04em;
      margin-top: 24px;
      line-height: 1.3em;
      display: none;

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

    .industry-list {
      position: absolute;
      left: 0;
      bottom: 12px;
      height: 66px;
      padding: 0 15px;
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      align-items: flex-start;
    }
  }

  .industry-info {
    .service-download {
      background-color: #e8eaeb;
      border-radius: 4px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 30px;
      padding: 30px;
      letter-spacing: 0.04em;
      line-height: 1.5em;
      font-size: 18px;

      @media (max-width: 767px) {
        flex-direction: column;
        margin-top: 20px;
        padding: 20px;
      }

      .link-guidebook {
        display: flex;
        width: 209px;
        padding: 12px 14px;
        background-color: #006934;
        border-radius: 10px;
        color: #fff;
        font-weight: 600;
        font-size: 15px;
        line-height: 1.3em;
        gap: 10px;
        align-items: center;
        flex-shrink: 0;
        justify-content: center;

        @media (max-width: 767px) {
          width: calc(100% - 32px);
        }
      }

      .link-guidebook:hover {
        opacity: 1;
        background-color: #4da635;
      }
    }

    .industry-info-table-pc {
      border-radius: 4px;
      box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);

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

      thead {
        th {
          background-color: #4da635;
          color: #fff;
          font-size: 18px;
          font-weight: 600px;
          letter-spacing: 0.08em;
          text-align: center;
          padding: 11px 0;
          border: 1px solid #d1d1d1;
        }

        th:first-child {
          width: 184px;
        }

        th:last-child {
          width: 256px;
        }
      }

      tbody {
        td {
          border: 1px solid #d1d1d1;
        }
        td:nth-child(1) {
          font-size: 22px;
          font-weight: 500;
          text-align: center;
          line-height: 1.4em;
        }
        td:nth-child(2) {
          padding: 21px 24px 34px;
          font-size: 16px;
          line-height: 1.5em;
        }

        td:nth-child(3) {
          padding-left: 23px;
        }

        .link-guidebook {
          display: flex;
          width: 209px;
          padding: 12px 14px;
          background-color: #006934;
          border-radius: 10px;
          color: #fff;
          font-weight: 600;
          font-size: 15px;
          line-height: 1.3em;
          gap: 10px;
          align-items: center;
        }

        .link-guidebook:hover {
          opacity: 1;
          background-color: #4da635;
        }
      }
    }

    .industry-info-table-sp {
      border-radius: 4px;
      box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
      margin-top: 20px;
      display: none;

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

      tbody {
        th {
          background-color: #4da635;
          color: #fff;
          display: block;
          font-size: 18px;
          padding: 8px 0;

          @media (max-width: 767px) {
            padding: 8px;
            text-align: center;
          }
        }

        td {
          border: 1px solid #d1d1d1;
          display: block;
          font-size: 16px;
        }
        td:nth-child(1) {
          font-size: 22px;
          font-weight: 500;
          text-align: center;
          line-height: 1.4em;
        }
        td:nth-child(2) {
          padding: 10px;
          font-size: 16px;
          line-height: 1.5em;
        }

        .btn-area {
          display: flex;
          justify-content: flex-end;
          margin-top: 10px;
        }

        .link-guidebook {
          display: flex;
          width: 209px;
          padding: 8px 15px;
          background-color: #006934;
          border-radius: 6px;
          color: #fff;
          font-weight: 600;
          font-size: 14px;
          line-height: 1.3em;
          gap: 15px;
          align-items: center;

          .link-guidebook:hover {
            opacity: 1;
            background-color: #4da635;
          }

          img {
            width: 31px;
          }
        }
      }
    }
  }
}

.consultant-off {
  display: flex;
  gap: 30px 50px;

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

  .photo {
    width: 320px;
  }

  .info {
    .part,
    .position {
      display: block;
      font-size: 24px;
      letter-spacing: 0.08em;
      line-height: 1.3em;

      @media (max-width: 767px) {
        font-size: 18px;
        margin-bottom: 4px;
      }
    }

    .name {
      display: block;
      font-size: 36px;
      font-weight: 700;
      letter-spacing: 0.08em;
      color: #4da635;
      margin-top: 8px;

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

    .profile-desc {
      font-size: 18px;
      letter-spacing: 0.04em;
      margin-top: 24px;
      line-height: 1.4em;

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

      a {
        color: #de7800;
        text-decoration: underline;
      }
    }
  }
}

.section-accountant {
  padding: 80px 0;
  background-color: #e8eaeb;

  .content-width {
    @media (max-width: 767px) {
      padding: 0 10px;
    }
  }

  .section-header {
    margin-bottom: 60px;
  }

  .section-subtitle {
    @media (max-width: 767px) {
      font-size: 16px;
    }
  }

  .section-content {
    @media (max-width: 767px) {
      padding: 0 14px;
      text-align: justify;
    }
  }

  .about-service {
    line-height: 1.5em;
    font-size: 18px;
    letter-spacing: 0.08em;
  }

  .accountant-list {
    display: flex;
    gap: 32px;
    margin-top: 60px;

    @media (max-width: 767px) {
      flex-direction: column;
      gap: 100px;
      margin-top: 100px;
    }

    .accountant-card {
      background-color: #fff;
      padding: 30px;
      box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
      border-radius: 10px;

      .accountant-info {
        display: flex;
        gap: 30px;
        align-items: center;

        @media (max-width: 767px) {
          flex-direction: column;
          margin-top: -96px;
        }

        .thumb {
          width: 150px;
          flex-shrink: 0;

          @media (max-width: 767px) {
            width: 120px;
          }
        }

        .info {
          .part,
          .position {
            display: block;
            font-size: 23px;
            margin-bottom: 8px;

            @media (max-width: 767px) {
              font-size: 18px;
              text-align: center;
            }
          }

          .name {
            font-size: 36px;
            color: #4da635;
            font-weight: 700;
            display: block;

            @media (max-width: 767px) {
              font-size: 24px;
              text-align: center;
            }
          }
        }
      }
    }
    .profile-short {
      font-size: 18px;
      line-height: 1.5em;
      margin-top: 20px;
    }
  }
}

.section-strength {
  background: url('../../tasuki-dev/images/pages/lp-industry/bg_colabo.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 120px 24px 80px;

  @media (max-width: 767px) {
    padding: 40px 20px;
    background: url('../../tasuki-dev/images/pages/lp-industry/bg_colabo_sp.png');
    background-size: cover;
    background-position: center center;
  }

  .section-wrapper {
    padding: 50px 116px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;

    @media (max-width: 767px) {
      padding: 30px 15px;
      background-color: rgba(255, 255, 255, 0.9);
    }
  }

  .section-catch {
    font-size: 32px;
    color: #000;
    line-height: 1.5em;
    font-weight: 600;

    @media (max-width: 767px) {
      font-size: 20px;
      font-weight: 400;
      line-height: 1.3em;
    }
  }

  .colabo {
    margin-top: 60px;

    @media (max-width: 767px) {
      margin: 40px auto;
    }

    img {
      display: block;
      margin: 0 auto;
    }

    img:first-child {
      margin-bottom: 32px;
    }

    img:last-child {
      margin-top: 19px;
    }
  }

  .about-strength {
    margin-top: 60px;
    font-size: 18px;
    line-height: 1.5em;

    @media (max-width: 767px) {
      margin-top: 0;
      line-height: 1.8em;
      text-align: justify;
    }
  }

  .members {
    display: flex;
    justify-content: flex-end;
    font-size: 18px;
    line-height: 1.5em;
    margin-top: 20px;

    @media (max-width: 767px) {
      font-size: 15px;
      line-height: 1.8em;
      justify-content: flex-start;
    }
  }
}

.section-flow {
  padding: 80px 0;

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

  .section-title {
    margin-bottom: 60px;

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

  .flow-map {
    img {
      width: 100%;
    }
  }

  .comment {
    padding-left: 1.5em;
    margin-top: 30px;

    @media (max-width: 767px) {
      margin-top: 20px;
      text-align: justify;
    }

    li {
      font-size: 18px;
      line-height: 1.5em;
      position: relative;

      @media (max-width: 767px) {
        margin-bottom: 0.5em;
      }
    }

    li::before {
      content: '※';
      position: absolute;
      left: -1.5em;
      top: 0;
      color: #333;
    }
  }
}

.section-system {
  padding: 80px 0;

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

  .section-header {
    margin-bottom: 60px;
    @media (max-width: 767px) {
      margin-bottom: 40px;
    }
  }

  .section-subtitle {
    @media (max-width: 767px) {
      text-align: left;
    }
  }

  .flow-map {
    img {
      width: 100%;
    }
  }

  .comment {
    padding-left: 1.5em;
    margin-top: 30px;

    @media (max-width: 767px) {
      margin-top: 20px;
    }

    li {
      font-size: 18px;
      line-height: 1.5em;
      position: relative;

      @media (max-width: 767px) {
        margin-bottom: 0.5em;
      }
    }

    li::before {
      content: '※';
      position: absolute;
      left: -1.5em;
      top: 0;
      color: #333;
    }
  }
}

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

  @media (max-width: 767px) {
    padding: 40px 0;
    text-align: justify;
  }

  .section-header {
    margin-bottom: 60px;

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

    .section-subtitle {
      @media (max-width: 767px) {
        text-align: left;
      }
    }
  }

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

    @media (max-width: 767px) {
      margin-bottom: 20px;
    }

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

      @media (max-width: 767px) {
        gap: 18px;
        align-items: center;
      }

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

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

      @media (max-width: 767px) {
        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: 767px) {
          right: 15px;
          width: 19px;
        }
      }

      .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: 767px) {
          right: 24px;
          height: 19px;
        }
      }
    }

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

      @media (max-width: 767px) {
        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: 767px) {
          align-items: flex-start;
          padding: 20px 0;
        }

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

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

.footer {
  /* background-color: #4da635; */
  background: url('../../tasuki-dev/images/pages/lp-industry/hero_main_pc.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;

  /* color: #fff; */
  padding: 80px 0 20px;

  @media (max-width: 767px) {
    background: url('../../tasuki-dev/images/pages/lp-industry/hero_main_sp.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  h3 {
    font-size: 30px;
    font-weight: 500;
  }

  .company-info {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 25px;
    line-height: 1.4em;

    @media (max-width: 767px) {
      font-size: 14px;
    }

    th {
      text-align: left;
      font-weight: 400;
      width: 150px;
      vertical-align: top;
      padding: 5px 0;

      @media (max-width: 767px) {
        width: 95px;
      }
    }

    td {
      padding: 5px 0;
    }
  }

  .associate {
    margin-top: 50px;
    margin-bottom: 50px;
    text-align: center;
  }

  .copyright {
    text-align: center;

    @media (max-width: 767px) {
      font-size: 14px;
    }
  }
}

.section-contact {
  padding: 80px 0;

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

  .section-subtitle {
    margin-bottom: 45px;
    font-size: 20px;
    font-weight: 400;

    @media (max-width: 767px) {
      font-size: 18px;
      line-height: 1.8em;
      text-align: left;
    }
  }
  .lp-form-table {
    width: 100%;
    th {
      width: 298px;
      font-size: 20px;
      padding: 25px 24px 10px 0;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 12px;
      font-weight: 400;

      @media (max-width: 767px) {
        width: 100%;
        justify-content: flex-start;
        gap: 10px;
        font-size: 18px;
        padding: 5px 0;
      }
    }

    th::after {
      content: '';
      width: 40px;
    }

    th.label-required::after {
      content: '必須';
      color: #fff;
      background-color: #c53a53;
      padding: 2px 4px 4px 4px;
      font-size: 16px;
      border-radius: 4px;
      font-weight: 500;

      @media (max-width: 767px) {
        font-size: 14px;
        margin-top: 2px;
      }
    }

    td {
      width: 100%;
      padding: 15px 0;

      @media (max-width: 767px) {
        display: block;
        padding: 5px 0 15px 0;
      }

      input,
      textarea,
      select {
        width: 100%;
        border-color: #909090;
        border: 1px solid #909090;
        padding: 10px 20px;
      }

      input::placeholder {
        color: #d0d0d0;
      }
    }
  }

  .form-control {
    text-align: center;
    margin-top: 15px;
    line-height: 1.5em;

    a {
      color: #c53a53;
      text-decoration: underline;
    }
  }

  input[type='submit'] {
    background-color: #006934;
    color: #fff;
    max-width: 436px;
    padding: 24px 80px;
    border-radius: 40px;
    font-size: 24px;
    letter-spacing: 0.05em;
    margin-top: 60px;

    @media (max-width: 500px) {
      max-width: 320px;
      width: 100%;
      padding: 16px 0;
      font-size: 16px;
      margin-top: 40px;
    }
  }

  input[type='submit']:hover {
    background-color: #4da635;
    border-color: #4da635;
  }
}
