/*===============================
  サイトマップ専用デザイン
===============================*/

.sitemap-page{
    max-width:1100px;
    margin:2px auto 100px;
    padding:0 20px;
}

.sitemap-page .article_box{
    background:#ffffff;
    border:1px solid #d9e3ee;
    border-radius:18px;
    padding:45px;
    box-shadow:0 12px 35px rgba(25,45,70,.08);
}

.sitemap-page h2{
    text-align:center;
    font-size:30px;
    color:#163d6b;
    font-weight:700;
    margin-bottom:40px;
    letter-spacing:.08em;
}

.sitemap-page h2:after{
    content:"";
    display:block;
    width:90px;
    height:4px;
    margin:18px auto 0;
    border-radius:30px;
    background:linear-gradient(90deg,#8ec5ff,#2f77d8);
}

.sitemap-page .fNav2{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
}

.sitemap-page .fNav2__item{
    background:linear-gradient(#fbfdff,#f3f8fd);
    border:1px solid #d7e6f6;
    border-radius:14px;
    padding:24px;
    transition:.25s;
}

.sitemap-page .fNav2__item:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(44,91,161,.15);
}

.sitemap-page .fNav2__txt{
    display:block;
    font-size:20px;
    font-weight:bold;
    color:#184f8c;
    border-bottom:2px solid #4c90df;
    padding-bottom:10px;
    margin-bottom:16px;
}

.sitemap-page .fNav2__txt a{
    color:#184f8c;
    text-decoration:none;
}

.sitemap-page .fNav2__txt a:hover{
    color:#2f77d8;
}

.sitemap-page .fNav2__child{
    margin-top:8px;
}

.sitemap-page .fNav2__child li{
    list-style:none;
    margin:10px 0;
}

/* 元CSSの三角を消す */
.sitemap-page .fNav2__child li:before{
    content:none !important;
    display:none !important;
}

/* 新しい矢印 */
.sitemap-page .fNav2__child a:before{
    content:"❯";
    color:#4b91df;
    font-weight:bold;
    margin-right:9px;
    font-size:12px;
}

.sitemap-page .fNav2__child a{
    color:#444;
    text-decoration:none;
    transition:.2s;
}

.sitemap-page .fNav2__child a:hover{
    color:#2f77d8;
    padding-left:6px;
}

@media screen and (max-width:768px){
    .sitemap-page .article_box{
        padding:28px 18px;
    }

    .sitemap-page .fNav2{
        grid-template-columns:1fr;
        gap:18px;
    }

    .sitemap-page h2{
        font-size:24px;
    }

    .sitemap-page .fNav2__txt{
        font-size:18px;
    }
}

/* リンク全体 */
.sitemap-page .fNav2__child a{
    display:flex;
    align-items:flex-start;   /* 上揃え */
    color:#444;
    text-decoration:none;
    transition:.2s;
    line-height:1.6;
}

/* 矢印 */
.sitemap-page .fNav2__child a:before{
    content:"❱";
    flex-shrink:0;

    margin-right:10px;
    margin-top:2px;          /* 微調整 */

    font-size:18px;
    font-weight:700;
    line-height:1;

    color:#2f77d8;
    background:linear-gradient(
        180deg,
        #8fd2ff 0%,
        #4b91df 45%,
        #1b5fb8 100%
    );
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

.sitemap-page .fNav2__child a:hover{
    color:#2f77d8;
    padding-left:6px;
}

.sitemap-page .fNav2__child li{
    position: relative;
    padding-left: 22px;
    line-height: 1.6;
}

.sitemap-page .fNav2__child li:before{
    content: "▶" !important;
    display: block !important;
    position: absolute;
    left: 0;
    top: 0.15em;

    font-size: 18px;
    font-weight: 700;
    line-height: 1;

    color: #2f77d8;
    background: linear-gradient(
        180deg,
        #8fd2ff 0%,
        #4b91df 45%,
        #1b5fb8 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sitemap-page .fNav2__child a:before{
    content: none !important;
    display: none !important;
}