<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* pc left-menu */
.flex-container{ display: flex; flex-wrap: nowrap; }
.left-menu-container{ flex: 1 0 auto; }
.main-container{ width: calc(100% - 210px); flex: 1 0 auto; }
@media (max-width: 766px){ .main-container{ width: 100%; } }

.left-menu{
  overflow: hidden;
  width: 100%;
  position: static;
  background: white;
  border: solid #e5e5e5 2px;
  border-radius: 5px;
  padding-bottom: 30px;
  margin-right: 10px;
  width: 200px;
}
.left-menu a{ display: block; padding-left: 15px; width: 100%; color: #3a96d5; }
.left-menu a:visited{ text-decoration: none; color: #3a96d5; }
.left-menu-line{ border: #ddd dashed; border-width: 1px 0 1px 0; border-top: transparent; padding: 6px 0 6px 10px; }
.left-menu-son:hover{ background: #ddd; }
.left-menu-parent{ font-size: 18px; padding-top: 35px; }
.left-menu-son{ font-size: 16px; padding-right: 10px; }

.left-menu-button-area{ display: none; }
.left-menu-button{
  position: fixed;
  width: 80px;
  text-align: right;
  z-index: 100;
  bottom: 0px;
  right: 0px;
  margin-right: 15px;
  margin-bottom: 15px;
  background-image: url("../commonfiles/images/left-menu-tora.png");
  background-repeat: no-repeat;
  background-position: center bottom;
}
.left-menu-button:hover{
  filter: contrast(70%) brightness(130%);
}

.left-menu-img{
  padding: 5px !important;
}
.left-menu-img img{
  width:100%; height:auto; vertical-align:bottom;
}

/* sp left-menu */
@media (max-width: 766px){
  .left-menu-container{ position: absolute; }
  
  .left-menu{
    position: fixed;
    top: 0;
    left: -240px;
    width: 240px;
    z-index: 20;
    overflow: scroll;
    height: 100vh;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    padding-top: 122px;
    padding-bottom: 100px;
  }
  .left-menu::-webkit-scrollbar { display: none; }
  
  .left-menu-overlay {
    position: fixed;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(255,255,255,0.7);
    z-index: 19;
    display: none;
  }
  
  .left-menu-button-hide{ display: none; }
  .left-menu-button-area{ display: block; }
  
  .left-menu-parent{ font-size: 20px; }
  .left-menu-son{ font-size: 20px; padding: 8px 10px 8px 0; }
  
  
  
  
  .left-menu-button-area{ display: none !important; }
}
</pre></body></html>