/* archive */
.arc-li{
    th{
        padding: 10px 5px;
    }
}

/* single */

h2{
    color: #616161;
    text-align: left;
}

.intro-header{
    background: none;
}

.container:not(
  .content-section-a .container,
  .intro-header .container,
  .topnav
) {
  

  .row {
    display: flex;
    justify-content: right;
    

    .col-lg-12 {
      writing-mode: vertical-rl;
      text-orientation: mixed;
      overflow-x: scroll;
      max-height: 80svh;
      width: 90%;
    margin: 0 auto;
    background-color: #fcfaf3;
  border-left: 2px solid #d6d6d6;
  border-right: 2px solid #d6d6d6;
      

      h4 {
        font-size: 22px;
        color: #2b2b2b;
      }

      p {
        margin: 20px 80px;
        line-height: 250%;
        font-size: 18px;
        color: #616161;
        letter-spacing: 2px;
      }
    }
  }
}

/* menu */
.content-section-a .container:not(.intro-header .container) {
  .lead {
    p {
      font-size: 16px;
      color: #8a8a8a;
    }

    ul {
      padding-left: 10px;
      li{
        margin-bottom: 20px;
      }
    }
  }
}

.n-nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
    border-bottom: 1px solid #d4d4d4;

    a{
        font-size: 22px;
        color:#f39800;
        transition: all .3s;

        &:hover{
          opacity: .3;
          border-bottom: none;
          text-decoration: none;
        }
    }
}