body{
  margin: 0;
  padding: 0;
}

/* ---------- Matterport ---------- */

#showcase-iframe{
  position:absolute;
  width: 100%;
  height: 100%;
}

/* ---------- Spalsh画面 ---------- */

a{
  font-color:#ffffff;
  text-decoration:none;
  color : inherit;
}

a:hover{
  font-color:#ffffff;
  text-decoration:none;
}
a:visited{
  font-color:#ffffff;
  text-decoration:none;
}

#iframesplash{
  background-color:#ffffff;
  width:100%;
  height:100%;
  /* width:853px; */
  /* height:480px; */
  position:absolute;
}

.invisible{
  animation: fadeOut 1.5s;
  animation-fill-mode: forwards;
  opacity:0;
  
}

#iframesplash{
  background-image: url(../assets/splash_background.png);
  background-size:cover;
}


#iframesplash img{
  position: absolute;
  top:50%;
  margin-top:-30%;
  width:100%;
}

#iframesplash p{
  display:block;
  text-align:center;
}



/*  */
@keyframes fadeOut {
   0% {
     opacity: 100;
   }
   100% {     
     opacity:0;
     display:none;
   }
}


/* ---------- サイド画面 ---------- */

.iframe-wrapper{
  width:100%;
  height:100%;
  /* width:853px;
  height:480px; */
  position:relative;
  pointer-events: none;
  overflow:hidden;
}

#sidemenu-button{
  top: 5px;
  right: 0;
  margin-right:-120px;
  position: absolute;
  pointer-events:auto;
  width: 50px;
  height: 12px;
  background-color: #764a34;
  padding: 16px 0 18px 2px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
  text-align:center;
}


#sidemenu-button a{
  font-weight:bold;
  color:#ffffff;
  /* margin-top:5px; */
}

#sidemenu-button a>img{
  width: 40%;
}


#sidemenu{
  position:absolute;
  right:0;
  pointer-events:auto;
  width:260px;
  height:100%;
  padding:10px;
  background-color:#764a34ac;
  color:#ffffff;
  margin-right:-340px;
}

#sidemenu p{
  width:auto;
}

.close-button{
  font-weight:bold;
  text-align:right;
  background-color: #ffefc7;
  /* border: solid 1px #ffffff; */
  right: 0;
  float: right;
  padding: 4px 11px;
  border-radius: 6px;
}

.close-button a{
  font-size: 20px;
  color: #764a34;
}

.menu-content{
  padding-top: 18px;
  margin-top: 16px;
}

.ribbon{
  width: 100%;
  text-align: center;
  padding: 5px 0 0px 0;
}

.concept{
  padding-top: 16px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 14px;
  overflow: scroll;
  overflow-x:hidden;
  overflow-y: auto;
  height: calc(100% - 300px);
  min-height: 130px;
  max-height: 570px;
}

.ex-link {
  text-align: center;
  width:260px;
}

.ex-link a>img{
width: 100%;
}


p.link-instagram{
  margin-top: 20px;
}

p.link-instagram::before{
  content:'';
  background-image: url(../assets/Icon_Instagram.png);
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: contain;
  vertical-align: middle;
}

p.link-twitter::before{
  content:'';
  background-image:url(../assets/Icon_twitter.png);
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: contain;
  vertical-align: middle;
}

p.link-online_sales{
}


.button-show{
  animation: buttonShow 1.0s;
  animation-fill-mode: forwards;
  
}
.button-hide{
  animation: buttonHide 1.0s;
  animation-fill-mode: forwards;
}

.menu-opened{
  animation: sideMenuOpen 1.0s;
  animation-fill-mode: forwards;
}

.menu-closed{
  animation: sideMenuClose 1.0s;
  animation-fill-mode: forwards;
}


/* BBHのX告知案内 */
.bbh_introduce{
    position: absolute;
    background-color: aliceblue;
    left: 10px;
    bottom: 10px;
    padding: 10px;
    background-color: #764a34;
    color: #ffffff;
    border-radius: 6px;
    display: inline-flex;
    pointer-events: auto;

    animation: bbh_introduce 7.0s;
    animation-fill-mode: forwards;
}

.bbh_left{

}

.bbh_right{
  margin-left: 10px;

}

.bbh_introduce p{
  font-size: 12px;
  margin: 0;
  padding: 0;  
}

.bbh_introduce a{
  font-size: 12px;
  text-decoration: underline;
}

.bbh_introduce a:hover{
  color: bisque ;
}

.bbh_introduce img{
  width: 58px;
  height: 58px;
}


/* アニメーション */

@keyframes bbh_introduce{
  0% { margin-left:-10000px; }
  100% { margin-left:0px; }
}

@keyframes buttonShow{
  0% { margin-right:-100px; }
  100% { margin-right:0px; }
}

@keyframes buttonHide{
  0% { margin-right:0px; }
  100% { margin-right:-100px; }
}


@keyframes sideMenuOpen{
  0% { margin-right:-340px; }
  100% { margin-right:0px; }
}

@keyframes sideMenuClose{
  0% { margin-right:0px; }
  100% { margin-right:-340px; }
}