charset "utf-8";
/* CSS Document */


/* --------------------
テキスト・リンク
-------------------- */

#main .posted_area #floormap,
#main .posted_area #floormap a
{
    font-size: 14px!important;
}

@media(max-width:500px){
#main .posted_area #floormap,
    #main .posted_area #floormap a{
            font-size: 11px!important;
    }
}

.room {
font-size: 14px !important;
}
@media(max-width:500px){
.room {
font-size: 11px!important;
    }
}


#main .posted_area #floormap a {
  text-decoration: none;
}

#main .posted_area #floormap a:hover {
  text-decoration: underline;
}

.room img{
    margin-left: 5px;
    width: 30px;
}
@media(max-width:500px){
.room img{
    width: 20px;
    margin-left: 2px;
    }
}

/* --------------------
フロアマップ
-------------------- */

   #floormap {
    margin-top: 30px;
      display: flex;
      justify-content: center;
      align-items: flex-end;
      gap: 10px;
    }

    .building-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .main-wrapper {
      flex: 2.5;
    }

    .sub-wrapper {
      flex: 1.2;
    }

    .building-title {
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      width: 95%;
      margin-bottom: 17px;
      position: relative;
      gap: 20px;
      letter-spacing: 3px;
    }

    .building-title::before,
    .building-title::after {
      content: '';
      flex: 1;
      border-top: 2px solid #777;
      height: 0;
    }

    .building {
      display: flex;
      flex-direction: column;
      width: 100%;
    }

    .floor {
      display: flex;
      height: 70px;
      margin-bottom: 10px;
      width: 100%;
    }

    .floor-label-left,
    .floor-label-right {
      width: 40px;
      background: #FFFFFF;
      text-align: center;
      line-height: 70px;
      font-weight: bold;
      border: 1px solid #CCCCCC;
      box-sizing: border-box;
    }

    .floor-label-left {
      margin-right: 8px;
    }

    .floor-label-right {
      margin-left: 8px;
    }

    .room {
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #CCCCCC;
      box-sizing: border-box;
      padding: 5px;
      position: relative;
    }

    .room + .room {
      border-left: none;
    }

    .main .large { flex: 1.4; }
    .main .small { flex: 0.6; }
    .main .double { flex: 2; }

    .sub .room { flex: 1; }

    .pink { background: #f5def9; }
    .lightpink { background: #f7e4fa; }
    .lightblue { background: #def3ff; }
    .green { background: #e2fff2; }
    .orange { background: #ffedd7; }
    .gray { background: #e6e6e6; }

    .room.gray {
      color: #777777;
    }

    .room a {
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: inherit;
      width: 100%;
      height: 100%;
      transition: opacity 0.3s ease;
    }

  

    .icon {
      display: inline-block;
      padding: 2px 6px;
      margin-left: 5px;
      border-radius: 4px;
      color: white;
    }

    .icon.green { background-color: #4CAF50; }
    .icon.orange { background-color: #FF7043; }

    .room a:not(:first-of-type) {
      position: absolute;
      width: 1px;
      height: 1px;
      overflow: hidden;
      opacity: 0;
    }
  

