/* 377px以上 */
@media only screen and (min-width: 377px), print{
    .navigation ul {
        display: flex;
        margin: 3px 0;
    } 
    .navigation{
        height: 60px;
    }
    .navigation li{
        margin: 5px 0;
    }
}
/* 376px以下 */
@media only screen and (max-width: 376px){
    .header {
        height: 150px;
    }
    .navigation ul {
        margin:10px 0;
    }
    .navigation li{
        margin:3% ;
    }
}

/* pc　638px以上 */
@media only screen and (min-width: 638px), print{
    .header{
        display: flex;
    }
}
/* 943px以上 */
@media only screen and (min-width: 943px), print{
    .underTable {
        display: flex;
    } 
}

/*================ << header周り >> ================*/

.header {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    border-bottom: 3px solid rgb(240, 173, 96);
}
h1{
    font-size: 20px;
    margin: 0; padding: 0;
}
.toMypage{
    font-size: 1em;
    color: #fff;
    padding: 10px 20px;
    border:solid 2px #666;
    border-radius: 25px;
    cursor: pointer;
    background-color: rgb(240, 173, 96);
    text-decoration: none;
    margin:auto;
    display: inline-block;
}
.header-title {
    padding: 0;
    margin: 0 4%;
    font-size: 40px;
    text-decoration: none;
    color: rgb(240, 173, 96);
}
.navigation {
    width: 100%;
    box-sizing: border-box;
}
.navigation ul {
    justify-content: flex-end;
    list-style: none;
    
}
.navigation li {
    margin-right: 3%;
}
/*================ << mainの表示 >> ================*/
.content {
    margin: 0 auto;  
    position: relative;
}
/*================ << クリックしたら波紋が広がる >> ================*/
.btnripple {
    /*波紋の基点とするためrelativeを指定*/
    position: relative;
    /*はみ出す波紋を隠す*/
    overflow: hidden;
    /*ボタンの形状*/
    text-decoration: none;
    display: inline-block;
    background: rgb(240, 173, 96);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    outline: none;
    font-size: 1em;
    cursor: pointer;
}
.btnripple::after {
    content: "";
    /*絶対配置で波紋位置を決める*/
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /*波紋の形状*/
    background: radial-gradient(circle, #fff 10%, transparent 10%) no-repeat 50%;
    transform: scale(10, 10);
    /*はじめは透過0に*/
    opacity: 0;
    /*アニメーションの設定*/
    transition: transform 0.3s, opacity 1s;
}
/*クリックされたあとの形状の設定*/
.btnripple:active::after {
    transform: scale(0, 0);
    transition: 0s;
    opacity: 0.3;
}
/*================ << 入力欄 >> ================*/
input[type="text"] {
    font-size: 1em;
    margin: 0.5em;
    padding: 0.6rem 1rem;
}
/*================ << input欄のeffect >> ================*/
.effect :focus {
    border: 1px solid rgb(240, 173, 96);
    outline: none;
    box-shadow: 0 0 5px 3px rgba(240, 173, 96, .5);
}
/*================ << 非表示 >> ================*/
.hideArea {
    display: none;
}
/*================ << 表の見出し >> ================*/
.doubleHeading {
    position: sticky;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 2;
}
.headingRow {
    position: sticky;
    left: 0;
    background-color: #fff;
    padding: 0 1em;
    z-index: 1;
}
.headingCol {
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 1;
}
.doubleHeading ::before,
.headingRow ::before,
.headingCol ::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: 100%;
    height: 100%;
}
/*================ << guideArea使い方ガイドの文を書く >> ================*/
.guideArea {
    color: rgb(139, 139, 139);
    padding-left: 1em;
}
/*================ << selectStatusのため >> ================*/
form {
    margin: 0.7em 0;
}
/*high*/
label.radioH{
    cursor: pointer;
}
input.radioH {
    appearance: none;
    position: absolute; 
}
span.radioH{
    position: relative;
    display: flex;
    align-items: center;
    padding-right: 6px;
    color: rgba(0,0,0,0.7);
}
span.radioH::before {
    content: '';
    display: block;
    border-radius: 18px;
    border: 5px solid rgba(240, 173, 96,0.94);
    width: 17px;
    height: 17px;
    background-color: #fff;
}
  
