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

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

    /*footerの高さ*/
    padding-bottom: 270px;
    box-sizing: border-box;
}

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;
}

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

.separate-hr {
    margin: 10px 30px;
    height: 1px;
    border: none;
    border-top: 1px solid #ccc;
}

.faq-link-text {
    font-size: 20px;
    font-weight: bold;
    padding: 10px 30px 20px 30px;
}

.main-title {
    font-size: 25px;
    padding: 20px 30px 0px 30px;
}

.section-title {
    font-family: "Hiragino Mincho W2 JIS2004";
    font-size: 24px;
    margin: 30px 40px;
    text-align: left;
    text-decoration: none;
    color: black;
}

.desc {
    font-size: 18px;
    margin: 20px 50px;
    text-align: left;
}

.qalist {
    font-size: 16px;
    margin: 10px 50px;

    a {
        color: black;
    }
}

.qalist::before {
    content: '▶︎';
}

.other-case {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: rgb(63, 63, 63);
    padding: 60 60;
}

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

    .footer-link {
        height: 100px;
        padding-top: 10px;
        margin-top: 5px;
        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;
        }
    }
}


@media (max-width: 767px) {
    .other-case {
        font-size: 14px;
        padding: 60 0;

        span {
            display: block;
        }
    }

}

@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;
        }
    }
}

.contact-list {
    font-size: small;
    padding-left: 0;
    font-weight: 100;
    li {
        list-style: none;
        padding: 5px 0;
    }
}