*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html{
    font-size: 62.5%;
}

img{
    border:0px;
    object-fit: contain;
	pointer-events: none;

}

li{
    list-style-type: none;    
}


/*------------------------↓一番後ろの背景------------------------*/
body{
    background-image: linear-gradient(135deg, #f5f7fa 0%, #fefcfe 100%);
    font-size: 1rem;
}

/*------------------------↓リンク------------------------*/
a{
    outline:none;
    text-decoration:none;
}
a:link{color:#55a}
a:visited{color:#55a;}
a:hover{color:#55f;}

/*------------------------↓文字の設定------------------------*/
p {
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 1.4rem;
    color: #333;
}

h2, h3, h4, h5{
    font-family: 'Ubuntu', sans-serif, 'M PLUS 1p', sans-serif;
    color: #333;
}

h1{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
}
 h2{
    font-size: 6rem;/*モバイルは3rem*/ 
    font-weight: lighter;
 }

h3{
    text-align:center;
    margin:30px 0;
}

h4{
    font-size: 1.5rem; 
    margin: 0.5em 0 0;
}

h5{
    font-size: 1rem; 
    text-align:center;
    margin: 1em 0 0;
}

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

h2{
    font-size: 3rem;
 }
}


