/*フォント*/
@font-face{
    font-family:'mainFont';
    src:url(/img/azukiLB.ttf);
}

/*ホーム全体*/
body{
    background-image:url(/img/ame.png);
    font-family:mainFont;
    margin:10px;
    padding:10px;
}

/*タイトル*/
h1{
    display:flex;
    justify-content:space-between;
    background:linear-gradient(#CFC,#4F8,#CFC);
    padding:10px;
    border-radius: 5px;
}

/*ボタン共通設定*/
button{
    font-weight:bold;
    border:groove 3px;
    border-radius: 10px;
    background-blend-mode:lighten;
    background-size:cover;
}
button:hover{
    background-color:#CCC;
}

/*両端揃え*/
.between{
    display:flex;
    justify-content:space-between;
}

/*付箋下地*/
.husen{
    display:inline;
    position:relative;
    background:linear-gradient(#EEE,#DDD);
    padding:5px 50px 5px 50px;
    border-bottom:solid 1px;
    border-right:solid 1px;
}

/*緑色付箋*/
.gback{
    position:absolute;
    width:10px;
    height:100%;
    top:0px;
    left:0px;
    background-color:#5A5
}
/*青色付箋*/
.bback{
    position:absolute;
    width:10px;
    height:100%;
    top:0px;
    left:0px;
    background:linear-gradient(#88C,#88A);
}

/*入力ボックス*/
.inbox{
    border:rudge 3px;
    border-radius: 10px;
}

/*戻るボタン*/
#back{
    font-size:20px;
    height:40px;
}

