/*page3*/
/*page2とかの方は反映されない*/

body{
    background-color: rgb(201, 236, 73);
    color: black
}

.top{
    width: 9.3%;
    position: absolute;
    top: 54.1%;
    left: 21.2%;
    z-index: 1;    
}
.top :hover{
    background-color: rgb(201, 236, 73);
}

.umb{
    width: 7%;
    position: absolute;
    top: 49%;
    left: 4.8%;
    z-index: 1;
}
.umb :hover{
    background-color: rgb(201, 236, 73);
}

.dish{
    width: 19.53%;
    position: absolute;
    top: 74.4%;
    left: 50%;
    z-index: 1;
}
.dish :hover{
    background-color: rgb(201, 236, 73);
}

.menu{
    width: 12.5%;
    position: absolute;
    top: 80.3%;
    left: 35.2%;
    z-index: 1;
}
.menu :hover{
    background-color: rgb(201, 236, 73);
}

.photo{
    width: 21.87%;
    position: absolute;
    top: 18.9%;
    left: 22.6%;
    z-index: 1;
}
.photo :hover{
    background-color: rgb(201, 236, 73);
}

.drawing{
    width: 24.2%;
    position: absolute;
    top: 25%;
    left: 52.2%;
    z-index: 1;
}
.drawing :hover{
    background-color: rgb(201, 236, 73);
}


.round{
    width: 10.9%;
    position: absolute;
    top: 49.7%;
    left: 82.9%;
    z-index: 1;
}
.round :hover{
    background-color: rgb(201, 236, 73);
}




/**/
.modal-wrapper {
    z-index: 999;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center;
  }
  
  .modal-button {
      font-weight: bold;
      text-align: center;
      cursor :pointer;
      margin-top: 40px;
      margin-bottom: 1px;
      padding: 12px 2px;
      max-width:300px;
      text-decoration: none;
  }
  
  .modal-wrapper:not(:target) {
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
  }
  
  .modal-wrapper:target {
    opacity: 1;
    visibility: visible;
    transition: opacity .4s, visibility .4s;
  }
  
  .modal-wrapper::after {
    display: inline-block;
    height: 100%;
    margin-left: -.05em;
    vertical-align: middle;
    content: ""
  }
  
  .modal-wrapper .modal-window {
    box-sizing: border-box;
    display: inline-block;
    z-index: 20;
    position: relative;
    width: 70%;
    max-width: 600px;
    padding: 10px 30px 25px;
    border-radius: 2px;
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, .6);
    vertical-align: middle
  }
  
  .modal-wrapper .modal-window .modal-content {
    max-height: 80vh;
    overflow-y: auto;
    text-align: left
  }
  
  .modal_title {
    font-size: 1.5em;
      position: relative;
      overflow: hidden;
    padding: 0;
  }
  
  .modal_title::before,
  .modal_title::after{
      content: "";
      position: absolute;
      bottom: 0;
  }
  
  .modal_title:before{
      border-bottom: 4px solid rgb(135, 235, 235);
      width: 100%;
  }
  
  .modal-content p {
    margin: 10px 0 0 0;
  }

  .modal-content img{
      width: 50%;
  }
  
  .modal-overlay {
    z-index: 10;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .8)
  }
  
  .modal-wrapper .modal-close {
    z-index: 20;
    position: absolute;
    top: 5px;
    right: 5px;
    width: 35px;
    color: #95979c !important;
    font-size: 30px;
    font-weight: 700;
    line-height: 35px;
    text-align: center;
    text-decoration: none;
    text-indent: 0
  }
  
  .modal-wrapper .modal-close:hover {
    color: #2b2e38 !important
  }