.fv {
  clip-path: ellipse(110% 100% at 50% 0%);
  width: 100%;
  height: 50vw;
  max-height: 570px;
  background-image:
    linear-gradient(to bottom, rgba(255,255,255,0.33), rgba(255,255,255,0.5)),
    url('/images/top/fv_bg.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 20%;
}
  .fv__inner {
    width: 95%;
    height: 45vw;
    max-height: 520px;
    max-width: 1000px;
    margin: 0 auto;
    padding: min(15vw, 250px) 0 0;
  }
    .fv__text {
      text-align: center;
      color: var(--green);
      font-size: min(5.4rem, 5.4vw);
      font-weight: bold;
      line-height: 1.5;
      text-shadow:
        2px  2px 1px #fff,
        -2px  2px 1px #fff,
        2px -2px 1px #fff,
        -2px -2px 1px #fff,
        2px  0px 1px #fff,
        0px  2px 1px #fff,
        -2px  0px 1px #fff,
        0px -2px 1px #fff;
    }
      .fv__text--small {
        font-size: min(2.8rem, 3.2vw);
        text-shadow:
        1px  1px 1px #fff,
        -1px  1px 1px #fff,
        1px -1px 1px #fff,
        -1px -1px 1px #fff,
        1px  0px 1px #fff,
        0px  1px 1px #fff,
        -1px  0px 1px #fff,
        0px -1px 1px #fff;
      }
    .fv__search {
      display: grid;
      grid-template-columns: 2fr 1fr;
      row-gap: 10px;
      width: 100%;
      max-width: 700px;
      margin: 20px auto 0;
    }
      .fv__input {
        padding: 0.6em 0.8em;
        font-size: 1.8rem;
        border: none;
        border-radius: 0;
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
        box-shadow: var(--shadow);
      }
        .fv__input:focus {
          outline: solid 2px var(--orange);
          outline-offset: -2px;
        }
      .fv__button {
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--orange);
        border: none;
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
        box-shadow: var(--shadow);
        color: #fff;
        font-size: 1.8rem;
        cursor: pointer;
      }
      .fv__recommend {
        display: flex;
        flex-wrap: wrap;
        gap: 0.8em;
        align-items: center;
        padding: 0.4em 0.8em;
        background-color: rgba(255,255,255,0.66);
        border-radius: 5px;
      }
        .fv__item {
          color: var(--text-color);
        }
@media screen and (max-width: 767px) {
  .fv {
    clip-path: none;
    height: 80vh;
    max-height: 650px;
    background-image:
      linear-gradient(to bottom, rgba(255,255,255,0.33), rgba(255,255,255,0.5)),
      url('/images/top/fv_bg.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 20%;
  }
    .fv__inner {
      height: auto;
      max-height: 600px;
      padding: max(15vw, 80px) 0 0;
    }
      .fv__text {
        text-align: center;
        color: var(--green);
        font-size: min(5.4rem, 5.4vw);
        font-weight: bold;
        line-height: 1.5;
        text-shadow:
          2px  2px 1px #fff,
          -2px  2px 1px #fff,
          2px -2px 1px #fff,
          -2px -2px 1px #fff,
          2px  0px 1px #fff,
          0px  2px 1px #fff,
          -2px  0px 1px #fff,
          0px -2px 1px #fff;
      }
        .fv__text--small {
          font-size: min(2.8rem, 3.2vw);
          text-shadow:
          1px  1px 1px #fff,
          -1px  1px 1px #fff,
          1px -1px 1px #fff,
          -1px -1px 1px #fff,
          1px  0px 1px #fff,
          0px  1px 1px #fff,
          -1px  0px 1px #fff,
          0px -1px 1px #fff;
        }
      .fv__search {
        display: grid;
        grid-template-columns: 2fr 1fr;
        row-gap: 10px;
        width: 100%;
        max-width: 700px;
        margin: 20px auto 0;
      }
        .fv__input {
          padding: 0.6em 0.8em;
          font-size: 1.8rem;
          border: none;
          border-radius: 0;
          border-top-left-radius: 5px;
          border-bottom-left-radius: 5px;
          box-shadow: var(--shadow);
        }
          .fv__input:focus {
            outline: solid 2px var(--orange);
            outline-offset: -2px;
          }
        .fv__button {
          display: flex;
          justify-content: center;
          align-items: center;
          background: var(--orange);
          border: none;
          border-top-right-radius: 5px;
          border-bottom-right-radius: 5px;
          box-shadow: var(--shadow);
          color: #fff;
          font-size: 1.8rem;
          cursor: pointer;
        }
        .fv__recommend {
          display: flex;
          flex-wrap: wrap;
          gap: 0.8em;
          align-items: center;
          padding: 0.4em 0.8em;
          background-color: rgba(255,255,255,0.66);
          border-radius: 5px;
        }
          .fv__item {
            color: var(--text-color);
          }
}

.qa {
  width: 100%;
  max-width: 1000px;
  margin: 40px auto 0;
  padding: 0 10px 10px;
}
  .qa__title {
    background-image: url();
  }
  .qa__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    max-width: 800px;
    margin: 40px auto 0;
  }
    .qa__item {
      border-radius: 3px;
    }
      .qa__head {
        display: grid;
        grid-template-columns: 1fr 5fr;
        align-items: center;
        padding: 20px 10px;
        background: #fff;
        color: var(--green);
      }
        .qa__num {
          text-align: center;
          font-size: 3.8rem;
          font-weight: bold;
        }
        .qa__question {
          display: flex;
          align-items: center;
          height: 100%;
          padding-left: 1.4em;
          border-left: solid 1px var(--green);
          font-size: 1.8rem;
          font-weight: bold;
        }
      .qa__answer {
        padding: 1.8em 3em;
        background: var(--green);
        color: #fff;
      }