html, body {
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: none #e6e4dd;
    padding-top: 70px;
}

p {
    margin: 0;
    line-height: 2em;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

body * {
    box-sizing: border-box;
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
    word-break: break-word;
}



.bg {
    background: center / cover no-repeat url(./img/bg-pc.jpg);
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}
@media (max-width: 750px) {
    .bg {
        background: center / cover no-repeat url(./img/bg-sp.jpg);
    }
}

.wrapper {
    z-index: 1;
}

.wrapper img {
    width: 70%;
    position: relative;
}
h1 img {
    margin: auto;
}
.wrapper > img {
    margin-top: 10vh;
}
.wrapper > img:nth-of-type(odd) {
    left: 28%;
}
.wrapper > img:nth-of-type(even) {
    left: 2%;
}
img {
    max-width: 100%;
    display: block;
}

.txt {
    margin-top: 100vh;
}
.profile {
    position: relative;
    background-color: #ccc;
    padding: 16px;
    display: inline-block;
    margin-left: 2%;
    margin-bottom: 10%;
}

.profile h2, .sche h2 {
    border-left: 8px solid #555;
    border-bottom: 1px solid #555;
    margin-bottom: 16px;
    padding: 4px 16px;
}
.profile p {
    font-size: 0.7em;
}

.sche {
    position: relative;
    background-color: #ccc;
    padding: 16px;
    display: inline-block;
    margin-left: 2%;
}
.sche table{
    font-size: 0.7em;
}
.sche table td {
    padding: 2px 4px;
    white-space: nowrap;
}

@media (min-width: 750px) {
    .profile, .sche {
        width: 40%;
        left: 20%;
    }
    .sche {
        margin-bottom: 32px;
    }
}

.last {
    background: center / cover no-repeat url(./img/last.jpg);
    height: 100vh;
    width: 100vw;
    margin-top: 100vh;
    top: 0;
    left: 0;
    z-index: -1;
}

.logo {
    position: fixed;
    display: block;
    height: 50px;
    top: 10px;
    left: 10px;
    z-index: 100000;
}

.logo img {
    margin: auto;
    height: 100%;
    width: auto;
}


footer {
    text-align: center;
    color: #555;
    padding: 8px;
    background-color: #ccc;
}
/* .copyright {
    text-align: center;
} */