@charset "UTF-8";
/* CSS Document */

@media screen and (min-width: 0px) and (max-width: 768px) {


.pc-no {
    display: inline;
}

.sp-no {
    display: none;
}

.flex-sb {
    display: block;
}

.header {
    width: 100%;
    height: 7vh;
    margin: 0;
    padding: 0;
    position: fixed;
    overflow: visible;
    background-color: #FFF;
    top: 0;
    left: 0;
    z-index: 10;
}

.header .hdr-links {
    width: 95%;
    margin: 0 auto;
    padding: 10px 0;
    position: relative;
    overflow: visible;
    display: flex;
    justify-content: flex-end;
}

.header .hdr-links .notification {
    margin: 0 4% 0 0;
    position: relative;
}

.header .hdr-links .notification .no-num {
    width: auto;
    padding: 0 20%;
    background-color: #F54545;
    border-radius: 50px;
    color: #FFF;
    text-align: center;
    font-size: 60%;
    line-height: 210%;
    font-weight: bold;
    position: absolute;
    z-index: 5;
    top: -5px;
    left: 70%;
}

.header .hdr-links .notification .no-icon {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background-color: #FFF;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(102,102,102,0.75);
-moz-box-shadow: 0px 0px 5px 0px rgba(102,102,102,0.75);
box-shadow: 0px 0px 5px 0px rgba(102,102,102,0.75);
}

.header .hdr-links .notification .no-icon img {
    width: 40%;
    margin: 0 auto;
    padding: 8px 0 0;
    display: block;
}

.header .hdr-links .account {
    width: auto;
    max-width: 200px;
    font-size: 80%;
    font-weight: bold;
}

.header .hdr-links .account a {
    width: 90%;
    margin: 0 auto;
    padding: 5px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .hdr-links .account a:after {
    content: "";
    width: 10px;
    height: 10px;
    margin: 0 0 0 10px;
    display: inline-block;
    background-image: url("../img/hdr/account_darr.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.header .hdr-links .account .avatar {
    width: 30px;
    height: 30px;
}

/*********/

.acc-profile:before {
    content: "";
    display: block;
    margin: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #00AA90 transparent;
    position: absolute;
    right: 2%;
    top: -10px;
}

.acc-profile {
    width: 10%;
    min-width: 200px;
    background-color: #00AA90;
    position: absolute;
    top: 50px;
    right: 0;
    z-index: 10;
    color: #FFF;
    font-size: 80%;
    transform: translate(0, -150%);
    transition: ease-in-out 0.3s;
    opacity: 0;
}

.acc-profile .wrap {
    width: 90%;
    margin: 0 auto;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
    display: block;
}

.acc-profile ul {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    list-style: none;
}

.acc-profile ul li {
    display: flex;
    justify-content: space-between;
    border-bottom: solid 1px #FFF;
}

.acc-profile ul li:last-child {
    border-bottom: none;
}

.acc-profile ul li .label {
    width: 30%;
}

.acc-profile ul li .name {
    width: 65%;
}
.acc-profile .logout {
    width: 100%;
    margin: 20px 0 0;
    background-color: #3D569B;
    text-align: center;
    border-radius: 30px;
    font-weight: bold;
    
}

.acc-profile .logout a {
    width: 100%;
    padding: 5px 0;
    display: block;
    color: #FFF;
    text-align: center;
}

.header .hdr-links .account .logout a {
    display: block;
    text-align: center;
}

.header .hdr-links .account .logout a:after {
    display: none;
}

.openAccountProfile {
    display: none;
}

input#openAccountProfile[type=checkbox] {
    transition: all 0.3s;
    box-sizing: border-box;
    display: none;
}

input#openAccountProfile[type=checkbox]:checked ~ .avatar:after { 
    transform: rotate(180deg);
}

input#openAccountProfile[type=checkbox]:checked ~ .acc-profile { 
    opacity: 1.0;
    transform: translate(0, 0);
}

