@charset "UTF-8";

@import url('https://fonts.googleapis.com/css?family=Asap+Condensed:600');

/*additional reset
---------------------------------------------------*/
*, *:before, *:after {
    -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.safari #content, body.safari #footer {/*サファリでリンク先から戻った時文字が拡大する対応*/
    -webkit-text-size-adjust: 100%;
}
body {
    font-family: "Helvetica Neue",
        Arial,
        "Hiragino Kaku Gothic ProN",
        "Hiragino Sans",
        Meiryo,
        sans-serif;
    margin: 0;
}
p{
    font-size: 17px;
    line-height: 1.7;
}


a:hover,
a:active {
	text-decoration: none;
}

/*layout
----------------------------------------------------*/

html,body{
    background: #e5f5fe;
}
h1{
    text-align: center;
    font-weight: bold;
    font-size: 28px;
    color: #124aa6;
}

body{
    padding: 80px 0;
}

p{
    max-width: 1000px;
    width: 93%;
    margin: 20px auto 0;
}
p.backbtn {
    width: fit-content;
    margin: 40px auto;
    background: #3F51B5;
    padding: 10px 30px;
    border-radius: 10px;
}
p.backbtn a {
    color: #fff;
    text-decoration: none;
}