/* Plan */
#plan
  {padding: 30px;
  position: relative;
  overflow: hidden;
  /* background-color:rgb(247, 248, 229); */
  }
svg.ice
  {position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 50%;
  z-index: -1;
  background-color: rgb(247, 248, 229); /* #dbf8ff */
  opacity: 0.2;
  }
#plan .plan-backsize
  {width: 100%;
  height: 100vh;
  display: flex;
  }
#plan .plan-total
  {position: absolute;
    top: 45%;
    left: 48%;
    transform: translate(-50%, -50%);
  display: flex;
  width: 70%;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  text-align: center;
  }
#plan .block>div:nth-child(1)
  {width: 250px;
  border: 1px solid #000000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  }
#plan .block>div:hover
  {border: none;}

#plan .block>div:nth-child(1):hover:before
  {opacity: 1;
  
  }

#plan .block>div:nth-child(1):before
  {position: absolute;
  display: block;
  width: 250px;
  height: 250px;
  line-height: 250px;
  background-color: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 1.5rem;
  opacity: 0;
  transition: 0.35s;
  }
#plan .block:nth-child(1)>div:nth-child(1):before
  {content: '올리브영';}
  #plan .block:nth-child(2)>div:nth-child(1):before
  {content: '국립세종수목원';}
  #plan .block:nth-child(3)>div:nth-child(1):before
  {content: '웹디자인 트렌드';}
  #plan .block:nth-child(4)>div:nth-child(1):before
  {content: '국립정동극장';}
#plan .block>div:nth-child(1) img
  {width: 200px;
  }
#plan .block>div
  {width: 250px;
  height: 250px;
  border-radius: 15px;
  }
#plan .block>div:nth-child(1)
  {/* background-color: #ffffffc5; */
  padding: 20px;
  box-sizing: border-box;
  }
#plan .block>div:nth-child(2)
  {display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: rgb(164, 206, 81);
  color: #ffff00;
  overflow: hidden;
  position: relative;
  }
#plan .block>div:nth-child(2).boxhover
  {display: flex;}
#plan .block>div:nth-child(2):before
  {content: '';
  position:absolute;
  display: block;
  width: 3px;
  height: 10px;
  background-color: rgb(112, 162, 10);
  top: 65px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0 !important;
  transition: 0.3s;
  }
  #plan .block:hover .down:before
    {height: 128px;
    }
#plan .block>div:nth-child(2):after
  {content: '';
  position:absolute;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgb(112, 162, 10);
  top: 185px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  }
#plan .block>div:nth-child(2) h3
  {font-size: 0.9rem;
  color: green;
  margin: 10px;
  box-sizing: border-box;
  }
#plan .block>div:nth-child(2) ul
  {z-index: 200;
  padding-bottom: 20px;
  }
#plan .block>div:nth-child(2) ul li
  {margin: 10px;
    background-color: rgb(164, 206, 81); /* #00395f */
    color: #000;
  padding: 7px 10px;
  border-radius: 30px;
  z-index: 1000;
  cursor: pointer;
  transition: 0.3s;
  }
  #plan .block>div:nth-child(2) ul li:hover
    {background-color: rgb(112, 162, 10);
    color: #fff;
    border: 1px solid #fff;
    z-index: 10;
    }
  #plan .block>div:nth-child(2) ul li.blank
    {color: transparent;
    background-color: transparent;
    border: none;
    }
  #plan .block>div:nth-child(2) .page
    {display: block;
    width: 100%;
    padding: 15px 0 15px;
    font-size: 1.15rem;
    font-weight: bold;
    box-sizing: border-box;
    position: relative;
    height: 50px;
    color: rgb(0, 69, 0);
    /* background-color: rgb(6, 119, 61); */
    transition: 0.3s; 
    }
  
  #plan .block>div:nth-child(2) .page span
    {position: absolute;
    top: /* -10px; */ 0px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 600;
    padding-top: 15px;
    }
  #plan .block>div:nth-child(2) .page svg
    {position: absolute;
    left: 0;
    bottom: -15px;
    z-index: 0;
    width: 100%;
    opacity: 0;
    transition: 0.25s;
    }
    #plan .block>div:nth-child(2) .page:hover svg
      {opacity: 1;}
    #plan .block>div:nth-child(2) .page:hover .svg1
      {animation: svg 2s infinite;
      }
      #plan .block>div:nth-child(2) .page:hover .svg2
      {animation: svg 2s 0.5s infinite;
      }
      #plan .block>div:nth-child(2) .page:hover .svg3
      {animation: svg 2s 0.7s infinite;
      }
      #plan .block .down .page:hover
        {color: yellow;
        font-weight: normal;
        background-color: transparent;
        }

    @keyframes svg {
      
      20%{bottom: -25px;}
      50%
        {bottom: -20px;
        opacity: 0.8;
        }
      70%
        {bottom: -30px;
        opacity: 0.5;
        }
      100%{opacity: 1;}
    }

/* MODALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */

#plan-modal{ /*검정배경*/
  display: none;
  position:fixed; 
  left:0; 
  top:0;
  width:100%; 
  height:100vh; 
  background:rgba(0,0,0,0.7); 
  z-index:1000;
  overflow-y: scroll; 
}
/* =---=-=-==============-=-=----=-=-===- */
.olive-body, .garden-body, .wt-body, .jdong-body
  {width: 1200px;
  height: calc(100vh - 100px);
  margin: 50px auto 0;
  /* border: 1px solid red; */
  display: none;
  }