/*********/

/***NAVIGATION***/

.side-bar {
    width: 100%;
    height: 100vh;
    min-width: unset;
    max-width: unset;
    margin: 0;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: #00AA90;
}

.side-bar a {
    line-height: 110%;
}

.side-bar .sb-wrap {
    width: 90%;
    margin: 0 auto;
    padding: 10px 0;
    position: relative;
    overflow: hidden;
}

.side-bar .logo {
    width: 50%;
    margin: 20px 0 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

nav.side-nav {
    width: 100%;
    margin: 20px 0 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

nav.side-nav ul.nav-link {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    list-style: none;
    font-size: 120%;
    font-weight: bold;
}

}

@media screen and (min-width: 0px) and (max-width: 1000px) {

nav.side-nav ul.nav-link {
    font-size: 100%;
}

}

@media screen and (min-width: 0px) and (max-width: 768px) {

nav.side-nav ul.nav-link li {
    width: 100%;
    margin: 0 0 10px;
    padding: 0;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    background-color: transparent;
    
    transition: all 0.3s;
}

nav.side-nav ul.nav-link li.active {
    background-color: #31b8a3;
}

nav.side-nav ul.nav-link li:hover {
    background-color: #258778;
}

nav.side-nav ul.nav-link li a {
    width: 90%;
    margin: 0 auto;
    padding: 5px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #FFF;
}

nav.side-nav ul.nav-link li a:after {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    background-image: none;
    background-size: contain;
    background-repeat: no-repeat;
}


nav.side-nav ul.nav-link li.active a:after {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    background-image: url("../img/nav/nav_arr.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

nav.side-nav ul.nav-link li a .nav-icon {
    width: 15%;
    max-width: 60px;
}

nav.side-nav ul.nav-link li a .nav-name {
    width: 70%;   
}

.side-bar .logout {
    width: 80%;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    bottom: 15%;
    left: 10%;
    background-color: #3D569B;
    border: solid 2px #FFF;
    border-radius: 30px;
    font-size: 100%;
    text-align: center;
    letter-spacing: 0.1em;
    transition: all 0.3s;
}

.side-bar .logout:hover {
    background-color: #FFF;
}

.side-bar .logout a {
    width: 100%;
    padding: 15px 0;
    display: block;
    color: #FFF;
    
    transition: all 0.3s;
}

.side-bar .logout:hover a {
    color: #3d559b;
    letter-spacing: 0.2em;
}

/***MAIN***/

.main {
    width: 100%;
    margin: 5vh 0 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.main-content {
    width: 100%;
    float: none;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.main-wrap {
    width: 95%;
    margin: 0 auto;
    padding: 30px 2.5%;
    position: relative;
    overflow: visible;
}

section.main-sec {
    width: 100%;
    margin: 0 0 30px;
    padding: 0;
    position: relative;
    overflow: visible;
}

section.main-sec:last-child {
    margin: 0;
}

h1.page-title {
    width: 95%;
    margin: 0 auto;
    padding: 5px 2.5%;
    position: relative;
    overflow: hidden;
    background-color: #00AA90;
    color: #FFF;
    font-size: 110%;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

h1.page-title:before {
    content: "";
    width: 20px;
    height: 20px;
    margin: 0 10px 0 0;
    display: inline-block;
    background-image: url("../img/h2icon_news.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.box {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: visible;
    background-color: #FFF;
    border-radius: 0 0 5px 5px;
    -webkit-box-shadow: 0px 3px 10px 0px rgba(81,147,132,0.1);
-moz-box-shadow: 0px 3px 10px 0px rgba(81,147,132,0.1);
box-shadow: 0px 3px 10px 0px rgba(81,147,132,0.1);
}

.box .box-wrap {
    width: 95%;
    margin: 0 auto;
    padding: 30px 0;
    position: relative;
    overflow: visible;
}

.kage {
    -webkit-box-shadow: 0px 3px 10px 0px rgba(81,147,132,0.1);
-moz-box-shadow: 0px 3px 10px 0px rgba(81,147,132,0.1);
box-shadow: 0px 3px 10px 0px rgba(81,147,132,0.1);
}

.page-content {
    width: 100%;
    margin: 60px 0 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}


/***NEWS***/

ul.news-list {
    width: 100%;
    min-height: 250px;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    list-style: none;
    font-size: 100%;
    font-weight: bold;
    line-height: 160%;
}

ul.news-list li {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    border-bottom: solid 1px #CCCCCC;
    background-color: #FFF;
    transition: all 0.3s;
}

ul.news-list li:first-child {
    border-top: solid 1px #CCCCCC;
}

ul.news-list li:hover {
    background-color: #f4f4f4;
}

ul.news-list li a {
    width: 95%;
    margin: 0 auto;
    padding: 15px 2.5%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    color: #00AA90;
}

ul.news-list li a:before {
    content: "";
    width: 100%;
    height: 10px;
    display: block;
    margin:0;
}

ul.news-list li a.unread:before {
    background-image: url("../img/news/icon_unread.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

ul.news-list li a:after {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    justify-content: flex-end;
    background-image: url("../img/news/news-arr_sp.svg");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    bottom: 10px;
}

ul.news-list li .date {
    width: 50%;
    margin: 0 0 10px;
    color: #333333;
    font-size: 80%;
}

ul.news-list li .cat {
    width: 30%;
    margin: 0 0 5px;
    font-size: 70%;
    line-height: 160%;
    text-align: center;
    letter-spacing: 0.2em;
    background-color: #FFF;
    border: solid 1px #48C3A5;
}

ul.news-list li .c-ippan {
    border-color: #48C3A5;
    color: #48C3A5;
}

ul.news-list li .c-new {
    border-color: #FFA326;
    color: #FFA326;
}

ul.news-list li .c-imp {
    border-color: #F54545;
    color: #F54545;
}

ul.news-list li .title {
    width: 100%;
    font-size: 100%;
}

article.news-article {
    width: 100%;
    margin: 60px 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

article.news-article h2.news-title {
    width: 100%;
    margin: 0 0 10px;
    padding: 0 0 10px;
    position: relative;
    overflow: hidden;
    border-bottom: solid 3px #00AA90;
    font-size: 120%;
    font-weight: bold;
    color: #00AA90;
}

article.news-article .news-info {
    width: 100%;
    margin: 0 0 60px;
    display: flex;
    justify-content: flex-start;
}

article.news-article .news-date {
    margin: 0 20px 0 0;
    font-weight: bold;
    font-size: 90%;
}

article.news-article .news-cat {
    width: 30%;
    font-size: 80%;
    text-align: center;
    letter-spacing: 0.2em;
    background-color: #FFF;
    color: #00AA90;
    border: solid 1px #00AA90;
}

article.news-article .c-ippan {
    border-color: #48C3A5;
    color: #48C3A5;
}

article.news-article .c-new {
    border-color: #FFA326;
    color: #FFA326;
}

article.news-article .c-imp {
    border-color: #F54545;
    color: #F54545;
}

article.news-article .news-contents {
    width: 98%;   
    margin: 0 auto;
}

/***TENKEY***/

.tenkey {
    display: none;
    position: absolute;
    background-color: #ffffff;
    width: 270px;
    padding: 5px;
    top: 0px;
    left: 0px;
    z-index: 600;
    border: 3px #cccccc double;
}

.tenkey a {
    color: #000;
}

.tenkey button {
    width: 80px;
    height: 50px;
    margin: 5px;
    border: 0px;
    color: #000;
}
.tenkey button.bs {
    width: 170px;
    background-color: #bbe7ff;
}
.tenkey button.add {
    width: 125px;
    background-color: #06aa90;
}
.tenkey button.del {
    width: 125px;
    background-color: #ff4a35;
}
.keyouter {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 500;
}

}