@charset 'UTF-8';/*  */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap');

/* Base
------------------------------------------------------------*/

.pc {
  display:none;
}
.div {
    display:none;
}




/*---------------------ハンバーガー------------------*/
.menu-btn {
    position: fixed;
    margin:1vw 0vw;
    top:0.5vw;
    right: 1vw;
    display: flex;
    height: 3.5vh;
    width: 3.5vh;
    justify-content: center;
    align-items: center;
    z-index: 99;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 20px;
    border-radius: 3px;
    background-color:#393E46;/*------------------------color3--------------------------------*/
     /*---------------------------------------メニューのバツの色------------------------------------------*/
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}
#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);
    background-color:#EEEEEE;
    /*---------------------------------------メニューのバツの色------------------------------------------*/
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
    background-color:#EEEEEE;
    /*---------------------------------------メニューのバツの色------------------------------------------*/
}
#menu-btn-check {
    display: none;
}
.inner1 ul li a h2{
    margin:0.5vh 0;
}
.menu-content ul {
    padding: 70px 10px 0;
}
.inner1 ul li, .inner2 ul li {
    list-style: none;
    margin:auto;
    width:60vw;
    height:100%;
    border-radius: 5px;
        /*---------------------------------------list内の色------------------------------------------*/
}

.inner ul li:hover{
    background: #0f0f0f;
    border-radius: 5px;
    background-color: #393E46;
}
.menu-content ul li a {
    color: #EEEEEE;/*------------------------color1--------------------------------*/
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color:#393E46;/*------------------------color3--------------------------------*/
    opacity:0.975;/*---------------------------------*/
        /*---------------------------------------メニューの背景の色------------------------------------------*/
    transition: all 0.5s;/*アニメーション設定*/
}
#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}

@media screen and (min-width:600px) {

    .inner1 ul li a h2{
        margin:1vh 0;
    }
    .inner2 ul li a{
        font-size:3rem;
    }


    
}



@media screen and (min-width:1025px) {

    .inner1 ul li a h2{
        margin:1vh 0;
    }
    .inner2 ul li a{
        font-size:2rem;
    }
}
