/* 外部スタイルシート、ファイル名：style.css */
/* フォント */

a:link { text-decoration:underline ; color:#003399 }
a:visited { text-decoration:underline ; color:#663399 }
a:hover { text-decoration:underline ; color:#CC0000 }
a:active { text-decoration:underline ; color:#CC0000 }


body
 {
 color: #333333;
 scrollbar-base-color: #ffffff;
 scrollbar-face-color: #ffffff;
 scrollbar-arrow-color: #23160A;
 scrollbar-highlight-color: #ffffff;
 scrollbar-3dlight-color:#23160A;
 scrollbar-shadow-color: #23160A;
 scrollbar-darkshadow-color: #ffffff;
 scrollbar-track-color: #ffffff;
 overflow-y: scroll;
 font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Osaka, sans-serif;
 }



hr {
height: 2px;
background-color: #23160A;
border: none;
color: #23160A;
}


html {-webkit-text-size-adjust:none}










/* 以下モバイル版 右上固定メニュー用 */





.menu-btn {
    position: fixed;
    top: 0px;
    right: 0px;
    display: flex;
    height: 32px;
    width: 32px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #23160A;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 2px;
    width: 16px;
    border-radius: 2px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 6px;
}
.menu-btn span:after {
    top: 6px;
}



#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

#menu-btn-check {
    display: none;
}



.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #23160A;
}
.menu-content ul {
    padding: 20px 10px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 4px 1px 4px 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 4px;
    height: 4px;
    border-top: solid 2px #23160A;
    border-right: solid 2px #23160A;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 8px;
}



.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #23160A;
    transition: all 0.5s;/*アニメーション設定*/
}



#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}