@charset "UTF-8";

#search_input {
    background-color: #fff;
    border-color: #fff;
    font-family: Roboto;
    font-size: 16px;
    font-weight: 300;
    margin-top: 12px;
    margin-left: 12px;
    padding: 5px 11px 5px 13px;
    text-overflow: ellipsis;
    width: 380px;
    border: 3px solid #fff;
    box-shadow: 0 2px 3px 0 rgba(70, 70, 70, 0.5);
}
#search_input:focus {
    border-color: #4d90fe;
}

/* Menu Modal */
.modalMenu {
    display: block;
    opacity: 1;
    position: fixed;
    z-index: 90;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .4s;
}  
.modalMenuBg {
    width: 100%;
    height: 100%;
    background-color: rgba(30, 30, 30, 0.2);
    display: grid;
    place-items: center;
}
.modalMenuWrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform:translate(-50%,-50%);
    width: 70%;
    max-width: 560px;
    padding: 10px 30px;
    background-color: rgba(70, 137,230, 0.75);
    box-shadow: 0 0px 1px 0 rgba(0, 0, 0, .3);
}
.modalMenuContents{
    text-align: center;
    color: #eaf0ff;
}
.closeMenuModal {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    cursor: pointer;
    color: #d3e3f3;
}
.menuBtn {
    display: inline-block;
    opacity: 1;
    appearance: none;
    color: #111;
    background-color: #fff;
    margin: 0.7em;
    padding: 0.5em 1.5em;
    font-size: larger;
    font-weight: 600;
    background-color: #d3e3f3;
    box-shadow: 0 0px 1px 0 rgba(0, 0, 0, .3);
}
.menuBtn:hover {
    color: #ff0000;
}
.menuBtn:focus {
    color: #ff0000;
}
.mshow {
    display: block;
    opacity : 1;
}
.mclose {
    display: none;
    opacity : 0;
}
.modalPref {
    display: none;
    position: fixed;
    z-index: 80;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .4s;
}
.modalPrefBg {
    width: 100%;
    height: 100%;
    background-color: rgba(30, 30, 30, 0.2);
    overflow-y: scroll;
    display: grid;
    place-items: center;
}
.modalPrefWrapper {
    width: 80%;
    height: fit-content;
    max-width: max-content;
    padding: 0 20px 20px 25px;
    background-color: rgba(255, 255, 255, 0.7);
}
.modalPrefContents{
    font-size: 1rem;
}
.closePrefModal {
    position: relative;
    padding-top:5px;
    right: -0.5rem;
    text-align: right;
    cursor: pointer;
    color: #565656;
}
.pshow {
    display: block;
}
.pclose{
    display: none;
}
.pBtn {
    display: inline-block;
    appearance: none;
    color: #ffff;
    background-color: #4688e6;
    width: 4.5em;
    margin: 1px 1px 1px 0px;
    padding-top: 0.3em;
    padding-bottom: 0.25em;
    font-size: 1.15rem;
    letter-spacing: 0.25em;
    text-align: center;
    box-shadow: 0 0px 1px 0 rgba(0, 0, 0, .3);
}
.pBtn:hover {
    outline: none;
    cursor: pointer;
    box-shadow: 0 0 0 2px #aaa;
}
.pBtn:focus {
    outline: none;
    box-shadow: 0 0 0 2px #aaa;
}
.prefList{
    margin-bottom: 6px;
}
.navi {
    display: block;
    position: fixed;
    cursor: pointer;
    z-index: 40;
    background-color: #fff;
    color: #777;
    right: 10vh;
    bottom: 1vh;
    width: 7rem;
    height: 1.4rem;
    padding: 12px 7px 5px 7px;
    margin-bottom: 16px;
    text-align: center;
    line-height: 1em;
    font-size: 1em;
    font-family: 'メイリオ', 'Meiryo', sans-serif;
    font-weight: 600;
    box-shadow: 0 2px 2px 0 rgba(0,0,0, .3);
}
.navi:hover {
    cursor: pointer;
    color: #333;
    background-color: #e7e7e7;
}
.navi:active {
    color: rgb(100,100,255);
}