* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    font-family: sans-serif;
    font-size: 1em;
    background-color: #fff;
}

section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ロゴ */
#logo {
    width: 100%;
    height: 100vh;
}

#logo img {
    width: 100%;
    max-width: 1280px;
    height: auto;
}

/* 会社概要 */
#company {
    height: auto;
    padding: 4rem 0;
    margin-bottom: 8rem;
}

#company .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    text-align: center;
    line-height: 1.6;
}

#company .title {
    font-size: 1.75em;
    margin-bottom: 0.5rem;
}

#company .detail {
    border-top: 1px solid #ccc;
    font-family: sans-serif;
    text-align: left;
    padding: 4rem;
    width: 80%;
    max-width: 1024px;
}

#company a {
    color: #000;
}

/* table */
#table th,
#table td {
    font-weight: normal;
    padding: 1rem 2rem;
    border: none;
}
  
#table th {
    width: 30%;
}

/* コピーライト */
#copyright {
    font-size: 1.25em;
    text-align: center;
    padding-bottom: 3rem;
    width: 100%;
}

#copyright img{
    width: 192px;
    margin-bottom: 1rem;
}

/* レスポンシブ */
@media only screen and (max-width: 1024px) {

    #logo {
        height: 100svh;
    }

    #company {
        margin-bottom: 2rem;
    }

    #company .title {
        font-size: 1.25em;
    }

    #company .detail {
        padding: 4rem 1rem;
    }

    #table th,
    #table td {
        width: 100%;
        display: block;
        padding: 0;
    }

    #table th {
        font-size: 0.9em;
    }
  
    #table td {
        padding-top: 0;
        margin-bottom: 2rem;
    }   

    #copyright {
        font-size: 1em;
        padding-bottom: 6rem;
    }

    #copyright img{
        width: 128px;
        margin-bottom: 0.5rem;
    }
}