/* @import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css); */
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap);

body {
    font-family: "Noto Sans JP", sans-serif,Helvetica Neue,Arial,Hiragino Sans,Hiragino Kaku Gothic ProN,BIZ UDPGothic,Meiryo,sans-serif;
    /* font-family: "Noto Sans JP", sans-serif; */
    /* font-family: Helvetica Neue,Arial,Hiragino Sans,Hiragino Kaku Gothic ProN,BIZ UDPGothic,Meiryo; */

    font-feature-settings: "palt"; /* 文字間詰める */
    font-size: 95%; /* 文字サイズ */
}

/* メニュー固定 */
.site-header{
    background: #fff;
    position: fixed;
    justify-content: space-between;
    width: 100%;
    z-index: 100;
}
.fixed{
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

/* フッター */
footer{
    width: 100%;
    height: 120px;
    text-align: center;
    padding: 50px 0;
    color: #fff;
    background-color: #0e6b09; /* #cab64a; */
    clear: both; /* 回り込み解除 */
}

/* twitterアイコン(fontawesome) */
.snsi{
    color:#555;
    /*color:#00acee; twitter*/
    /*color:#3b5998; facebook*/
    /*color:#1dcd00; line*/
    padding:2px 0 0 2px;

    @media screen and (min-width: 768px) {
        padding:8px 0 0 8px;
    }
}
/*
.snsi:hover{
    opacity: 0.4;
    transition: all 0.7s ease;
}
*/
.twti:hover{
    /* color: rgb(29,161,242); */
    color: rgb(0,0,0);
    transition: all 0.5s ease;
}
.fbki:hover{
    color: rgb(59,89,152);
    transition: all 0.5s ease;
}
.isti:hover{
    color: rgb(207,46,146);
    transition: all 0.5s ease;
}
.ytbi:hover{
    color: rgb(218,23,37);
    transition: all 0.5s ease;
}
.lini:hover{
    color: rgb(6,199,85);
    transition: all 0.5s ease;
}

/* TOPへ戻るボタン */
#pagetop {
    position: fixed;
    right: 0;
    bottom: 0;
    text-indent: -9999px;
    margin: 0;
}
#pagetop a {
    position: relative;
    display: block;
    width: 65px;
    height: 65px;
    background: rgba(0,0,0,1);
    transition: opacity .6s ease;
}
#pagetop a:hover {
    /* background: rgb(0,255,85,0.8); */
    opacity: .7;
}
#pagetop a::before {
    position: absolute;
    top: 7px;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 14px;
    height: 14px;
    margin: auto;
    content: '';
    transform: rotate(-45deg);
    border-top: 1px solid #FFF;
    border-right: 1px solid #FFF;
}
@media screen and (max-width:767px) {
#pagetop a {
    width: 45px;
    height: 45px;
}
#pagetop a::before {
    top: 5px;
    width: 10px;
    height: 10px;
}
}