@charset "utf-8";
/*---------　モーダル　　---------*/
  .noteuDesign_content,
  .modal_overlay {
    position: fixed;
  }

  .noteuDesign_content.open,
  .modal_overlay.open {
    opacity: 1;
    transition: opacity 0.6s ease-in-out;
    pointer-events: auto;
  }

  .noteuDesign_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 0px;
    text-align: center;
  }

  .noteuDesign_content .noteuDesign_Ttl {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }

  .noteuDesign_content .noteuDesign_Image {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .noteuDesign_content .noteuDesign_Image div {
    width: calc(100% / 2 - 30px);
    display: block;
    font-size: 1.6rem;
    border: 1px solid #ffffff;
    border-radius: 3px;
    padding: 30px 10px;
    margin: 20px 0px;
    text-decoration: none;
  }

  .noteuDesign_content .noteuDesign_Image img {
    width: 380px;
    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.noteuModal_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.noteuModal_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.noteuModal_delete {
      width: 50px;
      height: 50px;
      top: -25px;
      right: -25px;
    }

    button.noteuModal_delete:after {
      font-size: 3.0rem;
    }

    .noteuDesign_content .noteuDesign_Image a+a {
      margin-left: 20px;
    }
  }

  @media screen and (max-width: 767px) {
    .noteuDesign_content {
      width: 100%;
      height: 100%;
      position: fixed;
      overflow: scroll;
    }

    .noteuDesign_content .noteuDesign_Ttl {
      font-size: 1.8rem;
    }

    .noteuDesign_content .noteuDesign_Txt{
      width: 80%;
      margin: auto;
    }

    .noteuDesign_content:after {
      content: '';
      display: block;
      width: 100%;
      height: 100%;
      background: #fff;
      position: fixed;
      top: 0;
      left: 0;
      z-index: -1;
    }

    button.noteuModal_delete {
      position: fixed;
      top: 10px;
      right: 10px;
      width: 40px;
      height: 40px;
    }

    .noteuDesign_content .noteuDesign_Image div {
      width: 90%;
      padding: 5px 0px;
      margin: 15px 0px 0px;
    }

    .noteuDesign_content .noteuDesign_Image img {
      width: 80%;
    }
  }

/*---------　　サムネイル下リンク　　---------*/
#noteuModal_Link{
  background-color: rgb(223, 230, 237);
  padding: 8px 10px;
  margin: 8px 0px;
}
.noteuModal_Link{
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  #noteuModal_Link{
    margin: 8px 10px 0px;
  }
}


