@charset "utf-8";
/* CSS Document */
@import "reset.css";
@import "util.css";
@font-face {
	font-family: 'jp_sttl01'; /* お好きな名前にしましょう */
	src: url('../font/NotoSansCJKjp-Medium.eot'); /* IE9以上用 */
	src: url('../font/NotoSansCJKjp-Medium.eot?#iefix') format('embedded-opentype'), /* IE8以前用 */ url('../font/NotoSansCJKjp-Medium.woff') format('woff'), /* モダンブラウザ用 */ url('../font/NotoSansCJKjp-Medium.woff') format('woff'); /* iOS, Android用 *//* 念の為指定しておきます */
	font-weight: normal; /* 念の為指定しておきます */
	font-style: normal;
	vertical-align: top;
	margin: 0px;
	padding: 0px;
}
* {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}
body {
	text-align:center;
    position: relative;
    height: 100%;
}
img {
	max-width: 100%;
	height:auto;
}
a {
	color: #ffa800;
	text-decoration: none;
}
a:hover {
	color: #FF813F;
	text-decoration: underline;
}
.flex01{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    height: 100%;
    z-index: 2;
}
h1{
    font-size: 10vw;
    line-height: 2;
}
footer{
    position: fixed;
    bottom: 0;
    height: 2rem;
    width: 100%;
    left: 0;
    z-index: -1;
}