@charset "uft-8";

body {
    font-family: 'Noto Sans JP', sans-serif , "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    color: 333;
    font-size: 15px;
    line-height: 1.5 ;
}

/*
 header
 */

 /* 横の幅狭くなると表示が崩れるので余裕あったらそれ用のヘッダー作る */

.header {
    display: flex;
    width: 100%;
    height: 100px;
    background-color: rgb(0, 140, 255);
    align-items: center;
    justify-content: center;
  }

.header-menuimg {
    margin-right: auto;
}
        
.header-headline {
    padding: 20px;
    margin-right: auto;
}
.header-form {
    margin: 10px;
}
.header-search {
    appearance: auto;
    box-sizing: border-box;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 3px;
    width: 200px;
    height: 3em;

}
.header-submit {
    border: 1px solid rgb(0, 0, 0);
    border-radius: 3px;
    margin-left: 20px;
    height: 3em;
}

.header-acct_icon {
    margin: 20px;
}

.header-item {
    list-style: none;
    display: inline-block;
}



/* 
最近の学習
*/


.Recently-line {
    display: flex;
    justify-content: space-between;
    height: 100px;
}
.Recently-headline {
    padding-left: 50px; 
    font-size: bold;
    font-size: 30px;

}
.Recently-more {
    text-decoration: none;
    position: relative;
    left: 50px;
}

.Recently-more:hover {
    color: red;
}

/* 最近の学習中身 */

.Recently-problem {
    display: flex;
}

.Recently-item {
    list-style: none;
    width: 400px;
    height: 200px;
    border: 1px solid gray;
    border-radius: 10px;
    margin: 0px 20px;

}


.Recently-title {
    font-weight: 600;
    font-size: 20px;
    padding: 10px;
}

.Recently-value {
    text-align: right;
    padding-right: 10px;
}


.Recently-QA {
    text-align: right;
    line-height: 2em;
}


/* 
問題集表示
*/


.problems-line {
    display: flex;
    justify-content: space-between;
    height: 100px;
}
.problems-headline {
    padding-left: 50px; 
    font-size: bold;
    font-size: 30px;

}
.problems-more {
    text-decoration: none;
    position: relative;
    left: 50px;
}

.problems-more:hover {
    color: red;
}

/* 問題集中身 */

.problems-problem {
    display: flex;
    overflow-x: scroll;
}

.problem-item {
    list-style: none;
    width: 400px;
    height: 200px;
    border: 1px solid gray;
    border-radius: 10px;
    margin: 0px 20px;

}


.problem-title {
    font-weight: 600;
    font-size: 20px;
    padding: 10px;
}

.problem-value {
    text-align: right;
    padding-right: 10px;
}


.problem-QA {
    text-align: right;
    line-height: 2em;
}

/* 
フォルダ表示
*/


.Folder-line {
    display: flex;
    justify-content: space-between;
    height: 100px;
}
.Folder-headline {
    padding-left: 50px; 
    font-size: bold;
    font-size: 30px;

}
.Folder-more {
    text-decoration: none;
    position: relative;
    left: 50px;
}

.Folder-more:hover {
    color: red;
}

/* フォルダ中身 */

.Folder-problem {
    display: flex;
}

.Folder-item {
    list-style: none;
    width: 400px;
    height: 200px;
    border: 1px solid gray;
    border-radius: 10px;
    margin: 0px 20px;

}


.Folder-title {
    font-weight: 600;
    font-size: 20px;
    padding: 10px;
}

.Folder-value {
    text-align: right;
    padding-right: 10px;
}


.Folder-QA {
    text-align: right;
    line-height: 2em;
}

/*
 カードのaタグの下線消去
 */

 .Goto-Files {
    text-decoration: none;
    color: black;
}

