﻿
/* 設定１つ  - 四辺すべてに適用 */
/* 設定２つ  - 上下 | 左右 */
/* 設定３つ  - 上 | 左右 | 下 */
/* 設定４つ  - 上 | 右 | 下 | 左 */


.title {
    display: flex;
    align-items: flex-end;
    font-size: 20pt;
    background-image: url(../images/categoryMark.gif); /* 虫眼鏡マークを背景に設定 */
    background-repeat: no-repeat;
    background-position: left;
    padding: 10px 0 10px 35px;
    border-top: 1px solid #B4B4B4;
    border-right: 1px solid #B4B4B4;
    border-left: 1px solid #B4B4B4;
    border-bottom-width: 5px;
    border-bottom: solid #EC7336;
}

    .title > span {
        font-size: 14pt;
        padding-left: 30px;
    }

/*.pklist {
    display: flex;
    width: 100%;
    height:30px;
    margin-top: 30px;
}
*/
.tilist {
    display: flex;
    width: 100%;
    margin-top: 30px;
}

.tilistl {
    min-width: 250px;
    max-width: 250px;
}

.ti0tbl { /* ul */
    border: 1px solid orange;
    background-color: #FFD697;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14pt;
    font-weight: 500;
}

    .ti0tbl > .row0c { /* li */
        border-top: 1px solid orange;
    }

    .ti0tbl > .selrow0 { /* li */
        border-top: 1px solid orange;
        align-content: center;
        align-items: center;
        height: 40px;
    }

        .ti0tbl > .selrow0::before {
            content: '▲';
            display: inline-block; /* transform を効かせるためにブロックレベルにする */
            transform: rotate(180deg); /* 右（時計回り）に90度回転 */
            transform-origin: center; /* 回転中心を調整（必要に応じて変更） */
            /* 必要ならマージンや位置調整 */
            color: #ff0000;
            margin-right: 0.5rem;
            margin-left: 0.5rem;
            font-size: 10pt;
        }

    .ti0tbl > .row0 { /* li */
        border-top: 1px solid orange;
        align-content: center;
        align-items: center;
        height: 40px;
    }

        .ti0tbl > .row0 a {
            display: flex; /* 縦中央揃えが簡単 */
            align-items: center;
            width: 100%;
            height: 100%; /* 親 li の高さに合わせる */
            box-sizing: border-box; /* padding を height に影響させない */
            text-decoration: none;
        }

            .ti0tbl > .row0 a::before {
                content: '▲';
                display: inline-block; /* transform を効かせるためにブロックレベルにする */
                transform: rotate(90deg); /* 右（時計回り）に90度回転 */
                transform-origin: center; /* 回転中心を調整（必要に応じて変更） */
                /* 必要ならマージンや位置調整 */
                margin-right: 0.5rem;
                margin-left: 0.5rem;
                font-size: 10pt;
            }

            .ti0tbl > .row0 a:link,
            .ti0tbl > .row0 a:visited {
                color: inherit;
            }


.ti1tbl { /* ul */
    border-top: 1px solid orange;
    background-color: #ffffff;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 12pt;
}

    .ti1tbl > .selrow1 { /* li */
        border-top: 1px solid orange;
        padding: 0 30px;
        align-content: center;
        height: 35px;
    }

        .ti1tbl > .selrow1::before {
            content: '●';
            margin-right: 0.5rem;
            font-size: 8pt;
            color: #ff0000;
        }

    .ti1tbl > .row1 { /* li */
        border-top: 1px solid orange;
        font-size: 12pt;
        align-items: center;
        height: 35px;
        box-sizing: border-box;
        padding: 0;
    }

        .ti1tbl > .row1 a {
            display: flex; /* 縦中央揃えが簡単 */
            align-items: center;
            width: 100%;
            height: 100%; /* 親 li の高さに合わせる */
            padding: 0 30px; /* 左右の余白（必要に応じて調整） */
            box-sizing: border-box; /* padding を height に影響させない */
            text-decoration: none;
            background-color: antiquewhite;
        }

            .ti1tbl > .row1 a::before {
                content: '○';
                margin-right: 0.5rem;
                font-size: 8pt;
                color: #000000;
            }

            .ti1tbl > .row1 a:link,
            .ti1tbl > .row1 a:visited {
                color: inherit;
            }


.tilistr {
    flex-grow: 1;
    margin-left: 50px;
}

    .tilistr > .title1 { /* １区分タイトル名 li */
        width: 100%;
        font-size: 18pt;
        border-bottom: 5px solid orange;
        align-content: end;
        height: 40px;
        padding-bottom: 5px;
    }

        .tilistr > .title1::before {
            content: '●';
            margin: 0 0.5rem;
            font-size: 12pt;
            color: #ff0000;
        }

        .tilistr > .title1 > span {
            font-size: 10pt;
            margin-left: 50px;
        }

    .tilistr > .ti2tbl { /* ul */
        width: calc(100% - 40px);
        list-style: none;
        margin-left: 40px;
    }

        .tilistr > .ti2tbl > .row2 { /* li */
            width: 100%;
        }

            .tilistr > .ti2tbl > .row2 > .title2 { /* ２区分タイトル名 li */
                width: 100%;
                height: 40px;
                align-content: end;
                font-size: 14pt;
                border-bottom: 3px solid orange;
                padding-bottom: 5px;
            }

            .tilistr > .ti2tbl > .row2 > .ti3tbl { /* ３区分 li */
                display: flex;
                flex-wrap: wrap;
                width: 100%;
            }

                .tilistr > .ti2tbl > .row2 > .ti3tbl > .row3 { /* ３区分タイトル名 li */
                    display: flex;
                    border: 1px solid #C0C0C0;
                    border-radius: 5px;
                    width: 270px;
                    margin: 5px;
                    align-items: center;
                    background-color: antiquewhite;
                }

                    .tilistr > .ti2tbl > .row2 > .ti3tbl > .row3 a {
                        display: flex; /* 縦中央揃えが簡単 */
                        align-items: center;
                        width: 100%;
                        height: 100%; /* 親 li の高さに合わせる */
                        box-sizing: border-box; /* padding を height に影響させない */
                        text-decoration: none;
                        background-color: antiquewhite;
                    }

                        .tilistr > .ti2tbl > .row2 > .ti3tbl > .row3 a > .tiillust {
                            height: 40px;
                            width: 40px;
                            border: 1px solid #C0C0C0;
                            margin: 5px;
                        }

                        .tilistr > .ti2tbl > .row2 > .ti3tbl > .row3 a > .ti3name {
                            font-size: 12pt;
                            width: 200px;
                        }

                        .tilistr > .ti2tbl > .row2 > .ti3tbl > .row3 a > .ti3cnt {
                            display: flex;
                            font-size: 12pt;
                        }

                            .tilistr > .ti2tbl > .row2 > .ti3tbl > .row3 a > .ti3cnt > span {
                                font-size: inherit;
                            }

                        .tilistr > .ti2tbl > .row2 > .ti3tbl > .row3 a:link,
                        .tilistr > .ti2tbl > .row2 > .ti3tbl > .row3 a:visited {
                            color: inherit;
                        }

@media (max-width: 1200px) {
}
