/* css */

.single-lp {
  color: #333;
  line-height: 1.5;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 1.1px;

  h1, h2, h3, h4, h5 {
    font-weight: 500;
  }
  
  h1, h2, h3, h4, h5, p {
    line-height: 1.5;
  }
}

.l-header-lp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #000;
  z-index: 2;

  .l-header-lp__inner {
    max-width: 1512px;
    margin: 0 auto;
    padding: 24px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    @media screen and (max-width: 820px) {
      padding: 20px 16px;
    }
  }

  .l-header-lp__logo {
    display: flex;
    align-items: center;
    gap: 30px;

    @media screen and (max-width: 820px) {
      gap: 10px;
    }

    a {
      display: flex;
    }

    img {
      height: 26px;
      width: auto;

      @media screen and (max-width: 820px) {
        height: 17px;
      }
    }

    span {
      padding: 4px 10px;
      border: 1px solid #57CCF3;
      font-size: 12px;
      color: #57CCF3;

      @media screen and (max-width: 820px) {
        font-size: 10px;
      }
    }
  }

  .l-header-lp__nav {
    @media screen and (max-width: 820px) {
      display: none;
    }

    .l-header-lp__nav-list {
      display: flex;
      gap: 30px;
      align-items: center;
    }

    .l-header-lp__nav-link {
      color: #fff;
      font-size: 14px;
      transition: 0.3s;

      &:hover {
        opacity: 0.6;
      }
    }

    .l-header-lp__nav-btn {
      display: inline-block;
      padding: 2px 17px;
      background: #57CCF3;
      color: #000000;
      text-decoration: none;
      border-radius: 999px;
      font-size: 14px;
      transition: opacity 0.3s;

      &:hover {
        opacity: 0.6;
      }
    }
  }
}

.p-lp__section-title {  
  text-align: center;
  font-size: 24px;
  color: #333;
  margin-bottom: 40px;
}

.p-lp__cta-btn {
  background: black;
  color: white;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 470px;
  padding: 18px 20px;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
  border: none;

  @media screen and (max-width: 820px) {
    font-size: 16px;
  }

  &:hover {
    opacity: 0.6;
  }

  img {
    width: 34px;
  }
}

