body {
    font-size: 90%;
    color: #363636;
    font-feature-settings: "palt";
}

.pure-img-responsive {
    max-width: 100%;
    height: auto;
}

/*
Add transition to containers so they can push in and out.
*/
#layout,
#menu,
.menu-link {
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

/*
This is the parent `<div>` that contains the menu and the content area.
*/
#layout {
    position: relative;
    left: 0;
    padding-left: 0;
}
#layout.active #menu {
    left: 200px;
    width: 200px;
}

#layout.active .menu-link {
    left: 200px;
}
/*
The content `<div>` is where all your content goes.
*/
.content {
    margin: 0 auto;
    padding: 0 2em;
    max-width: 100%;
    margin-bottom: 50px;
    line-height: 1.6em;
}

.header {
     margin: 0;
     color: #363636;
     padding: 0.5em;
    border-bottom:1px solid #ccc;
}
.header h1 {
    margin: 0.2em 0;
    font-size: 2em;
    font-weight: bold;
}
.header h2 {
    font-weight: 300;
    color: #363636;
    padding: 0;
    margin-top: 0;
}

#menu {
    font-size: 90%;
    margin-left: -200px; /* "#menu" width */
    width: 200px;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1000; /* so the menu or its navicon stays above all content */
    background: #fafafa;
    overflow-y: auto;
    box-shadow: inset -1px 0 0 rgb(0 0 0 / 10%);
}
    /*
    All anchors inside the menu should be styled like this.
    */
#menu a {
    color: #363636;
    border: none;
}

#menu .pure-menu,
#menu .pure-menu ul {
border: none;
background: transparent;
}
#menu .pure-menu ul {
    padding:0.5em 0;
    border-bottom:1px solid #ccc;
}

#menu .pure-menu li a:hover,
#menu .pure-menu li a:focus {
    background: #eee;
}

#menu .pure-menu-selected a {
    color: #363636;
}

#menu .pure-menu-heading {
    background: #363636;
    font-size: 100%;
    color: #fff;
    margin: 0;
}

.menu-link {
position: fixed;
display: block; /* show this only on small screens */
top: 0;
left: 0; /* "#menu width" */
background: rgba(47,79,79,0.5);
font-size: 10px; /* change this value to increase/decrease button size */
z-index: 10;
width: 2em;
height: auto;
padding: 1.6em;
border-radius: 0.1rem;
}

.menu-link:hover,
.menu-link:focus {
    background: rgba(47,79,79,0.5);
}

.menu-link span {
    position: relative;
    display: block;
}

.menu-link span,
.menu-link span:before,
.menu-link span:after {
    background-color: #fff;
    pointer-events: none;
    width: 100%;
    height: 0.2em;
}

.menu-link span:before,
.menu-link span:after {
    position: absolute;
    margin-top: -0.6em;
    content: " ";
}

.menu-link span:after {
    margin-top: 0.6em;
}


/* -- Responsive Styles (Media Queries) ------------------------------------- */

/*
Hides the menu at `48em`, but modify this based on your app's needs.
*/
@media (min-width: 48em) {

    .header,
    .content {
        padding-left: 2em;
        padding-right: 2em;
    }

    #layout {
        padding-left: 200px; /* left col width "#menu" */
        left: 0;
    }
    #menu {
        left: 200px;
    }

    .menu-link {
        position: fixed;
        left: 200px;
        display: none;
    }

    #layout.active .menu-link {
        left: 200px;
    }
}

@media (max-width: 48em) {
    /* Only apply this when the window is small. Otherwise, the following
    case results in extra padding on the left:
        * Make the window small.
        * Tap the menu to trigger the active state.
        * Make the window large again.
    */
    #layout.active {
        position: relative;
        left: 200px;
    }
}

.pure-badge
{
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: .75em;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
}

