@charset "UTF-8";

html{
	overflow-y: scroll;
}
*{
	box-sizing: border-box;
}
body{
    background: linear-gradient(
        85deg,
        #EAF7FD 0%,
        #EEF9F1 50%,
        #FFF8E9 100%
    );
    font-family: 'Noto Sans JP',sans-serif;
    font-weight:600;
    color:#0e2247;
	overflow-x:clip;
}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td,figure,hr,img,p{
	margin: 0;
	padding: 0;
	-webkit-appearance: none;
	outline: none;
	border: none;
}
img{
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
	width:auto;
}
li{
	list-style-type: none;
}
a{
	text-decoration:none;
	color:#0e2247;
	transition: all ease .3s;
}
a img{
	transition: all ease .3s;
}
:root{
	--sky: #BEE8FF;
	--sky-rgb: 190, 232, 255;

	--orange: #FFA94D;
	--orange-rgb: 255, 169, 77;

	--blue: #28B6F6;
	--blue-rgb: 40, 182, 246;

	--gray: #a2a2a2;
	--gray-rgb:162, 162, 162;

    --yellow:#FFD93D;
    --yellow-rgb:255, 217, 61;

    --pink:#FF95CF;
    --pink-rgb:255, 149, 207;

    --green:#8ff0dc;
    --green-rgb:30, 168, 142;

	--font: #000000;
	--font-rgb: 0,0,0;
}