@charset "UTF-8";
body {
	font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  	color: #333;
    font-size: 16px;
    font-weight: 400;
}
/*---------- 共通css調整 ----------*/
#breadcrumbs ol li {
    font-size: 10px;
}
@media screen and (min-width: 768px) {
    #breadcrumbs ol li {
    font-size: 12px;}
}
#breadcrumbs.white li,
#breadcrumbs.white li a {
    color: #fff;
}
.nohref{
    pointer-events: none;
}
/*---------- block ----------*/
main * {
    box-sizing: border-box;
    word-wrap: break-word;
    word-break: break-all;
}
main p {
    line-height: 1.75;
    letter-spacing: .05em;
}
main {
    padding-top: 56px;
}
@media (min-width: 1200px) {
main {
    padding-top: 0;
}
}
section {
  	position: relative;
  	padding: 4rem 0;
}
@media (min-width: 768px) {
section {
  	padding: 6rem 0;
}
}
.container {
    position: relative;
	width: 90%;
	max-width: 1200px;
	margin: auto;
}
a {
    text-decoration: none;
    color: inherit;
    outline: none;
    transition: all 0.3s;
}
a:hover, a:active, a:focus {
    text-decoration: none;
}
img {
    max-width: 100%;
    vertical-align: middle;
}
.text_indent {
    text-indent: -1em;
    padding-left: 1em;
}
.text_center {
    text-align: center;
}
.text_left {
    text-align: left;
}
.text_right {
    text-align: right;
}
.font_bold {
    font-weight: 700;
}
.font_italic {
    font-style: italic;
}
.color_primaly {
    color: #152768;
}
.color_secondary {
    color: #3B81C7;
}
.color_bg_secondary {
	background-color: #f2f7f8;
}
/*---------- heading----------*/
h2.section_heading {
    position: relative;
    margin-bottom: 64px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}
h2.section_heading::before{
    content: "";
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 3px;
    background-color: #3b81c7;;
}
h3 {
    margin-bottom: 1rem;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
}
h4 {
    margin-bottom: 1rem;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
}
@media (min-width: 768px) {
h2.section_heading {
    margin-bottom: 80px;
    font-size: 32px;
    letter-spacing: 0.05em;
}
h2.section_heading::before {
    width: 64px;
    height: 4px;
}
h3 {
    font-size: 20px;
}
h4 {
    font-size: 18px;
}
}
/*---------- section_lead ----------*/
.section_lead {
    margin-bottom: 64px;
    text-align: center;
}
.section_lead p {
    display: inline-block;
    max-width: 800px;
    text-align: left;
}

.section_lead p + p{
    margin-top: 16px;
}
/*---------- list ----------*/
ul.list, ol.list {
    margin-left: 2em;
}
ul.list li,
ol.list li {
    line-height: 1.5;
}
ul.list li + li,
ol.list li + li {
    margin-top: 4px;
}
@media (min-width: 768px) {
ul.list li,
ol.list li {
    letter-spacing: .05em;
}
}
/* list_style:disc */
ul.list.disc > li {
    list-style: disc;
}
/* list_style:decimal-leading-zero */
ol.list.decimal-leading-zero > li {
    list-style: decimal-leading-zero;
}
/*---------- text link ----------*/
.link_triangle {
    position: relative;
    padding-left: 1.1em;
}
.link_triangle::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 6px;
    left: 0;
    width: 10px;
    height: 14px;
    background-color: #333;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.link_triangle a {
    text-decoration: underline;
}
.link_triangle a:hover {
    text-decoration: none;
}
/*---------- main visual----------*/
.mainv {
	position: relative;
	width: 100%;
    overflow: hidden;
    background-color: #f2f7f8;
}
@media (min-width: 1200px) {
.mainv {
    padding-top: 73px;
}
}
.mainv_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5rem 0 1rem;
    text-align: center;
}
h1 {
	font-size: 20px;
    font-weight: 700;
	line-height: 1.75;
    letter-spacing: 0em;
    z-index: 10;
}
.mainv_subtitle {
    margin-top: 2rem;
    text-align: left;
    z-index: 10;
}
.mainv_subtitle p {
	font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
}
@media (min-width: 768px) {
.mainv_container {
    align-items: flex-start;
    padding: 7rem 0 19rem;
    text-align: left;
}
h1 {
	font-size: 32px;
    line-height: 1.5;
    letter-spacing: .1em;
}
.mainv_subtitle {
    margin-top: 3rem;
    padding-left: 1.5rem;
    border-left: 1px solid #333;
}
.mainv_subtitle p {
	font-size: 16px;
    line-height: 2.0;
    letter-spacing: .05em;
}
}
@media (min-width: 960px) {
h1 {
	font-size: 40px;
}
}