.p-lp__kv {
  padding: 100px 20px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  max-width: 1472px;

  @media screen and (max-width: 820px) {
    padding: 75px 15px;
  }

  .p-lp__kv-inner {
    display: flex;
    gap: 20px;

    @media screen and (max-width: 820px) {
      flex-direction: column;
    }
  }

  .p-lp__kv-left {
    flex: 1;
    background: #ccc;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 520px;
    overflow: hidden;

    @media screen and (max-width: 820px) {
      width: 100%;
      min-height: 380px;
    }

    .p-lp__kv-bgvideo {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      overflow: hidden;

      video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }
    }

    .p-lp__kv-message {
      position: absolute;
      top: 40px;
      left: 40px;
      color: #fff;

      @media screen and (max-width: 820px) {
        top: 20px;
        left: 25px;
      }

      .p-lp__kv-message-text {
        display: block;
        font-size: 26px;
        margin-bottom: 8px;


        @media screen and (max-width: 820px) {
          font-size: 16px;
        }

        span {
          display: inline-block;
          padding: 0 10px;
          background: black;
        }
      }

      .p-lp__kv-message-heading {
        display: flex;
        flex-direction: column;
        gap: 8px;
        font-size: 48px;
        margin-bottom: 12px;

        @media screen and (max-width: 820px) {
          font-size: 30px;
        }

        p {
          display: block;
        }

        span {
          display: inline-block;
          padding: 0 10px;
          background: black;
          font-weight: 500;
        }
      }

      .p-lp__kv-message-description {
        font-size: 24px;
        line-height: 1.5;

        @media screen and (max-width: 820px) {
          font-size: 18px;
        }
      }
    }
  }

  .p-lp__kv-right {
    width: 520px;

    @media screen and (max-width: 820px) {
      width: 100%;
    }
  }

  .p-lp__kv-form {
    background: linear-gradient(144deg, #72D8FA 0%, #0ACCD2 100%);
    padding: 40px 30px;

    form {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    
    @media screen and (max-width: 820px) {
      padding: 20px;
    }
  }

  .p-lp__kv-form-group {
    display: flex;
    flex-direction: column;

    label {
      margin-bottom: 10px;
      font-size: 14px;
    }

    input, select {
      padding: 8px 12px;
      border: 1px solid #DBDBDB;
      background: #FFF;
      transition: border 0.2s;

      &:focus {
        border-color: #0066cc;
        outline: none;
      }
    }
  }

  .p-lp__kv-form-check {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;

    input[type=\"checkbox\"] {
      margin-right: 6px;
    }
  }
}

.p-lp__companies {
  padding: 0 30px;
  .p-lp__companies-list {
    max-width: 1028px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    column-gap: 20px;
    row-gap: 24px;

    @media screen and (max-width: 820px) {
      gap: 10px;
      grid-template-columns: repeat(2, 1fr);
    }
  }

  .p-lp__company-logo {
    width: 100%;
    height: auto;
  }
}

.p-lp__jobs {
  padding: 100px 30px 80px;

  .p-lp__jobs-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    max-width: 1160px;
    margin: 40px auto 0;
    column-gap: 20px;
    row-gap: 30px;

    @media screen and (max-width: 820px) {
      column-gap: 14px;
      row-gap: 20px;
      grid-template-columns: repeat(2, 1fr);
    }
  }

  .p-lp__job-item {
    transition: 0.3s;

    &:hover {
      transform: translateY(-5px);
    }
  }

  .p-lp__job-image {
    margin: 0;
    aspect-ratio: 1/1;
    overflow: hidden;
    margin-bottom: 8px;

    .p-lp__job-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  .p-lp__job-company {
    font-weight: bold;
    margin: 0 0 8px;
  }

  .p-lp__job-position {
    font-size: 14px;
    margin: 0 0 4px;
  }

  .p-lp__job-salary {
    font-size: 14px;
  }

  .p-lp__jobs-more {
    display: flex;
    justify-content: center;
    margin-top: 60px;
  }
}

.p-lp__strengths {
  padding: 100px 30px 80px;
  max-width: 1160px;
  margin: auto;

  .p-lp__section-title {
    position: relative;
    max-width: 1129px;
    margin: auto;
    text-align: left;
    font-size: 34px;
    margin-bottom: 60px;
    border-left: 2px solid #000;
    padding-left: 30px;
  }

  .p-lp__strengths-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 810px;
    margin: 0 0 0 auto;
  }

  .p-lp__strength-item {
    display: flex;
    gap: 30px;

    @media screen and (max-width: 820px) {
      flex-direction: column;
    }

    &:nth-child(even) {
      flex-direction: row-reverse;

      @media screen and (max-width: 820px) {
        flex-direction: column;
      }
    }
  }

  .p-lp__strength-image {
    margin: 0;
    width: 320px;
    height: 230px;
    overflow: hidden;

    @media screen and (max-width: 820px) {
      width: 100%;
    }

    .p-lp__strength-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  .p-lp__strength-content {
    flex: 1;
  }

  .p-lp__strength-title {
    margin-bottom: 18px;
    font-weight: bold;
  }

  .p-lp__strength-text {
    font-size: 14px;
    line-height: 1.5;
  }

  .p-lp__strengths-cta {
    display: flex;
    justify-content: center;
    margin-top: 60px;
  }
}

.p-lp__voices {
  padding: 100px 30px;
  background: #F6F6F6;
  overflow: hidden;

  .p-lp__voices-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }

  .p-lp__voice-item {
    max-width: 1160px;
    display: flex;
    justify-content: center;
    margin: auto;
    gap: 30px;
    align-items: flex-start;

    @media screen and (max-width: 820px) {
      flex-direction: column;
    }
  }

  .p-lp__voice-image {
    width: 423px;
    overflow: hidden;

    @media screen and (max-width: 820px) {
      width: 100%;
    }

    .p-lp__voice-img {
      width: 100%;
      height: auto;
    }
  }

  .p-lp__voice-content {
    flex: 1;
  }

  .p-lp__voice-title {
    font-size: 20px;
    white-space: pre-wrap;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid black;
  }

  .p-lp__voice-name {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 20px;
    gap: 7px;

    &::before {
      content: '';
      display: inline-block;
      width: 6px;
      height: 17px;
      background-color: black;
    }
  }

  .p-lp__voice-industries,
  .p-lp__voice-positions {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;

    @media screen and (max-width: 820px) {
      flex-direction: column;
      align-items: flex-start;
    }

    img {
      width: auto;
      height: 25px;
    }
  }

  .p-lp__voice-industry,
  .p-lp__voice-position {
    padding: 1px 8px;
    background: white;
    border: 1px solid #B3B2B2;
  }

  .p-lp__voice-comment {
    font-size: 14px;
    margin-top: 20px;
    white-space: pre-wrap;
  }

  .p-lp__voice-more {
    display: flex;
    justify-content: center;
    margin-top: 12px;
    
    .p-lp__voice-more-btn {
      font-family: "outfit", sans-serif;
      background: black;
      color: white;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-radius: 9999px;
      padding: 12px 53px;
      cursor: pointer;
      transition: 0.3s;
      border: none;
      font-size: 16px;

      &:hover {
        opacity: 0.6;
      }

      img {
        width: 34px;
      } 
    }
  }
}

