@import url(./_default.css);
@import url(./_header.css);

@import url(./intro.css);
@import url(./technology.css);
@import url(./solution.css);
@import url(./usecase.css);
@import url(./patent.css);
@import url(./infomation.css);


/* @import url(./section/metaverse.css);
@import url(./section/digitalTwin.css);
@import url(./section/energy.css); */


body > * {
    padding: 0 15rem;
    width: calc(100% - 30rem);
}

body > article {
    min-height: 20rem;
}

body > * + * {
    margin-top: 1rem;
}

body > .wide {
    height: 100vh;
    /* background-color: #ddd; */
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}


body > article:not(.wide) {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 8rem 1fr;
    gap: 1rem;
}


body > article > header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    user-select: none;
}

body > article > header::before {
    content: "";
    background-color: var(--main-color);
    display: block;
    width: 1rem;
    height: 6rem;
    margin-right: 1rem;
}


body > article > header > h1 {
    font-size: 2.5rem;
    line-height: 2.5rem;
    height: 2.5rem;
    padding-top: 2.5rem;
    position: relative;
}

body > article > header > h1::before {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--sub-color);
    content: var(--sub-title);
}

body > article > header > h1 + p {
    width: 30rem;
    word-wrap: break-word;
    font-size: 1rem;
    color: #555;
    line-height: 1.2rem;
    height: 2.5rem;
    padding-top: 2.75rem;
    margin-left: 1rem;
}

body > article:nth-of-type(2n-1) {
    background-color: #161925;
}

body > article:nth-of-type(2n-1) > header > h1 {
    color:white;
}

body > article:nth-of-type(2n-1) > header > p {
    color: #aaa;
}