/* mainv */
.mainv_eyecatch {
    position: static;
    width: 100%;
    max-width: 288px;
    margin-top: 1rem;
}
@media (min-width: 768px) {
    .mainv_eyecatch {
        margin-top: 0;
        position: absolute;
        top: 1rem;
        width: 400px;
        max-width: 100%;
        right: -224px;
    }
}
@media (min-width: 1024px) {
    .mainv_eyecatch {
        width: 464px;
        right: -80px;
    }
}
@media (min-width: 1200px) {
    .mainv_eyecatch {
        right: 0;
    }
}
/*---------- section_toc ----------*/
.section_toc {
    padding-bottom: 0;
}
.section_toc .container {
    position:relative;
}
.tocBox {
    box-shadow: 0px 0px 35px 0px rgba(100, 100, 100, 0.08);
}
.toc_title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 1em 0;
    background-color: #3B81C7;
    border-radius: 8px 8px 0 0;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1em;
}
.toc_title::before {
    flex: 0 0 auto;
    content: '';
    background-image: url("/web/jp/government/images/icon_toc.svg");
    background-size: cover;
    width: 1em;
    height: 1em;
}
.toc_list {
    background-color: #fff;
    border-radius: 0 0 8px 8px;
    padding: 1.5rem 1rem;
}
.toc_list ol {
    margin-left: 2em;
}
.toc_list ol li {
    padding-left: .5em;
    list-style: decimal;
    font-weight: 500;
    line-height: 1.5;
}
.toc_list ol li + li {
    margin-top: 1rem;
}
.toc_list ol li a{
    display: block;
    margin-bottom: 8px;
}
.toc_list ol li a:last-child{
    margin-bottom: 0;
}
.toc_list ol li a:hover {
    color: #3B81C7;
    text-decoration: underline;
}
@media (min-width: 768px) {
.tocBox {
    max-width: 640px;
    margin: -288px auto 0;
}
.toc_title {
    font-size: 18px;
}
.toc_list {
    padding: 2rem 1rem 2rem 3rem;
}
}

.mainv_eyecatch_left {
    display: none;
}
@media (min-width: 1200px) {
.mainv_eyecatch_left {
    display: block;
    position: absolute;
    width: 190px;
    top: -16px;
    left: 0;
}
}

.h3_title{
    border-left: 8px solid #3370AD;
    border-bottom: 1px solid #E6E6E6;
    padding: 0 0 4px 24px;
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 32px;
}

.tab_flex2block{
    display: flex;
    flex: 2;
    margin: 0 48px 0 0;
}
.tab_flex2block:last-child{
    margin-right: 0;
}
.tab_flexblock{
    display: flex;
    flex: 1;
}

.section_csv{
    padding-top: 0;
}
.meritAPI_contents, .meritCSV_contents{
    display: flex;
    flex-wrap: wrap;
}

.meritAPI_contents{
    margin-bottom: 64px;
}

