/*
動作環境画面のためのCSS
*/
body {
    font-family: "Hiragino Kaku Gothic Pro";
    color: #333333;
}

.wrapper {
    min-height: 100vh;
    position: relative;

    /*footerの高さ*/
    padding-bottom: 260px;
    /*全て含めてmin-height:100vhに*/
    box-sizing: border-box;
}

ul {
    list-style: none;
}

header {
    border-bottom: 1px solid #ccc;
    padding: 10px;
    vertical-align: center;

    .page-title {
        font-size: 27px;
        margin: auto auto;
        text-align: center;
    }

    .logo {
        display: none;
    }

    a {
        color: black;
        text-decoration: none;
    }
}

hr {
    margin: 0px;
}

.title-label {
    width: 95%;
    height: 63px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    font-family: "Hiragino Kaku Gothic Pro";
    font-size: x-large;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-image: url("../img/zkai_group_logo_t_p6_60x63.png");
}

.head-separator {
    height: 3px;
    background: linear-gradient(to right, rgb(206, 246, 255), #005983);
    border: none;
    margin-bottom: 10px;
}

.section {
    padding: 20 20;

    .section-title {
        text-align: center;
        font-family: "Hiragino Mincho Pro";
        font-weight: 400;
        font-size: 24px;
    }

    .section-body {
        font-size: 15px;
        font-weight: 400;
        line-height: 150%;
    }
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;

    .footer-link {
        height: 100px;
        padding-top: 10px;
        margin-top: 10px;
        background-color: rgb(2, 3, 129);
        text-align: center;
        color: white;
        border-bottom: 1px solid #FFF;

        .link-list {
            text-align: left;
            padding: 10px 0px 0px 20px;
            font-size: small;

            .title {
                font-size: 16px;
                margin-bottom: 5px;
            }

            a {
                text-decoration: none;
                color: white;
            }

            a::before {
                content: '▶︎';

                vertical-align: middle;
                font-size: 10px;
                margin-right: 5px;

            }

            ul {
                padding-left: 0px;
                margin-top: 5px;
                list-style: none;

                li {
                    padding-top: 5px;
                    padding-bottom: 5px;
                    padding-left: 20px;
                }
            }
            span {
                display: inline-block;
                margin-left: 10px;
            }
        }
    }

    .group-footer {
        height: 140px;
        background-color: rgb(2, 3, 129);
        text-align: center;
        border: 0;
        margin: 0;

        img {
            margin: 45px 0px;
        }
    }
}

.device-part {
    padding: 5 30;

    .name {
        font-weight: bold;
        font-size: 14px;
    }

    .terms {
        padding: 5 20;
        font-size: 12px;
    }
}

.license {
    padding: 40 30;
    font-size: 12px;
}

@media (max-width: 767px) {
    .device-part {
        padding: 5 0;
    }
}

@media (min-width: 768px) {
    header {
        border-bottom: 1px solid #ccc;
        padding: 10px;
        vertical-align: center;

        .page-title {
            text-align: center;
            font-size: 30px;
            margin: auto auto;
        }

        .logo {
            display: block;
            text-align: right;

            .logomark {
                text-align: right;
                padding: 10px 75px 10px 0px;
                width: 200px;
            }
        }

        a {
            color: black;
            text-decoration: none;
        }
    }

    .title-label {
        height: auto;
        padding-top: 20;
        font-size: 34px;
        background-image: url("../img/zkai_group_logo_y_p6_256x74.png");
    }

    .section {
        width: 80%;
        max-width: 860px;
        margin-left: auto;
        margin-right: auto;

        .section-title {
            font-size: 2em;
        }
    }
}