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

/*mainここから↓*/
main {
    margin-top: 2%;
}

img {
    max-width: 100%;
}

.top_contents {
    background: url("../img/main_back.jpg") no-repeat center / cover;
    display: grid;
    height: 25vw;
    margin: 0 auto;
    max-height: 800px;
    padding-inline: 20px;
    padding-bottom: 10px;
    place-content: center;
}

.top_contents h1, .top_contents p {
    text-align: center;
    color: #fff;
    letter-spacing: 0.05em;
    text-shadow: 2px 2px 3px #000;
}

.top_contents h1 {
    font-size: 6em;
    font-weight: 800;
}

.top_contents p {
    font-size: 3em;
}

@media (max-width: 750px) {
    .top_contents {
        height: 55vw;
        margin: 0 auto;
    }

    .top_contents h1 {
        font-size: 3em;
        font-weight: 500;
    }

    .top_contents p {
        font-size: 1.5em;
    }
}

/*company_profileここから↓*/

#company_profile ul {
    max-width: 1300px;
    margin: 4em auto;
    font-size: 1.5em;
}


#company_profile dl {
    display: flex;
    box-sizing: inherit;
    border-top: #000 solid 1px;
}

#company_profile dl:last-child {
    border-bottom: #000 solid 1px;
}

#company_profile dt {
    width: 250px;
    color: #283c80;
    background: #c0cbe1;
    padding: 1em 2em 1em 0.5em;
}

#company_profile dd {
    line-height: 1.5em;
    padding: 1em 1em;
    width: 100%;
}

iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}

@media (max-width: 750px) {
    #company_profile ul {
        margin: 2em auto;
        font-size: 1.2em;
    }

    #company_profile dt {
        width: 100%;
        padding-left: 1em;
    }

    #company_profile dl {
        display: block;
    }
}