/* i-Nes stylesheet */
/* 2023.06 ishimaru Development Division 2 */
/* 全体に共通するもの */

/* 共通 */
body{
    margin: 0;
    padding: 0;
    
    background-color: #ecebff;
    font-family: 'Sawarabi Gothic', sans-serif;
	animation: fadein .5s forwards;
}
@keyframes fadein {
	0% {opacity: 0}
	100% {opacity: 1}
}
main{
    width: 1000px;
    margin: 20px auto;
    display: flex;
    justify-content: space-between;    
}

/* ヘッダー部分 */
header{
    width: 100%;
    margin: 0;
    padding: 0;
    
    background-color: #FFFFFF;
}
.header_main{
    width: 1030px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.header_left{
    margin: 0;
    padding: .5em;
}
.header_left img{
    width: 200px;
    max-width: 100%;
}
.header_right{
    display: flex;
    justify-content: flex-end;
}
.header_right div{
    margin: 0 1em;
}
.header_name ul{
    list-style: none;
    margin: 1em 0;
    padding-left: 0;
}
.header_logout p{
    margin: 1em 0;
    padding: 1em;
    background-color: #ecebff;
    border:solid 1px 3551b7;
    border-radius: 10px;
}
.header_logout a{
    text-decoration: none;
    color: #333;
}

/* サイドバー部分 */
.side{
    width: 230px;
}
.side dl dt a{
    color: #FFF;
    text-decoration: none;
    
}
.side dl{
    margin: 0 auto 25px;
    background-color: white;    
    border-radius: 10px;    
}
.side dl dt{
    padding: .5em;    
    background-color:#3551b7; 
    color: white;
}
.side dl dd{
    padding: 1em;
    margin-left: 0;
}
.side dl dd ul{
    list-style: none;
    padding-left: 0;
    margin: 0;   
}
.side dl dd ul li{
    margin-bottom: 1em;
}
.side dl dd ul li a{
    color: #333;
    text-decoration: none;
}
.side dl dd ul li a:hover{
    opacity: .5;
    transition: .5s;
}
.active a{
    border-bottom: solid 2px #cf3712;
    transition: 1s;
}
/* メインコンテンツ部分 */
.contents{
    width: 750px;
    display: block;
    justify-content: center;
}
.information{
    width: 100%;
    background-color: #FFF;
}
.information ul{
    padding: 1em 1em 1em 2em;
    margin: 0 0 20px;
}
.information ul li a{
    color: #3551b7;
    text-decoration: none;
    
}
.information ul li a:hover{
    transition: .5s;
    text-decoration:underline;
}

/* フッター部分 */
.footer_menu ul{
    list-style: none;
    padding-left: 0;
    display: flex;
    justify-content: center;
}
.footer_menu ul li{
    margin: 0 1em;
}
.footer_menu ul a{
    text-decoration: none;
    color: #999;
}
.footer_menu ul a:hover{
    opacity: .5;
    transition: .5s;
}
.footer_copyright{
    margin: 20px auto 0;
    text-align: center;
}
.footer_copyright p{
    margin: 0;
    color: #999;
}
.footer_copyright a{
    color: #999;
    text-decoration: none;
}
.footer_copyright a:hover{
    opacity: .5;
    transition: .5s;    
}
