@charset "utf-8";
/*---------　ポップアップバナー　　---------*/
  .notecAmazon_content,
  .modal_overlay {
    position: fixed;
  }

  .notecAmazon_content.open,
  .modal_overlay.open {
    opacity: 1;
    transition: opacity 0.6s ease-in-out;
    pointer-events: auto;
  }

  .notecAmazon_content {
    width: 90%;
    max-width: 1000px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    max-width: 1000px;
    z-index: 1043;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease-in-out;
    border-radius: 3px;
    padding: 60px 10px;
    text-align: center;
  }

  .notecAmazon_content .notecAmazon_Ttl {
    font-size: 2rem;
  }

  .notecAmazon_content .notecAmazon_Link {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .notecAmazon_content .notecAmazon_Link a {
    width: calc(100% / 2 - 100px);
    display: block;
    font-size: 1.6rem;
    border: 1px solid #ffffff;
    border-radius: 3px;
    padding: 30px 10px;
    margin: 20px 0px;
    text-decoration: none;
  }

  .notecAmazon_content .notecAmazon_Link a:hover {
    border: 1px solid #48c0eb;
    border-radius: 3px;
  }

  .notecAmazon_content .notecAmazon_Link a img {
    width: 300px;
    margin: 20px;
  }

  .modal_overlay {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease-in-out;
  }

  button.notecModal_delete {
    position: absolute;
    text-decoration: none;
    border-radius: 50%;
    border: 3px solid #333333;
    background-color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-indent: 0;
  }

  button.notecModal_delete:after {
    background: transparent;
    font-family: 'FontAwesome';
    content: "\f00d";
    color: #333333;
    line-height: 1;
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transform: rotate(0deg);
    font-size: 2.2rem;
  }

  @media print,
  screen and (min-width: 768px) {
    button.notecModal_delete {
      width: 50px;
      height: 50px;
      top: -25px;
      right: -25px;
    }

    button.notecModal_delete:after {
      font-size: 3.0rem;
    }

    .notecAmazon_content .notecAmazon_Link a+a {
      margin-left: 20px;
    }
  }

  @media screen and (max-width: 767px) {
    .notecAmazon_content {
      width: 100%;
      height: 100%;
      position: fixed;
      overflow: scroll;
    }

    .notecAmazon_content .notecAmazon_Ttl {
      font-size: 1.8rem;
    }

    .notecAmazon_content:after {
      content: '';
      display: block;
      width: 100%;
      height: 100%;
      background: #fff;
      position: fixed;
      top: 0;
      left: 0;
      z-index: -1;
    }

    button.notecModal_delete {
      position: fixed;
      top: 10px;
      right: 10px;
      width: 40px;
      height: 40px;
    }

    .notecAmazon_content .notecAmazon_Link a {
      width: 80%;
      padding: 5px 0px;
      margin: 15px 0;
    }

    .notecAmazon_content .notecAmazon_Link a img {
      width: 80%;
    }
  }

/*---------　　Amazon・モニターポップアップバナー　　---------*/

  #notecMonitorBnr,
  #notecAmazonBnrArea {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000;
  }
  #notecAmazonBnr {
    background: #fff;
    padding: 10px;
    text-align: center;
    border-radius: 15px;
    border: 2px solid #789290;
    max-width: 300px;
    font-size: 1.8rem;
    cursor: pointer;
  }
  #notecAmazonBnr .amazonimg {
    width: 75%;
  }
  #notecCloseBtn {
    position: absolute;
    top: -14px;
    right: -14px;
    cursor: pointer;
  }
  @media screen and (max-width: 767px) {
    #notecMonitorBnr,
    #notecAmazonBnrArea {
      bottom: 120px;
      right: 24px;
      max-width: 270px;
    }
    #notecAmazonBnr {
      font-size: 1.6rem;
    }
  }