﻿table.dl_tools {
    width: 100%;
    margin: 10px auto;
}

    table.dl_tools td {
        width: 50%;
        text-align: left;
        padding: 5px 0;
    }

        table.dl_tools td a:link,
        table.dl_tools td a:visited {
            display: block;
            position: relative;
            padding: 15px 0;
            background-color: #083052;
            border: 1px solid #083052;
            border-radius: 30px;
            text-align: center;
            color: #fff;
            font-weight: bold;
            font-size: 1.1em;
            width: 50%;
            transition: 0.3s;
            opacity: 0.8;
        }

        table.dl_tools td a::after {
            position: absolute;
            content: '';
            width: 8px;
            height: 8px;
            border: 0px;
            border-bottom: solid 2px #fff;
            border-right: solid 2px #fff;
            -ms-transform: rotate(-45deg);
            -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
            top: 50%;
            right: 20px;
            margin-top: -5px;
        }

        table.dl_tools td a:hover {
            background-color: #fff;
            color: #083052;
        }

            table.dl_tools td a:hover::after {
                border-color: #083052;
            }

@media screen and (max-width: 767px) {
    table.dl_tools td a:link,
    table.dl_tools td a:visited {
        width: 100%;
    }
}

/*▼タブ▼*/
ul.tab, ul.tab li, ul.tab li a {
    float: left;
    padding: 3px 0;
    margin-right: 2px;
    list-style: none;
}

    ul.tab li {
        margin-right: 30px;
    }

        ul.tab li:last-child {
            margin: 0;
        }

        ul.tab li a:link,
        ul.tab li a:visited {
            position: relative;
            display: inline-block;
            border: 1px solid #38a75b;
            background-color: #38a75b;
            border-radius: 5px;
            padding: 10px 50px;
            color: #fff;
            font-weight: bold;
            letter-spacing: 2px;
            transition: 0.3s;
        }

        ul.tab li a::after {
            position: absolute;
            content: '';
            width: 6px;
            height: 6px;
            border: 0px;
            border-bottom: solid 2px #fff;
            border-right: solid 2px #fff;
            -ms-transform: rotate(45deg);
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
            top: 50%;
            right: 20px;
            margin-top: -5px;
        }

        ul.tab li a:hover {
            background-color: #fff;
            color: #38a75b;
        }

            ul.tab li a:hover::after {
                border-color: #38a75b;
            }

        ul.tab li.active a:link,
        ul.tab li.active a:visited {
            border-color: #888;
            background-color: #888;
            color: #fff;
        }

        ul.tab li.active a::after {
            border-color: #fff;
            -ms-transform: rotate(-135deg);
            -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
            margin-top: 0;
        }

div.content {
    clear: both;
}

div.area {
    display: none;
}
/*▲タブ▲*/

/*▼アコーディオン▼*/
.acd-check {
    display: none;
}

.acd-label {
    position: relative;
    border-top: 1px solid #555;
    border-bottom: 1px solid #555;
    display: block;
    padding: 15px 10px;
    cursor: pointer;
}

    .acd-label::after {
        position: absolute;
        content: '';
        width: 6px;
        height: 6px;
        border: 0px;
        border-bottom: solid 1px #000;
        border-right: solid 1px #000;
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 50%;
        right: 20px;
        margin-top: -5px;
    }

    .acd-label span {
        display: inline-block;
        background-color: #444;
        color: #fff;
        padding: 2px 10px;
        margin-right: 8px;
    }

.acd-content, .acd-content2 {
    border-bottom: 1px solid #555;
    height: 0;
    opacity: 0;
    padding: 0 10px;
    margin-bottom: 30px;
    transition: .5s;
    visibility: hidden;
}

.acd-check:checked + .acd-label + .acd-content {
    height: 165px;
    opacity: 1;
    padding: 5px 10px 15px 10px;
    visibility: visible;
}

.acd-check:checked + .acd-label + .acd-content2 {
    height: 500px;
    opacity: 1;
    padding: 5px 10px 30px 10px;
    visibility: visible;
}

.acd-check:checked + .acd-label::after {
    -ms-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    margin-top: 0;
}
/*▲アコーディオン▲*/

iframe {
    width: 100%;
    height: 500px;
    border: none;
}

/*▼注意事項▼*/
ul.precautions li {
    position: relative;
    padding: 0.3em 0 0.3em 2em;
    line-height: 1.5;
}

    ul.precautions li:after,
    ul.precautions li:before {
        content: '';
        position: absolute;
        top: 7px;
        left: 11px;
        height: 18px;
        width: 4px;
        background: #ee8992;
        border-radius: 10px;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -o-transform: rotate(45deg);
    }

    ul.precautions li:after {
        top: 14px;
        left: 3px;
        height: 10px;
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
    }

    ul.precautions li span {
        color: red;
        font-weight: bold;
    }

    ul.precautions li a:link,
    ul.precautions li a:visited {
        color: blue;
    }

    ul.precautions li a:hover {
        text-decoration: underline;
    }

a.faqLink:hover {
    text-decoration: underline;
}
/*▲注意事項▲*/

/*▼動作環境▼*/
table.opeEnv {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

    table.opeEnv td {
        border: 1px solid #ccc;
        padding: 5px 10px;
    }

    table.opeEnv tr td:first-child {
        width: 20%;
        background-color: #f1f1f1;
        font-weight: bold;
    }
/*▲動作環境▲*/

@media screen and (max-width: 768px) {
    .pdf_js_view {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .acd-check:checked + .acd-label + .acd-content2 {
        height: 0px;
    }
}