@charset "utf-8";

.p-search-key {
  background: #fdf3e3;
  border-radius: 40px 40px 0 0;
  margin-top: -56px;
  padding: 126px 0 170px;

  @media (width < 768px) {
    padding: 80px 0 120px;
  }

  .l-inner {
    max-width: 1200px;
  }
}

.p-search-key__form {
  .search-title {
    text-align: center;
    font-size: 24px;
    line-height: calc(24 / 20);
    letter-spacing: 0.03em;
  }

  .search-area-wrapper {
    margin: 26px auto 0;
    max-width: 750px;
  }

  .horizontal-form {
    margin-top: 10px;
    width: 100%;
    height: 56px;
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    overflow: hidden;

    input {
      width: 93%;
      padding: 0 2em;
      border: none;
    }

    input:focus {
      outline: none;
    }

    input::placeholder {
      font-weight: 500;
      font-size: 14px;
      color: #b9b9b9;
    }

    .search-submit {
      width: 7%;
      min-width: 56px;
      height: 100%;
      flex-shrink: 0;
      background: #ff8928;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .search-submit::before {
      content: "";
      width: 26px;
      height: 26px;
      background: url("https://mountfield.co.jp/system_panel/uploads/images/search-icon-white.svg") no-repeat center center / contain;
    }
  }
}

.p-search-key__text {
  margin-top: 12px;
  text-align: center;
  font-size: 13px;
  line-height: normal;
}

.p-search-terms {
  background: #fffbf3;
  border-radius: 40px 40px 0 0;
  margin-top: -50px;
  padding: 110px 0 140px;

  @media (width < 768px) {
    padding: 80px 0 120px;
  }

  .l-inner {
    max-width: 1200px;
  }
}

.p-search-terms__heading {
  font-size: 24px;
  line-height: calc(24 / 20);
  letter-spacing: 0.03em;
}

.p-search-terms__form {
  margin-top: 36px;

  .webgene-search-form {
    display: flex;
    flex-direction: column;
    gap: 51px;
  }

  .search-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    line-height: normal;
  }

  .search-title::before {
    content: "";
    width: 8px;
    height: 22px;
    background: #ffb437;
  }

  .search-contents-wrapper {
    margin-top: 8px;
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 10px;
    padding: 49px 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px 94px;

    @media (width < 768px) {
      padding: 40px 20px;
      gap: 30px 40px;
    }

    label {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: 14px;
      font-weight: 500;
      line-height: normal;
    }
  }

  .submit-wrapper {
    margin: 40px auto 0;
    width: 250px;
    height: 50px;
    position: relative;

    @media (width < 768px) {
      margin: 0 auto;
    }
  }

  .submit-wrapper::before {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    left: 82px;
    width: 17px;
    aspect-ratio: 1;
    background: url("https://mountfield.co.jp/system_panel/uploads/images/search-icon-orange.svg") no-repeat center center / contain;
    pointer-events: none;
  }

  .search-submit {
    width: 100%;
    height: 100%;
    padding: 0 10px 0 38px;
    border: none;
    border-radius: 100px;
    background: var(--color-green);
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    letter-spacing: 0.08em;
    cursor: pointer;
  }
}
