@charset "utf-8";

*{
    margin: 0;
    padding: 0;
    line-height: none;
    box-sizing: border-box;
    font-family: serif;
}
li {
    list-style: none;
}
/* html */
body{
    background-color: #fff;/* 入れないと真っ黒になる */
}
/* header */
.header {
    background-color: #ff7300;
    height: 100vh;/* 見る高さ　パソコンの見る高さに合わせた */
    display: flex;
    justify-content: center;
    align-items: center;
}
.title {
    background-color: rgba(0, 0, 0, 0.18);
    text-align: center;
    padding: 50px 30px 80px;
    margin: 500px;
    color: #fff;
}
.title p {
    font-size: 25px;
    font-weight: 350;
}
img{
    vertical-align: bottom;/* 写真を挿入すると下に隙間ができるので埋める */
}
h1{
    margin: 70px auto 50px;
    text-align: center;
    width: 500px;
    font-size: 40px;
    font-weight: 600px;
}
main > p {
    text-align: center;
    display: flex;
    justify-content: center;
    margin: 170px auto 150px ;
    width:500px;
    font-size: 17px;
}
h2{
    text-align: center;
    margin: 250px auto 300px;
}

li {
     text-align: center
}
.left {
    margin: 0 800px 0 0;
}
.right {
    margin: 300px 0 300px 800px;
}
.conta


@media screen and (max-width:640px) {
    display: block;
}