#plan-modal>div>div>div /* o-design */
  {display: none;}
.o-design, .o-wire, .o-metaphor
  {width: 100%;
    display: none;
  }

.o-d-img
  {margin: 0 auto 20px;
  /* border: 1px solid #000; */
  width: 1200px;
  }
.o-d-img div
  {width: 100%;
  }
  .o-d-img div img
    {width: 100%;
    }

.o-d-thumb
  {width: 1200px;
  margin: auto;
  }
.o-d-thumb div
  {margin: 5px;}
.o-d-thumb img
  {width: 100%;
  }

.o-metaphor
  {width: 100%;
  }
.o-m-img
  {margin: 50px auto 20px;
  width: 1200px;
  }
.o-m-img div
  {width: 100%;
  }
  .o-m-img div img
    {width: 100%;
    }
  .o-m-icon img
    {height: 100%;}
.o-m-thumb
  {width: 1200px;
  margin: auto;
  }
.o-m-thumb div
  {margin: 5px;}
.o-m-thumb img
  {width: 100%;
  }

/* ----------------------------------------------------------- */

.g-story
{width: 100%;
height: 100vh;
}
.g-s-img>div:not(:first-child)
  {display: none;}
.g-s-img
{margin: 0 auto 20px;
/* border: 1px solid #000; */
width: 1200px;
}
.g-s-img div
{width: 100%;
}
.g-s-img div img
  {width: 100%;
  }

  .g-s-thumb
{width: 1200px;
margin: auto;
}
.g-s-thumb div
{margin: 5px;}
.g-s-thumb img
{width: 100%;
}

  .g-wire img, .g-result img
    {width: 100%;}

/* ------------------------------------------------ */

.w-t-img
  {width: 1200px;
  height: 700px;
  margin: 0 auto 20px;
  }
.w-t-img>div:not(:first-child)
  {display: none;}
.w-t-img>div
  {width:1200px;
  height: 700px;
  margin: auto;
  position: absolute;
  display:none;
  }
.w-t-img>div:first-child
  {display:block;}
.w-t-img>div img
  {position: absolute;
  width: 100%;}
.w-t-thumb div
  {margin: 0 10px;}
  .w-t-thumb
  {width: 1200px;
  margin: auto;
  }
.w-t-thumb div img
  {width: 100%;}
.w-wire img
  {width: 100%;}
/* -------------------------------------------------- */

.j-icon
  {width: 1200px;
  height: 700px;
  margin: 0 auto 20px;
  }

.j-style img
  {width: 100%;}


/*버튼영역*/ 
.pm_btn{
  position:fixed;
  left:calc(50% + 600px);
  top:50px;
  width:80px;
  height:50px;
  width:80px;
  color:#fff;
  text-align:center;
  overflow:hidden;
  z-index:10000;
  cursor:pointer;
  /* border: 1px solid #000; */
}
#plan-modal .pm_btn i
  {font-size:40px;
  }
#plan-modal .plan-tab
  {position: fixed;
  left: calc(50% + 650px);
  top: 150px;
  display: none;
  }
#plan-modal .plan-tab li
  {padding: 5px 10px;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 30px;
  margin: 10px;
  text-align: center;
  cursor: pointer;
  }
  #plan-modal .plan-tab li.modalon
    {background-color: gold;}

  #plan .olive-body  .activeO
    {display: block;}

.jdong-tab li:nth-child(3) a
  {display: inline-block;
  width: 100%;
  }