.p-lp__steps {
  padding: 100px 30px;

  .p-lp__steps-list-container {
    overflow-x: auto;
  }

  .p-lp__steps-list {
    display: flex;
    gap: 20px;
    max-width: 1160px;
    margin: 0 auto;
  }

  .p-lp__step-item {
    display: flex;
    flex-direction: column;
    width: 216px;
    flex-shrink: 0;
  }

  .p-lp__step-number {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
  }

  .p-lp__step-icon {
    aspect-ratio: 1/1;
    margin-bottom: 8px;

    .p-lp__step-img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
  }

  .p-lp__step-title {
    margin-bottom: 4px;
    font-weight: bold;
  }

  .p-lp__step-description {
    font-size: 14px;
  }
}

.p-lp__faq {
  padding: 80px 30px 100px;
  background: #f6f6f6;

  .p-lp__faq-list {
    max-width: 1150px;
    margin: auto;
    display: flex;
    flex-direction: column;
  }

  .p-lp__faq-item {
    padding-bottom: 26px;
    margin-bottom: 26px;
    border-bottom: 1px dashed #000;

    &:last-child {
      border-bottom: none;
    }
  }

  .p-lp__faq-question {
    margin-bottom: 16px;
    display: flex;

    p {
      font-weight: bold;
      font-size: 18px;
      flex: 1;
    }

    span {
      font-family: "Montserrat", sans-serif;
      padding-right: 20px;
      margin-right: 18px;
      border-right: 1px solid #000;
      font-size: 24px;
      width: 24px;
    }
  }

  .p-lp__faq-answer {
    display: flex;

    p {
      flex: 1;
    }

    span {
      font-family: "Montserrat", sans-serif;
      padding-right: 20px;
      margin-right: 18px;
      border-right: 1px solid #000;
      font-size: 24px;
      width: 24px;
    }
  }
  .p-lp__faq-cta {
    display: flex;
    justify-content: center;
    margin-top: 60px;
  }
}

.l-footer-lp {
  background: black;
  color: #fff;
  padding: 46px;

  .l-footer-lp__nav {
    margin-bottom: 26px;

    .l-footer-lp__nav-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 24px;
    }

    .l-footer-lp__nav-link {
      font-size: 14px;
      transition: 0.3s;

      &:hover {
        opacity: 0.6;
      }
    }

    .l-footer-lp__nav-btn {
      background: #57CCF3;
      border-radius: 999px;
      color: #000;
      padding: 2px 17px;
      transition: 0.3s;

      &:hover {
        opacity: 0.6;
      }
    }
  }

  .l-footer-lp__logo {
    margin-bottom: 26px;
    text-align: center; 
    img {
      height: 26px;
    }
  }

  .l-footer-lp__links {
    display: flex;
    justify-content: center;
    margin-bottom: 26px;

    .l-footer-lp__link {
      color: #fff;
      font-size: 14px;
      transition: 0.3s;
      border-right: 1px solid #fff;
      padding: 0 14px;

      &:last-child {
        border-right: none;
      }

      &:hover {
        opacity: 0.6;
      }
    }
  }

  .l-footer-lp__copyright {
    font-size: 12px;
    text-align: center; 
  }
}

swiper-container {
  --swiper-navigation-color: #000;
  --swiper-navigation-size: 32px;
  --swiper-navigation-sides-offset: 40px;

  @media screen and (max-width: 820px) {
    --swiper-navigation-size: 24px;
    --swiper-navigation-sides-offset: -28px;
  }
}

swiper-container::part(container) {
  overflow: visible;
}

swiper-container::part(pagination) {
  display: none;
}

/* モーダル */
.p-lp__voice-modal {
  padding: 0;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  max-width: 90vw;
  max-height: 90vh;
  width: 100%;
  background: #fff;
}

.p-lp__voice-modal::backdrop {
  background: rgba(0, 0, 0, 0.5);
}

.p-lp__voice-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  font-size: 32px;
  line-height: 1;
  color: #333;
  cursor: pointer;
  z-index: 1;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s;
}

.p-lp__voice-modal-close:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.p-lp__voice-modal-iframe {
  width: 100%;
  height: 80vh;
  border: none;
  display: block;
}
