/*==============================================
*	サイトマップ
==============================================*/
.sitemap_block {
    padding-bottom: 104px;
}
.sitemap_link_a {
    position: relative;
    display: block;
    font-weight: 700;
    font-size: 16px;
    line-height: 160%;
    color: #313233;
    border-bottom: 1px solid #F2F2F2;
    padding: 10px;
    margin-bottom: 32px;
}
.sitemap_link_a::before {
    content: "";
    width: 8px;
    height: 8px;
    border-top: solid 2px #00529D;
    border-right: solid 2px #00529D;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 20px;
}
.sitemap_link_a::after {
    content: "";
    width: 14px;
    height: 7px;
    border-top: solid 2px #00529D;
    position: absolute;
    right: 11px;
    top: 23px;
}
.sitemap_child {
    padding: 18px 20px;
}
.sitemap_child_h3 {
    font-weight: 500;
    font-size: 18px;
    line-height: 160%;
    color: #313233;
    margin-bottom: 16px;
}
.sitemap_child_list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 32px;
    margin-bottom: 40px;
}
.sitemap_child_li_a {
    display: block;
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    text-decoration-line: underline;
    color: #313233;
}
.sitemap_child_link_a {
    display: block;
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    text-decoration-line: underline;
    color: #313233;
    margin-bottom: 24px;
}
/*==============================================
*	policy
==============================================*/
.policy_contents_block {
    width: 100%;
    margin: 0 auto 104px;
}
.policy_contents_title {
    font-weight: 500;
    font-size: 24px;
    line-height: 58px;
    color: #313233;
    margin-bottom: 34px;
}
.policy_contents_list {
    counter-reset: item;
    list-style-type: none;
    padding-left: 0;
}
.policy_contents_li {
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    color: #313233;
    margin-bottom: 34px;
}
.policy_contents_li:before {
    counter-increment: item;
    content: counter(item)'.';
    /* 以下は自由に装飾... */
    padding-right: .5em;
    color: #00529D;
}
.policy_contents_txt {
    font-weight: 400;
    font-size: 14px;
    line-height: 170%;
    color: #313233;
    margin-top: 18px;
}
/*==============================================
*	利用規約
==============================================*/
.tos_contents_block {
    width: 100%;
    margin: 0 auto 104px;
}
.tos_contents_txt {
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    color: #313233;
    margin-bottom: 32px;
}
.tos_contents_list {
    counter-reset: item;
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 32px;
}
.tos_contents_li {
    font-weight: 400;
    font-size: 14px;
    line-height: 170%;
    color: #313233;
    text-indent: -1.3em;
    padding-left: 1.3em;
    margin-bottom: 32px;
}
.tos_contents_li:before {
    counter-increment: item;
    content: counter(item)'.';
    /* 以下は自由に装飾... */
    padding-right: .5em;
    font-weight: bold;
    color: #00529D;
}
/*==============================================
*	レスポンシブ対応
==============================================*/

@media screen and (min-width:600px) {}
@media screen and (min-width:768px) {
    /* sitemap */
    .sitemap_block {
        display: flex;
        justify-content: space-between;
        gap: 93px;
    }
    .sitemap_inner {
        width: 49%;
    }
    .sitemap_link_a {
        font-size: 18px;
    }
    .sitemap_child {
        padding: 18px 40px;
    }
    .tos_contents_txt {
        font-size: 21px;
    }
    .policy_contents_title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    .policy_contents_li {
        font-size: 21px;
        margin-bottom: 40px;
    }
}
@media screen and (min-width:1023px) {}
@media screen and (min-width:1399px) {}
@media screen and (min-width:1400px) {}