.pure-button{
    font-size: .875rem;
    color: white;
    border-radius: 0.25rem;
    Xtext-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.pill
{
    border-radius: 100rem!important;
}
.pill-button
{
    border-radius: 100rem!important;
    border-width: 2px!important;;
}

.xs {
    font-size: 70%;
}

.sm {
    font-size: 85%;
}

.lg {
    font-size: 110%;
}

.xl {
    font-size: 125%;
}

textarea
{
    resize: none;
    width:100%;
    height:100%;
    border-radius: 0.25rem;
    padding: 0.25rem;
}

textarea:focus {
outline:none;
}

input{
    border-radius: 0.25rem;
    padding: 0.25rem;
}

input:read-only,textarea:read-only{
    background: transparent;
    color:#363636;
}

input:focus {
outline:none;
}

select{
border-radius: 0.25rem;
padding: 0.25rem;
outline: none;
-webkit-appearance: none;/* ベンダープレフィックス(Google Chrome、Safari用) */
-moz-appearance: none; /* ベンダープレフィックス(Firefox用) */
appearance: none; /* 標準のスタイルを無効にする */
}

select.active{
-webkit-appearance: auto;/* ベンダープレフィックス(Google Chrome、Safari用) */
-moz-appearance: auto; /* ベンダープレフィックス(Firefox用) */
appearance: auto; /* 標準のスタイルを無効にする */
}

select:focus {
outline:none;
}

select:disabled,optiion:disabled {
background: transparent;
color:#363636;
opacity:1;
}

.toggle {
    margin: 1em;;
}

  input[type="checkbox"] {
    display: none;
  }
  
  label {
    position: relative;
    padding-left: 60px;
    cursor: pointer;
  }
  
  label::before,
  label::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    border: 1.4px solid rgba(0,0,0,.3);
    border-radius: 50%;
    transition: .2s;
  }
  
  label::before {
    background-color: rgba(108, 117, 125, .1);
    border: 1.4px solid rgba(0,0,0,.3);
    border-radius: 12px;
    height: 20px;
    width: 40px;
    top: 50%;
    left: 5px;
  }
  
  label::after {
    background-color: #fff;
    border-radius: 50%;
    height: 23px;
    width: 23px;
    top: 50%;
    left: 0px;
  }
  
  input:checked + label::before {
    background-color: rgb(108, 117, 125);
  }
  
  input:checked + label::after {
    left: 26px;
  }

  .primary
  {
    background-color:rgb(31,141,214);
  }
  .label-primary::before
  {
    background-color:rgba(31,141,214,.1)!important;
  }
  input:checked + .label-primary::before
  {
    background-color:rgb(31,141,214)!important;
  }
  .primary-outline
  {
    color:rgb(31,141,214);
    background: transparent;
    border: 1px solid rgb(31,141,214);
  }
  .primary-light,.table-primary td,.table-primary th
  {
    background-color: #ebfffc;
    color: #00947e;
  }

  .primary2
  {
    background-color:#00d1b2;
  }
  .label-primary2::before
  {
    background-color:rgba(0,209,178,.1);
  }
  input:checked + .label-primary2::before
  {
    background-color:#00d1b2!important;
  }
  .primary2-outline
  {
    color:#00d1b2;
    background: transparent;
    border: 1px solid #00d1b2;
  }

  .info
  {
    background-color: rgb(66, 184, 221);
  }
  .label-info::before
  {
    background-color:rgba(66, 184, 221,.1);
  }
  input:checked + .label-info::before
  {
    background-color: rgb(66, 184, 221)
  }
  .info-outline
  {
    color:rgb(66, 184, 221);
    background: transparent;
    border: 1px solid rgb(66, 184, 221);
  }
  .info-light,.table-info td,.table-info th
  {
    background-color: #eff5fb;
    color: #296fa8;
  }

  .info2
  {
    background-color: #3e8ed0;
  }
  .label-info2::before
  {
    background-color:rgba(62,142,208,.1);
  }
  input:checked + .label-info2::before
  {
    background-color: #3e8ed0;
  }
  .info2-outline
  {
    color:#3e8ed0;
    background: transparent;
    border: 1px solid #3e8ed0;
  }

  .link
  {
    background-color: #485fc7;
  }
  .link-light,.table-link td,.table-link th
  {
    background-color: #eff1fa;
    color: #3850b7;
  }


  .success
  {
    background-color: rgb(72, 199, 142);
  }
  .label-success::before
  {
    background-color:rgba(72, 199, 142,.1);
  }
  input:checked + .label-success::before
  {
    background-color: rgb(72, 199, 142)
  }
  .success-outline
  {
    color:rgb(72, 199, 142);
    background: transparent;
    border: 1px solid rgb(72, 199, 142);
  }
  .success-light,.table-success td,.table-success th
  {
    background-color: #effaf5;
    color: #257953;
  }

  .success2
  {
    background-color: rgb(28, 184, 65);
  }
  .label-success2::before
  {
    background-color:rgba(28, 184, 65,.1);
  }
  input:checked + .label-success2::before
  {
    background-color: rgb(28, 184, 65)
  }
  .success2-outline
  {
    color:rgb(28, 184, 65);
    background: transparent;
    border: 1px solid rgb(28, 184, 65);
  }

  .warning
  {
    background-color: #ffe08a;
    background-color: #ff9970;
    background: rgb(223, 117, 20);
  }
  .warning-light,.table-warning td,.table-warning th
  {
    background-color: #fffaeb;
    color: #946c00;
  }

  .danger
  {
    background-color: #f14668;
    background: rgb(202, 60, 60);
  }
  .danger-light,.table-danger td,.table-danger th
  {
    background-color: #feecf0;
    color: #cc0f35;
  }
  .danger2-light,.table-danger2 td,.table-danger2 th
  {
    background-color:#fff1e5;
    color: #bc4c00;
    }

  .light
  {
    background-color: #f5f5f5;
  }

  .dark
  {
    background-color: #363636;
  }

  .white
  {
    background-color: #ffffff;
  }

  .black
  {
    background-color: #0a0a0a;
  }

  .blue
  {
    background-color: dodgerblue;
  }
  .blue-outline
  {
    color: dodgerblue;
    background: transparent;
    border: 1px solid dodgerblue; 
  }

  .pink
  {
    background-color: hotpink;
  }
  .pink-outline
  {
    color: hotpink;
    background: transparent;
    border: 1px solid hotpink; 
  }

  .purple
  {
    background-color: #9b4dca;
  }
  .purple-outline
  {
    color: #9b4dca;
    background: transparent;
    border: 1px solid #9b4dca; 
  }

  .secondary
  {
    background-color: #6c757d;
  }
  .secondary-light,.table-secondary td,.table-secondary th
  {
    background-color: #f2f2f2;
  }

  .table-block
  {
    width: 100%;
  }

  table.table-modern,.table-modern tr,.table-modern th,.table-modern td
  {
    border-left:none!important;
    border-right:none!important;
  }