@charset "UTF-8";

@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);

*{
    color: #202020;
    font-size: 15px;
    font-family: 'Noto Sans JP', sans-serif;
    scroll-behavior: smooth;
    animation-name: fade;
    animation-duration: 1s;
}
@keyframes fade{
    0%{ opacity: 0; }
    100%{ opacity: 1; }
    0%{ opacity: 0; }
}
a{
    color: #202020;
    text-decoration: none;
    transition: all 0.4s;
}
p{
    margin-bottom: 1rem;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    height: 60px;
    width: 100%;
    z-index: 10; 
    display: flex;
    align-items: center;
    justify-content: space-between;
    background:rgba(255,255,255,0.7);
}
.headerLogo{
    margin: 0 25px;
}
.headerLogo img{
    max-height: 25px;
}
#gnaviList{
    display: flex;
}
.navi-menu, .navi-menu_drop{
    position: relative;
    padding: 19px 25px;
}
.navi-menu:hover, .navi-menu_drop:hover{
    background: rgba(0,211,253,0.1);
}
.navi-menu::after, .current::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background: #00D3FD;
    transition: all 0.4s;
}
.navi-menu:hover::after, .current::after{
    width: 100%;
}
.navi-menu_drop a:hover{
    cursor: default;
}
.navi-menu_drop:hover .drop_menu-list{
    visibility: visible;
    opacity: 1;
}
.drop_menu-list{
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
    position: absolute;
    left: 0;
    top: 100%;
    width: 140px;
    background:rgba(255,255,255,0.7);
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
}
.drop_menu-list a:hover{
    cursor: pointer;
}
    /* ドロワーメニューここから */
#navi_drawer{
    display: none;
}
@media screen and (max-width: 750px) {
    
    #gnaviList{
        display: none;
    }
    #navi_drawer{
        display: inline-block;
    }
    .menu-btn {
        position: fixed;
        top: 0;
        right: 0;
        display: flex;
        height: 60px;
        width: 60px;
        justify-content: center;
        align-items: center;
        z-index: 30;
    }
    .menu-btn span,
    .menu-btn span:before,
    .menu-btn span:after {
        content: '';
        display: block;
        height: 3px;
        width: 40px;
        border-radius: 3px;
        background-color: #404040;
        position: absolute;
    }
    .menu-btn span:before {
        bottom: 15px;
    }
    .menu-btn span:after {
        top: 15px;
    }
    #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-btn-check:checked ~ #global-navi_sp{
        left: 20%;
    }
    #global-navi_sp{
        width: 80%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 100%;
        z-index: 20;
        background-color: #fff;
        transition: all 0.8s;
        opacity: 0.9;
        text-align: center;
        margin: 0;
        padding-top: 71px;
    }
    .navi-menu_sp{
        display: inline-block;
        width: 70%;
        padding: 20px;
        border-bottom: solid 1px #999;
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    .accordion_title{
        font-size: 1.1rem;
    }
    .accordion_title:after{
        content: "+";
        position: absolute;
        right: 20%;
        line-height: .7;
        pointer-events: none;
        font-size: 1.8rem;
        font-weight: 100;
    }
    .accordion[open] .accordion_title:after{
        content: "-";
    }
    .acdn_menu-list{
        margin-top: 20px;
    }
    .acdn_menu-item{
        padding: 15px;
        font-size: 1.1rem;
    }
    .navi_close{
        border: solid 1px #202020;
        display: inline-block;
        width: 60%;
        padding: 10px;
        margin-top: 30px;
    }
    .navi_close-btn{
        width: 100%;
        display: inline-block;
    }
}
    /* ドロワーメニューここまで */
h1{
    font-size: 3rem;
    letter-spacing: 0.3rem;
    font-weight: 400;
}
h2{
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.1rem;
    text-align: center;
    margin: 60px;
}

footer{
    margin: 60px;
}
.copyright{
    text-align: center;
    padding: 30px;
}
#topBtn{
    height: 70px;
    width: 70px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #fff;
    border: solid 2px #202020;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    z-index: 2;
}
#topBtn::before, #topBtn::after{
    content: "";
    height: 15px;
    width: 15px;
    border-top: 2px solid #202020;
    border-right: 2px solid #202020;
    transform: translateY(20%) rotate(-45deg);
}

/*　SPビュー　*/
@media screen and (max-width: 480px) {
    
    .headerLogo{
        margin: 0 15px;
    }
    .menu-btn{
        right: 10px;
    }
    h1{
        font-size: 2rem;
    }
    h2{
        font-size: 1.5rem;
        margin: 60px 0 20px;
    }
    #topBtn{
        right: 15px;
        bottom: 15px;
    }

}