@media screen and (max-width: 767px) {
  /* 共通パーツ No.16,18：5連ボタン */
  .oh-m-btn__ttl::before {
    left: 0;
  }
  .oh-m-btn__ttl::after {
    right: 0;
  }
  /* 共通パーツ No.16,18：CVエリアの「価格表を見る」ボタンから開かれるモーダル要素 */
  .oh-m-priceListModal {
    display: none;
    z-index: 1100;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    transform: scale(0.1);
    top: 0;
    opacity: 0.1;
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 35%, rgba(255,251,223,1) 35%, rgba(255,251,223,1) 100%);
  }

  .oh-m-priceListModal.is-close {
    transform: scale(0.1);
    transition: 0.3s cubic-bezier(0,.47,.56,1);
    opacity: 0.1;
  }
  .oh-m-priceListModal.oh-is-open {
    display: block;
    transform: scale(1);
    transition: 0.3s cubic-bezier(0,.47,.56,1);
    opacity: 1;
  }

  .oh-m-priceListModal__window {
    border-radius: 0px;
    background: none;
  }

  .oh-m-priceListModal__buttons {
    margin: 5.33vw 8% 0;
    border-top: none;
    background: none;
    display: flex;
  }
  .oh-m-priceListModal__button {
    font-size: 4vw;
    padding: 4.27vw;
    font-weight: bold;
    color: #fff;
    border-radius: 26.67vw;
  }
  .oh-m-priceListModal__button:active {
    transform: scale(0.9);
    opacity: 0.9;
  }
  .oh-m-priceListModal__button--yes {
    background-color: #d9101d;
  }
  .oh-m-priceListModal__button--no {
    background-color: #adadad;
  }

  .oh-m-priceListModal__close {
    position: absolute;
    top: 5.33vw;
    left: auto;
    right: 5.33vw;
    width: 6.67vw;
    height: 6.67vw;
    background: none;
    z-index: 10;
  }
  .oh-m-priceListModal__close::after {
    content: "×";
    display: inline-block;
    width: 100%;
    height: 100%;
    font-size: 6.67vw;
  }
}