@charset "UTF-8";
/* CSS Document */


p {
	font-family: 'Noto Serif JP', serif;
	font-size: 22px;
	font-weight: 500;
	line-height: 1.8;
	text-align: center;
}



section {
    width: 100%;
	padding: 0;
	height: 100vh;
    background: url("../img/back.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}


section div.wrapper {
    width: 100%;
    max-width: 700px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

section div.wrapper img.logo {
    width: 70%;
    max-width: 400px;
    display: block;
    margin: 0 auto 60px;
}

section div.wrapper h1 {
    width: 80%;
    display: block;
    margin: 0 auto 10px
}

section div.wrapper dl {
    font-family: "Noto Sans JP";
	font-size: 23px;
	font-weight: 500;
	line-height: 1.8;
	text-align: center;
    color: white;
}

section div.wrapper dl dt {
    display: inline-block;
}

section div.wrapper dl dt span {
    font-size: 16px;
}

section div.wrapper dl dd {
    display: inline-block;
}


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

    section div.wrapper img.logo {
        max-width: 350px;
        margin-bottom: 40px;
    }
    
    section div.wrapper h1 {
        max-width: 500px;
    }

    section div.wrapper dl {
        font-size: 40px;
    }
    
    section div.wrapper dl dt span {
    font-size: 30px;
}
}


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

    section div.wrapper img.logo {
        max-width: 400px;
        margin-bottom: 100px;
    }

    section div.wrapper h1 {
        max-width: 600px;
    }

    section div.wrapper dl {
        font-size: 45px;
    }
    
    section div.wrapper dl dt span {
    font-size: 30px;
}

}