input.radioH:checked+span.radioH::after{
    content: '';
    position: absolute;
    left: 8px;
    display: block;
    /* border-radius: 50%; */
    border-radius: 5px;
    width: 11px;
    height: 11px;
    background-color: rgba(240, 173, 96,0.94);
}
.highlight {
    background-color: rgba(240, 173, 96,0.94);
    /* background-color: rgb(240, 173, 96); */
    padding: 4px; 
    border-radius:  15px;
    margin-right: 6px;
}
/*middle*/
label.radioM{
    cursor: pointer;
}
input.radioM {
    appearance: none;
    position: absolute;
}
span.radioM{
    position: relative;
    display: flex;
    align-items: center;
    padding-right: 6px;
    color: rgba(0,0,0,0.7);
}
span.radioM::before {
    content: '';
    display: block;
    border-radius: 18px;
    border: 5px solid rgba(216, 223, 126,0.9);
    width: 17px;
    height: 17px;
    background-color: #fff;
}
  
input.radioM:checked+span.radioM::after{
    content: '';
    position: absolute;
    left: 8px;
    display: block;
    border-radius: 5px;
    width: 11px;
    height: 11px;
    background-color:rgba(216, 223, 126,0.9);
}
.middlelight {
    background-color: rgba(216, 223, 126,0.9);
    /* background-color: rgb(216, 223, 126); */
    padding: 4px; 
    border-radius: 15px;
    margin-right: 6px;
}
/*not*/
label.radioN{
    cursor: pointer;
}
input.radioN {
    appearance: none;
    position: absolute;
}
span.radioN{
    position: relative;
    display: flex;
    align-items: center;
    padding-right: 6px;
    color: rgba(0,0,0,0.7);
}
span.radioN::before {
    content: '';
    display: block;
    border-radius: 18px;
    border: 5px solid rgb(223, 223, 223);
    width: 17px;
    height: 17px;
    background-color: #fff;
}
  
input.radioN:checked+span.radioN::after{
    content: '';
    position: absolute;
    left: 8px;
    display: block;
    border-radius: 5px;
    width: 11px;
    height: 11px;
    background-color:rgb(223, 223, 223);
}
.notHighlight {
    background-color: rgb(223, 223, 223);
    /* background-color: #ccc; */
    padding: 4px; 
    border-radius: 15px;
    margin-right: 6px;
}


/*================ << dragTableの基本設定 >> ================*/

table.dragArea {
    display: block;
    overflow-x: scroll;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    border: 3px #666 solid;
    border-radius: 15px; 
}
table td.drag {
    text-align: center;
    vertical-align: middle;
    background-color: #ccc;
    border: 1px solid #fff;
}

th {
    text-align: left;
    border: 0.5px solid black;
    background-color: #fff;
}

table td.notHighlighted {
    background-color: #ccc;
}

table td.middlelighted {
    background-color: rgb(216, 223, 126);
}

table td.highlighted {
    background-color: rgb(240, 173, 96);
}
.time {
    padding-left: 1em;
}
/*================ << コンテンツのタイトル >> ================*/
.contentTitle {
    font-size: 40px;
}
.del {
    padding: 0px 0px;
    margin: 0px 0px;
}
.paddingLeft30{
    padding-left:30px;
}
.left30{
    left:30px;
}
/*コンテンツごとの左にバーを出す*/
.leftBar {
    border-left: solid 5px rgb(240, 173, 96);
    padding-left: 10px;
    margin: 20px 0;
}
/* 改行させない */
span.block {
    display: inline-block;
  }
/* >詳細のやつのポインタ変更 */
summary{
    cursor: pointer;
}
