@charset "UTF-8";

/* ====================================================================
    スマホ用
=====================================================================*/

body{
    width: 100vw;
    position: relative;
    /* font-family: 'Dawning of a New Day', cursive; */
    font-family: 'Noto Sans JP', sans-serif;
    font-family: 'Poppins', sans-serif;
    /* overflow: hidden; */
}

main{
    margin-top: 10%;
}

a{
    text-decoration:none; 
    font-size: 3vw;
    line-height: 3em;
}

/* メニューリスト */

.hide {
    position: absolute;
    text-align: center;
    right: 8.7vw;
    top: 24vw;   
    height: 10vw;
    opacity: 0;
    }   
    
.hide ul li a{
    color: rgb(107, 107, 107);
}

.show {
    opacity: 1;
    }

.menu{ /* ハンバーガーマーク */
	height:10vw;
	width:10vw;
	position: absolute;
    top: 10vw;
    right: 10vw;
}

.box_1{
    width: 90%;
    margin: 0 auto 0;
}

.box_1 img{
    display: block;
    width: 20vw;
    margin: 5% 0 5% 5%;
}

h1{
    font-size: 10VW;
    margin: 0 0 10% 3%;
}

.logo{
    display: flex;
    background-color: #e8e8e8;
    margin-bottom: 2%;
}

.logo h2{
    font-weight: bolder;
}

.logo p{
    width: 100%;
    margin-top: 3%;
    text-align: left;
    font-size: 2vw;
    line-height: 3vw;
}

.logo div{
    margin: auto 0;
    padding-left: 5%;
}

.kuma img{
    display: flex;
    width: 40%;
    margin: 15% auto 0;
    transform-origin:center bottom;
    animation:jump 1s ease-in alternate infinite; 
}

@keyframes jump {
    0% {
    transform:translateY(-10%) scale(1,1);
    }
    80% {
    transform:translateY(0%) scale(1,1);
    }
    100% {
    transform:translateY(0%) scale(1.1,0.9);
    }

}
.kuma p{
    margin: 0 0 7%;
    font-size: 3vw;
    font-weight: 900;
    line-height: 6vw;
    text-align: center;
    color: #454545;
}

footer{
    margin: 5% 0 1% 0;
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 6pt;
}

.pig{
    display: flex;
    background-color: #e8e8e8;
}

.pig h2{
    margin:4% 0 0 0%;
    font-weight: bolder;

}

.pig p{
    width: 100%;
    margin: 3% 0 0 0%;
    text-align: left;
    font-size: 2vw;
    line-height: 3vw;
}

.pig div{
    margin: auto 0;
    padding-left: 5%;
}

/* メニューバー_下部 */

.under_nav{
    margin: 3vw auto 0;
    color: #ffffff;
    padding: 5px;
    font-size: 16pt;
    border-radius: 5px;
    width: 50%;
}

.under_nav li{
    background-color: #000000;
    margin: 20px;
    text-align: center;
    border-radius: 50px;

}

.under_nav a{
    text-decoration: none;
    color: #ffffff;
    font-size: 2vw;
}

.under_nav p{
    text-decoration: none;
    color: #000000;
    font-size: 8pt;
    line-height: normal; 
    text-align: center;
}


/* ====================================================================
    pc用 画面幅641px以上
=====================================================================*/

@media screen and (min-width: 641px){
    /* メニューリスト */

    main{
        max-width: 1000px;
        margin: 0 auto;
    }

    .box_1 img{
        width: 200px;
    }

    a{
        text-decoration:none; 
        font-size: 1vw;
        line-height: 3em;
    }

    .hide {
        right: 4.5vw;
        top: 11vw;   
    }

    .menu{ /* ハンバーガーマーク */
        height:5vw;
        width:5vw;
        top: 5vw;
        right: 5vw;
    }

    p{
        font-size: 0.8vw;
        line-height: 2.5vw;
        color: rgb(108, 108, 108);
    }

    .under_nav{
        width: 30%;
    }

    .under_nav a{
        font-size: 1.5vw;
    }
    
    .under_nav p{
        font-size: 10pt;

    }
    
  
}   

/* ====================================================================
    pc用 画面幅800px以上
=====================================================================*/

@media screen and (min-width: 800px){
    /* メニューリスト */

    .hide {
        right: 5vw;
    }
}

/* ====================================================================
    pc用 画面幅1000px以上
=====================================================================*/

@media screen and (min-width: 1000px){

    .logo p{
        line-height: 25pt;
        font-size: 14pt;
    }
    
    .kuma p{
        line-height: 25pt;
        font-size: 14pt;
    }

    h2{
        font-size: 20pt;
    }         

    .pig p{
        line-height: 25pt;
        font-size: 14pt;
    }

    .pig h2{
        margin:14% 0 0 5%;
    }

    .hide {
        right: 5.5vw; 
    }

    .under_nav a{
        font-size: 1vw;
    }

  
}