.meritAPI_content, .meritCSV_content{
    padding: 16px 16px 24px;
    border-radius: 8px;
    background-color: #F2F7F8;
    margin-right: 24px;
    line-height: 27px;
    flex: 1;
}
.tab_flex2block .meritAPI_content:last-child, .tab_flex2block .meritCSV_content:last-child{
    margin-right: -24px;
}
.tab_flexblock:last-child .meritAPI_content:last-child, .tab_flex2block:last-child .meritAPI_content:last-child, .tab_flexblock:last-child .meritCSV_content:last-child, .tab_flex2block:last-child .meritCSV_content:last-child{
    margin-right: 0;
}
@media screen and (max-width: 1023px) {
    .tab_flex2block .meritAPI_content, .tab_flex2block .meritCSV_content{
        margin-bottom: 24px;
    }
    .tab_flex2block, .tab_flex2block .meritAPI_content:last-child, .tab_flex2block .meritCSV_content:last-child{
        margin-right: 0;
    }
}
@media screen and (min-width: 798px) and (max-width: 1023px) {
    .tab_flex2block{
        flex: auto;
    }
    .tab_flexblock{
        flex: .5;
        margin-right: 24px;
    }
}

.meritAPI_num, .meritCSV_num{
    font-size: 24px;
    font-weight: bold;
    color: #152768;
}

.meritAPI_num span, .meritCSV_num span{
    font-size: 12px;
}

.meritAPI_image, .meritCSV_image{
    margin-bottom: 24px;
}

.meritAPI_image img, .meritCSV_image img{
    margin: 0 auto;
}

.meritAPI_title, .meritCSV_title{
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 24px;
    color: #152768;
}

.meritAPI_text, .meritCSV_text{
    font-size: 16px;
    line-height: 1.5;
    margin: 0 16px;
}

@media screen and (max-width: 797px) {
    .meritAPI_contents, .meritCSV_contents{
        display: block;
    }
    .tab_flex2block, .tab_flexblock{
        display: block;
        flex: 1;
    }
    .tab_flexblock, .meritAPI_content, .meritCSV_content{
        margin-right: 0;
    }
}

/*tab_nav*/
.tab_nav{
    border-bottom: 5px solid #3B81C7;
    margin: 0 0 2rem;
}
.tab_nav ul{
    display: flex;
    margin: 0;
    padding: 0;
}
.tab_nav ul li{
    border-right: 1px solid #3B81C7;
    box-sizing: border-box;
    width: 33.333%;
}
.tab_nav ul li:last-child{
    border-right: none;
}
.tab_nav ul li a.tab_link{
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: #F2F8F8;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.5;
    padding: 12px;
    text-align: center;
    width: 100%;
    height: 100%;
}
.tab_nav ul li a.tab_link:hover{
    opacity: 0.7;
}
.tab_nav ul li.current a.tab_link{
    background-color: #3B81C7;
    color: #fff;
}
.section_relation{
    display: none;
}
.section_relation.current{
    display: block;
}
.section_relation .sys_list_lead{
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
}
.section_relation .sys_list_lead br.br_pc{
    display: none;
}
.section_relation .sys_list_img{
    margin-bottom: 2rem;
    text-align: center;
}
.section_relation .sys_list_img img{
    width: 100%;
    margin: 0 auto;
}
.section_relation#sys_list_3 .sys_list_img img{
    max-width: 800px;
}
.section_relation .sys_list_txt{
     margin-bottom: 4rem;
}
.section_relation#sys_list_3 .sys_list_txt{
    text-align: center;
}
.sys_list_sec{
    margin-bottom: 4rem;
}
.sys_list_sec h4{
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
.sys_list_note{
    text-align: center;
}
@media screen and (min-width:768px) {
    .section_relation .sys_list_lead br.br_pc{
        display: inline;
    }
    .tab_nav ul li a.tab_link .br_sp{
        display: none;
    }
}
@media screen and (min-width:768px) and (max-width:1023px){
    .section_relation .sys_list_lead{
        font-size: 2.4vw;
    }
}
@media screen and (min-width:1024px) {
    .tab_nav ul li a.tab_link{
        font-size: 1.25rem;
    }
    .section_relation .sys_list_lead{
        font-size: 1.5rem;
    }
}
@media screen and (max-width:767px) {
    .section_relation .sys_list_img img{
        max-width: 400px;
    }
    .section_relation#sys_list_3 .sys_list_img img{
        max-width: 320px;
    }
}