@charset "UTF-8";

html{
    height: auto !important;
    font-size: var(--font-size);
}

body {
    font-family: var(--font-family);
    background: var(--Gray-1);
    line-height: normal;
    margin: 0;
}
.dropdown-menu{
    max-height: 260px !important;
}
/* #container{

} */

/* header{

} */

main{
    padding: 30px 30px;
    min-height: calc(100vh - 347px);
}

/* footer{

} */

.buttons-collection {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 5px;
    border: none;
    background-color: var(--White);
    border: 1px solid var(--Gray-6);
    font-size: 16px;
    cursor: pointer;
    border-radius: 100%;
    content: '...';
    padding-bottom: 8px;
    height: 26px;

}

.buttons-collection::after {
    display: none !important;
}

.buttons-collection:hover,
.buttons-collection:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem var(--Gray-6);
}

.buttons-collection-menu a{
    padding: 10px 20px;
    width: 100%;
    border: none;
    text-align: left;
    font-size: var(--font-size-middle);
}

.buttons-collection-menu a:hover{
    background-color: var(--White) !important;
    --bs-dropdown-link-hover-bg: var(--White) !important;
}

.year-click{
    color: var(--Gray-7);
    text-decoration: none;
    border: none;
    padding: 5px;
}

.year-click.show{
    color: var(--Blue-2);
}

.space-align{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-align-center{
    display: flex;
    justify-content: center;
    align-items: center;
}

.df-fw {
    display: flex;
    flex-wrap: wrap;
}

.mb-40{
    margin-bottom: 40px !important;
}

.overflow-y-hidden{
    overflow-y: hidden;
}

input[type="text"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus,
input[type="checkbox"]:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem var(--Gray-6);
}

input:disabled,
select:disabled,
textarea:disabled,
input[type="radio"]:disabled,
input[type="checkbox"]:disabled {
    border: 1px solid var(--Gray-6);
    color: var(--Black) !important;
    -webkit-text-fill-color: var(--Black) !important;
    background-color: var(--Gray-1);
}

input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    vertical-align: top;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
    border: 1.5px solid var(--Gray-6);
    padding: 0;
}

.form-check-input[type="checkbox"] {
    border-radius: 0.25em;
}

.form-check-input[type="checkbox"] {
    border-radius: 0.25em;
}

.form-check-input:checked[type="checkbox"] {
    --bs-form-check-bg-image: url(../img/checked.svg);
    background-size: 120% 120%;
    background-color: var(--Blue-2);
    border-color: var(--Blue-2);
}

.form-check-input:checked[type=radio] {
    border:1px solid var(--Blue-2) ;
  --bs-form-check-bg-image: url(
  "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%230F67FF'/%3e%3c/svg%3e") !important;
  background-color: var(--bs-body-bg);
  border-color: var(--Blue-2);
}

.chk-group div input[type="checkbox"] ~ label{
    word-break: break-word;
    margin-top: 2px;
}

.chk-group div input[type="radio"] ~ label{
    word-break: break-word;
    margin-top: 2px;
}

input[type="text"]:focus, input[type="password"]:focus, select:focus, textarea:focus, input[type="checkbox"]:focus {
    outline: 0 !important;
    box-shadow: 0 0 0 0.2rem var(--Gray-6) !important;
}

a {
    color: var(--Blue-2);
    text-decoration: none;
}

.fs-5{
    font-size: var(--font-size-5);
}

.bs-select{
    border: 1px solid var(--Gray-6);
}

.bootstrap-select .dropdown-menu li a {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    height: 26px;
}

.bootstrap-select .dropdown-menu li a {
    font-family: var(--font-family);
    font-size: var(--font-size-middle);
    padding: 4px 4px;
}

.bootstrap-select .dropdown-item:hover, .dropdown-item:focus {
    background-color: var(--Gray-3);
    color: var(--Black);
    border: 0;
    box-shadow: unset;
}

.dropdown-item {
    font-size: 10px;
    padding-left: 10px;
}

.form-items-table table{
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    background-color: var(--White);
}

.form-items-table table th{
    text-align: center;
    color: white;
    background: var(--Gray-7);
    padding: 8px 0;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    font-size: var(--font-size-5);
    font-weight: var(--font-weight-bold);
    line-height: 150%; /* 24px */
    letter-spacing: 0.64px;
}

.form-items-table table td{
    border-bottom: 1px solid var(--Gray-6);
    padding: 12px 12px;
    line-height: 150%; /* 21px */
    letter-spacing: 0.56px;
}

.form-items-table table td:nth-child(1){
    vertical-align: top;
    background: var(--Gray-1);
    width: 40%;
}

.form-items-table table td:nth-child(2){
    width: 60%;
}

.form-items-table table tr:last-child td{
    border-bottom: none;
}

.form-items-table-overflow{
    overflow-y: auto;
    overflow-x: hidden;
    height: auto;
}

.form-items-table-overflow::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    border-radius: 5px;
    background-color: var(--white);
}

.list-table table th {
    padding: 8px 16px;
    text-align: center;
    font-weight: var(--font-weight-normal);
    border-left: 1px solid var(--Gray-6);
    border-top: 1px solid var(--Gray-6);;
    background-color: var(--Gray-3);
    line-height: 150%;
    text-align: left;
}

.list-table table td {
    text-align: center;
    padding: 8px 16px;
    line-height: 21px;
    border-left: 1px solid var(--Gray-6);
    text-align: left;
}

/*.list-table table th:first-child {
    border-left: unset;
}

.list-table table td:first-child {
    border-left: unset;
}*/

.list-table{
    width: 100%;
}

.list-table .top{
    width: 100%;
    margin-bottom: 20px;
}

.list-table .top>div{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.list-table .bottom{
    width: 100%;
    margin-top: 20px;
}

.list-table .bottom>div{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.list-table table{
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    background-color: var(--White);
    border-bottom: 1px solid var(--Gray-6);
    border-radius: 4px;
}

.list-table .dataTables_scrollHead table{
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}

.fixedHeader-floating {
    background: var(--White);
    border-collapse: separate;
    border-spacing: 0;
}

.fixedHeader-floating th {
    padding: 8px 16px;
    text-align: center;
    font-weight: var(--font-weight-normal);
    border: 1px solid var(--Gray-6);
    border-right: 0;
    border-bottom: 0;
    background-color: var(--Gray-3);
    line-height: 150%;
    text-align: left;
}

.fixedHeader-locked{
    display: none;
}

.fixedHeader-floating th.tleft{
    text-align: left;
}

.fixedHeader-floating th.small_th{
    padding-left: 4px;
    padding-right: 0;
}

.fixedHeader-floating tr:first-child th {
    text-align: center;
}

.fixedHeader-floating tr:first-child th:first-child {
    border-top-left-radius: 5px;
}

.fixedHeader-floating tr:first-child th:last-child {
    border-top-right-radius: 5px;
    border-right: 1px solid var(--Gray-6);
}

.sorting {
    cursor: pointer;
    background-image: url(../img/triangle.svg);
    background-repeat: no-repeat;
    background-position: right center;
}

.sorting_desc {
    background-image: url(../img/triangle_desc.svg);
    background-repeat: no-repeat;
    background-position: right center;
}

.sorting_asc {
    background-image: url(../img/triangle_asc.svg);
    background-repeat: no-repeat;
    background-position: right center;
}

.list-table tr:first-child th:first-child {
    border-top-left-radius: 4px;
    
}

.list-table tr:first-child th:last-child {
    border-top-right-radius: 4px;
        border-right: 1px solid var(--Gray-6);
}

.list-table tr:last-child>td:nth-child(1) {
    border-bottom-left-radius: 4px;
}
.list-table td:last-child {
/*    border-bottom-right-radius: 4px;*/
    border-right: 1px solid var(--Gray-6);
}
.list-table tr:last-child>td:last-child {
    border-bottom-right-radius: 4px;
}

table.dataTable tr.even>* {
    background-color: var(--Gray-1);
}

.portal-filter{
    display: flex;
    width: 100%;
    gap: 25px;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
}

.portal-filter>div{
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
}

.portal-filter-title{
    white-space: nowrap;
}

.form-items-table-overflow::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: var(--white);
}

.form-items-table-overflow::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: var(--Gray-6);
}

input, textarea, select {
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid var(--Gray-6);
}

select {
    padding: 4px 12px;
    font-family: var(--font-family);
    font-size: var(--font-size-4);
}

.p-justify-content-center{
    justify-content:center
}

.paginate_button.previous a {
    background: url(../img/bi_prepage.svg) no-repeat center center;
    margin-right: 8px;
    background-color: var(--White);
}

.paginate_button.next a {
    background: url(../img/bi_nextpage.svg) no-repeat left center;
    background-color: var(--White);
}

.pagination{
    margin-bottom: 0;
}

.page-item:first-child .page-link{
    border-radius: 100%;
    cursor: pointer;
    padding: 9px;
}

.page-item:last-child .page-link {
    border-radius: 100%;
    cursor: pointer;
    padding: 9px;
}

.e-btn:hover, a:hover, .e-btn:focus, a:focus, .page-link:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem var(--Gray-6);
}

.dataTables_info {
    font-size: var(--font-size-3);
}

.dataTables_paginate .previous.disabled, .dataTables_paginate .next.disabled {
    -webkit-filter: opacity(0.5);
    filter: opacity(0.5);
}

.bootstrap-select {
    border-radius: 4px;
    font-family: var(--font-family);
    font-size: var(--font-size-5);
/*    height: 31px;*/
    background: var(--White);
}

.protal-breadcrumb{
/*    margin-bottom: 40px;
    margin-top: 16px;*/
}

.protal-breadcrumb ol>li>a{
    text-decoration: underline;
}

.protal-content-center{
    justify-content: center;
}

.protal-content-main{
    display: flex;
    width: 80%;
    background: #fff;
    border-radius: 4px;
    padding: 20px;
    flex-direction: column;
    margin-top: 20px;
    border: 1px solid var(--Gray-6);
}

.footer-menu a{
    color: var(--White);
}

.footer-menu a:hover{
    color: var(--White);
    box-shadow:none;
}

/*--modal --start*/
.modal.show .modal-dialog {
    transform: none;
    position: relative;
}

.modal-title {
    color: var(--Black);
    font-size: var(--font-size-6) ;
    font-weight: 700;
    line-height: 150%; /* 27px */
    letter-spacing: 0.72px;
}

.modal-file-title {
    color: var(--Black);
    font-size: var(--font-size-large) !important;
}

.modal-header {
    border-bottom: none;
    padding-bottom: 0px;
}

.modal-footer {
    border-top: none;
    justify-content: center;
    gap: 15px;
    padding: 40px 0 20px 0;
}

.m-20-footer{
    padding: 20px 0 20px 0;
}

.m-0-footer{
    padding: 0px 0 20px 0;
}

.mb-0-footer{
    padding-bottom: 0px;
}

.modal-footer-btn-m button {
    width: 70px;
}

.modal-item {
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    flex-wrap: nowrap;
    justify-items: center;
    gap: 10px;
    font-size: var(--font-size-middle) !important;
}

.none-line {
    border-bottom: none !important;
    padding-bottom: 0px;
}

.modal-body {
    padding-top: 0px;
    padding-bottom: 0px;
}

.modal-content {
    padding: 20px;
}

.modal-item-title {
    padding: 10px 0;
    min-width: 75px;
    font-size: var(--font-size-5);
}

.modal-item-help{
    width: 100%;
    margin: -12px 0 12px 0;
}

.items-content {
    display: flex;
    gap: 20px;
    padding-top: 5px;
    flex-wrap: wrap;
    width: 100%;
}

.items-content div {
    display: inline-block;
}

.items-content label {
    display: inline-block;
    line-height: 25px;
    white-space: nowrap;
}

.modal-file-get {
    width: 800px;
}

.modal-file-table {
    margin-top: 20px;
    height: 418px;
    overflow-y: auto;
}

.modal-file-table table th {
    font-weight: var(--font-weight-bold);
}

.items-content input[type="text"] {
    width: 100%;
}

.modal-selected-table {
    margin-top: 12px;
    max-height: 418px;
    overflow-y: auto;
}

/*--modal --end*/

/*--ヘッダ共通 start--*/
.my-translate{
    min-width: 85px;
}

.my-translate select{
    height: 32px;
    padding: 0 12px;
    font-size: var(--font-size-5);
}

.goog-te-gadget .goog-te-combo{
    font-size: var(--font-size-4);
}

.header-menu{
/*    height: 97px;*/
    background: var(--White);
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--Gray-6);
}

.large-h1 {
    min-height: 110px;
}
.PTLV0120 .large-h1 {
    min-height: 64px;
}

.header-logo{
    padding:0 24px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.header-logo img{
    height: 48px;
    width: 48px;
    cursor: pointer;
}

.header-logo-name{
   font-size: 24px;
   margin-left: 10px;
   cursor: pointer;
   max-width: 600px;
}

.header-items{
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: flex-end;
}
.PTLV0120 .header-items{
    margin-bottom: 10px;
}

.header-option{
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 10px;
    padding-right: 24px;
}

.header-link{
    display: flex;
    align-items: end;
    justify-content: end;
}

.header-link .dropdown-toggle{
    padding: 13px 25px;
    border: none;
    outline: 1px solid var(--Gray-6);
    background: var(--White);
    width: 150px;
}

.header-link .dropdown-toggle:hover{
    background: var(--Blue-1);
    color: var(--White);
}

.header-link .dropdown-item{
    padding: 10px !important;
}

.header-link .dropdown-menu.show {
    display: block;
    width: 220px;
}

.header-link .dropdown-toggle.show {
    background: var(--Blue-2);
    color: var(--White);
}

.header-link .dropdown-toggle.active {
    background: var(--Blue-2);
    color: var(--White);
}

.header-link .dropdown-toggle:focus:not(:focus-visible){
    outline: 1px solid var(--Gray-6);
}

.header-link .dropdown-toggle::after{
    visibility: hidden;
}

.menu-group{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-bottom: 0;
    justify-content: end;
}

.menu-group li{
    box-shadow: 0px 1px 0px 0px var(--Gray-6);
    list-style: none;
    display: flex;
    font-size: var(--font-size-4);;
    font-weight: 700;
    line-height: 150%; /* 21px */
    letter-spacing: 0.56px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-left: 1px solid var(--Gray-6);
    border-top: 1px solid var(--Gray-6);
    text-wrap: nowrap;
}

.menu-group a{
   text-decoration: none;
   padding: 8px 32px;
    color: var(--Black);
}
.menu-group a:hover{
    background: #1364c329;
}

.menu-group .active {
    background: var(--Blue);
    color: var(--White);
    padding: 8px 32px;
}



.footer{
    background: var(--Blue-2);
}

.footer-menu{
    padding: 15px 30px;
    background: var(--Blue-4);
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-menu>div{
    display: flex;
    gap: 10px;
    font-size: var(--font-size-4);
    color: var(--White);
}

.footer-menu-icon{
    background-image: url(../img/right-triangle-within-circle-white.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 15px 15px;
    width: 15px;
    height: 15px;
}

.footer-menu-link{
    cursor: pointer;
}

.footer-message{
    padding: 30px;
    background: var(--Blue-2);
    display: flex;
    justify-content: center;
    color: var(--White);
}

.footer-bottom{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
    color: var(--Gray-6);
}

.footer-message>div:nth-child(1){
    padding-right: 30px;
    display: flex;
    align-items: center;
    border-right: 1px solid white;
    font-size: var(--font-size-8);
}

.footer-message>div:nth-child(2){
    padding-left: 30px;
    font-size: var(--font-size-4);
    display: flex;
    flex-direction: column;
    gap: 8px;
}


.font-size-change{
    display: flex;
    justify-content: start;
    gap: 0px;
}

.font-size-change button{
    text-transform: none;
    padding: 5px 10px;
    font-weight: 700;
    color: var(--Gray-7);
    background: var(--White);
    border: 1px solid var(--Gray-6);
}

.font-size-change button:nth-child(1){
    font-size: var(--font-size-2);
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.font-size-change button:nth-child(3){
    font-size: var(--font-size-6);
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.phone-menu{
    display: none;
}

.portal-rows{
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 20px;
    gap: 15px;
}

.mb-100{
    margin-bottom: 100px;
}

    .font-size-change button.active{
        background: var(--Black);
        color: var(--White);
    }

/*--ヘッダ共通 end--*/
/*--トップ画面 start--*/
.title {
    color: var(--Black);
    font-size: var(--font-size-8);
    font-style: normal;
    font-weight: var(--font-weight-bold);
    line-height: 150%;
    letter-spacing: 0.88px;
    margin: 0;
    white-space: nowrap;
}

.title-style {
    color: var(--Black);
    font-size: var(--font-size-8);
    font-style: normal;
    font-weight: var(--font-weight-bold);
    line-height: 150%;
    letter-spacing: 0.88px;
    margin: 0;
}

.between-title{
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.space-between{
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.gap-10p{
    gap: 10px;
}

.wrap{
    flex-wrap: wrap;
}

.right-icon-flex{
    display: flex;
    align-items: center;
    gap: 5px;
}

.right-icon-flex>div:nth-child(1) {
    background-image: url(../img/right-triangle-within-circle-black.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 15px 15px;
    width: 15px;
    height: 15px;
}

.top-menu-message{
    display: flex;
    width: 100%;
    border: 2px solid var(--Alert);
    border-radius: 7px;
}

.top-menu-message>div:nth-child(1){
    word-break: break-all;
    background: var(--Alert-light);
    border-right: 2px solid var(--Alert);
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
    padding: 15px 15px;
    font-weight: var(--font-weight-bold);
    color: var(--Alert);
    gap: 15px;
    display: flex;
    width: 255px;
    align-items: center;
    justify-content: space-between;
}

.top-menu-message>div:nth-child(2){
    padding: 15px 15px;
    flex: 9;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
}

.top-menu-message-content{
    display: flex;
    gap: 15px;
    align-items: center;
}

.top-menu-title{
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-menu-text{
    color: var(--Alert);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.top-menu-text a{
    color: var(--Alert);
}

.top-mark1 {
    display: inline-flex;
    border-radius: 4px;
    border: 1px solid var(--Black);
    font-size: var(--font-size-3);
    padding: 3px 8px;
    width: fit-content;
    align-items: center;
    background: var(--White);
}


.pc{
    display: block;
}

.phone{
    display: none;
}

.white-no-wrap{
    white-space: nowrap;
}

.refuge-related-intelligence-left{
    flex:4;
}

.border-b-l-r{
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    border-bottom: 1px solid var(--Gray-6);
    border-right: 1px solid var(--Gray-6);
    border-left: 1px solid var(--Gray-6);
}

.refuge-related-intelligence-right{
    position: relative;
    flex:6;
    border-radius: 7px;
    border: 1px solid var(--Gray-6);
    min-height: 400px;
    max-height: 630px;
}

.pop{
    background: var(--White);
    padding: 20px;
    overflow-y: auto;
    overflow-x: hidden;
    position: absolute;
    top: 20px;
    border-radius: 5px;
    box-shadow: 3px 7px 8px #c8c8c8;
}

.pop>div{
    display: flex;
    flex-direction: column;
    gap: 5px;
    height: 100px;
    margin-bottom: 20px;
}

.pop::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    border-radius: 5px;
    background-color: var(--white);
}

.pop::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: var(--white);
}

.pop::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: var(--Gray-6);
}

.column-checkbox{
    display: flex;
    align-items: center;
    gap: 5px;
}

.column-checkbox label{
    padding-top: 5px;
}

.pop label{
    white-space: nowrap;
}

.top-area-select{
    display: flex;
    gap: 10px;
    align-items: center;
}
.top-area-select .select-margin-bottom{
    margin-bottom: 20px;
}
.top-area-select .select-city-hide{
    display: none !important;
}


.top-area-select-button{
    background-image: url(../img/right-triangle-within-circle-blue.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 20px 20px;
    padding: 8px 15px;
    padding-left: 45px;
    border-radius: 5px;
    background-color: var(--Blue-2);
    border: 1px solid var(--Blue-2);
    background-position-x: 15px;
    color: var(--White);
    white-space: nowrap;
}

.p-button{
    padding: 8px 15px;
    padding-left: 45px;
    border-radius: 5px;
    background-color: var(--Blue-2);
    border: 1px solid var(--Blue-2);
    background-position-x: 15px;
    color: var(--White);
    white-space: nowrap;
}

.p-button-bg-b{
    padding: 8px 15px;
    border-radius: 5px;
    background-color: var(--Blue-2);
    border: 1px solid var(--Blue-2);
    background-position-x: 15px;
    color: var(--White);
    white-space: nowrap;
}

.p-button-bg-b:disabled{
    background-color: var(--Gray-6);
    border: 1px solid var(--Gray-6);
}

.p-button-bg-w{
    padding: 8px 15px;
    border-radius: 5px;
    background-color: var(--White);
    border: 1px solid var(--Blue-2);
    background-position-x: 15px;
    color: var(--Blue-2);
    white-space: nowrap;
}

.e-btn-modal-query {
    padding-left: 35px;
    background: url(../img/bi_query_white.svg) no-repeat center center;
    background-position-x: 12px;
    background-color: var(--Blue-2);
}

.level-label {
    display: inline-flex;
    width: 100%;
    padding: 10px;
    justify-content: start;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 4px;
    color: #FFF;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-size: var(--font-size-4);
    white-space: nowrap;
}

.level-red {
    background: var(--Level-3);
}

.level-yellow {
    background: var(--Level-2);
    font-weight: var(--font-weight-bold);
    color: var(--Black);
}

.level-black {
    background: var(--White);
    font-weight: var(--font-weight-bold);
    color: var(--Black);
}

.map-content{
    height: 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    gap: 25px;
    font-size: var(--font-size-4);
    background-color: var(--White);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}



.bk1{
    background-image: url(../img/background_1.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-position-x: 30px;
    background-position-y: 25px;
    background-size: 30px 30px;
}

.bk2{
    background-image: url(../img/background_2.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-position-x: 30px;
    background-position-y: 25px;
    background-size: 30px 30px;
}

.bk3{
    background-image: url(../img/background_3.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-position-x: 30px;
    background-position-y: 25px;
    background-size: 30px 30px;
}

.bk4{
    background-image: url(../img/background_4.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-position-x: 30px;
    background-position-y: 25px;
    background-size: 30px 30px;
}

.bk5{
    background-image: url(../img/bk_5.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-position-x: 0px;
    background-position-y: 1px;
    background-size: 18px 18px;
}

.bk6{
    background-image: url(../img/bk_6.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-position-x: 0px;
    background-position-y: 1px;
    background-size: 16px 16px;
}

.bk7{
    background-image: url(../img/bk_7.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-position-x: 0px;
    background-position-y: 1px;
    background-size: 14px 14px;
}

.bk8{
    background-image: url(../img/bk_8.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-position-x: 0px;
    background-position-y: 1px;
}

.intelligence-info2{
    display: flex;
    border: 1px solid var(--Gray-6);
    border-radius: 5px;
    background-color: var(--White);
}

.intelligence-info2 .info2-left{
    padding: 30px 70px;
    padding-left: 75px;
    padding-right: 30px;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-8);
    background-color: var(--white);
    white-space: nowrap;
    border-right: 0px;
}

.intelligence-info2 .info2-right{
    display: flex;
    flex-direction: column;
    align-items: center;
    border-left: 1px solid var(--Gray-6);
    height: 60px;
    margin-top: 12px;
}

.intelligence-info2 .info2-right>div {
    display: flex;
    width: 100%;
    height: 50%;
    align-items: center;
    padding: 5px 15px;
    font-size: 1.15rem;
    font-weight: 700;
    gap: 30px;
    justify-content: space-around;
}

.intelligence-info2 .info2-right>div>div {
    padding: 0 20px;
    padding-left: 30px;
}

.portal-top .top-area-select .bootstrap-select{
    width: 72% !important;
}

.portal-top .top-area-select span{
    white-space: nowrap;
}

.portal-top .goto{
    color: var(--Alert);
    background-image: url(../img/right-triangle-within-circle-pink.svg);
    background-repeat: no-repeat;
    background-position: center left;
    background-size: 16px 16px;
    padding-left: 18px;
}

.portal-top .goto-blue {
    color: var(--Blue-2) !important;
    background-image: url(../img/right-triangle-within-circle-blue2.svg) !important;
}

.top-menu-border-blue{
	border: 2px solid var(--Blue-2) !important;
}

.top-menu-border-blue .right-blue{
	color: var(--Blue-2) !important;
	border-right: 2px solid var(--Blue-2) !important;
	background: #0f67ff0f !important;
}

.top-menu-border-blue .top-menu-text {
    color: var(--Blue-2) !important;
}

.portal-top .cards{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.portal-top .intelligence-info{
    width: 24%;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-8);
    background-color: var(--white);
    border: 1px solid var(--Gray-6);
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding:15px;
    height: 80px;
}

.portal-top .intelligence-info .pt-txt{

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.portal-top .intelligence-info img{
     padding-right:18px;
}

/*--トップ画面 end--*/
/*--避難所情報一覧 start--*/
.portal-shelter .search-row{
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    border-radius: 12px;
    background: #D0E4FB;
    margin: 20px 0;
}

.portal-shelter .search-card-row{
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-around;
    
}

.portal-shelter .search-card-img{
    height: 77px;
}
.portal-shelter .search-card{
    display: flex;
    padding: 24px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5%;
    border-radius: 8px;
    background: #FFF;
    width: 30%;
    border: 2px solid var(--White);
    
}

.portal-shelter .search-card:hover{
    cursor: pointer;

    border: 2px solid var(--Blue, #1364C3);
    background: #F1F7FE;
}

.portal-shelter .search-card-content{
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: calc(100% - 60px);
}

.portal-shelter .p-title1{
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-6);
    word-break: break-all;
}

.portal-shelter .p-content1{
    word-break: break-all;
}

.portal-shelter .p-title2-border{
    width: 16px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    border-left: 4px solid var(--Blue);
}
.portal-shelter .p-title2{
    font-size: var(--font-size-10);
    font-weight: var(--font-weight-bold);
}
.portal-shelter .p-table-title{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.portal-shelter .p-table1{
    width: 100%;
    border: 1px solid var(--Gray-6);
    border-radius: 8px;
    list-style: none;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    background: var(--White);
    padding: 0;
}

.portal-shelter .p-table1-row{
    width: 100%;
    display: flex;
    flex-direction: row;
    padding: 0px 16px;
}

.portal-shelter .pc-even{
    background: var(--Gray-1);
}

.portal-shelter .p-table1-row-l,.portal-shelter .p-table1-row-r{
    width: 50%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.portal-shelter .p-table1-row-r {
    padding-left: 20px;
}

.portal-shelter .p-table1-row-l{
    border-right: 1px solid var(--Gray-6);
}


.portal-shelter .city-name{
    width: 30%;
    background-image: url(../img/portal-org-pre.svg);
    background-repeat: no-repeat;
    background-position: left center;
    font-size: var(--font-size-6);
    color: var(--Blue);
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.72px;
    padding-left: 28px;
    display: flex;
    align-items: center;
    cursor: pointer;
}


.portal-shelter .city-info{
    display: flex;
    flex-direction: row;
    width: 70%;
    flex-wrap: wrap;
    justify-content: start;
}

.portal-shelter .city-info,.portal-shelter .city-name{
    padding-top: 20px;
    padding-bottom: 20px;
}

.portal-shelter .city-info>div{
    width: 25%;
    min-width: 120px;
    border-left: 3px solid var(--Gray-4);
    padding: 4px 8px;
    line-height: 150%;
    letter-spacing: 0.56px;
}

.portal-shelter .city-info>div>img{
    margin-top: -4px;
    margin-right: 2px;
}



.address-master{
    padding: 20px;
    background: var(--Gray-3);
    width: 100%;
}

.address-master table{
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    background-color: var(--White);
    border: 1px solid var(--Gray-6);
}

.address-master table td{
    padding: 20px;
}

.address-master table td:nth-child(1){
    font-weight: var(--font-weight-bold);
    white-space: nowrap;
}

.address-master table td:nth-child(3){
    border-left: 1px solid var(--Gray-6);
    font-weight: var(--font-weight-bold);
    white-space: nowrap;
}

.address-master table tr:nth-child(odd){
    background-color: var(--White);
}

.address-master table tr:nth-child(even){
    background-color: var(--Gray-3);
}

.infoName{
    font-size: 1.4em;
}
.infoItem{
    font-size: 1.2em;
}

.master-icon{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.master-icon>div{
    text-align: center;
    font-size: var(--font-size-4);
    font-weight: var(--font-weight-bold);
    width: 100%;
    padding: 3px 6px;
}

.master-1{
    word-break: break-all;
    background: var(--Blue-4);
    color: var(--White);
}

.master-2{
    word-break: break-all;
    border: 1px solid var(--Blue_dark, #094890);
    background: #E7F2FD;
    color: var(--Blue_dark, #094890);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 21px */
    letter-spacing: 0.56px;
}

.master-3{
    word-break: break-all;
    background: var(--Gray_dark, #666);
    color: white;
}

.master-4{
    background: #121212;
    color: white;
    border-radius: 5px;
}

.master-5{
    word-break: break-all;
    background: #828282;
    color: white;
    border-radius: 5px;
}

.master-6{
    word-break: break-all;
    color: #FFF;
    border-radius: 5px;
    font-size: var(--font-size-4);
    font-weight: var(--font-weight-bold);
    line-height: 150%; /* 21px */
    letter-spacing: 0.56px;
    background: var(--Level-3);
    padding: 3px 6px;
    text-align: center;
}

.master-7{
    word-break: break-all;
    color: #FFF;
    border-radius: 5px;
    font-size: var(--font-size-4);
    font-weight: var(--font-weight-bold);
    line-height: 150%; /* 21px */
    letter-spacing: 0.56px;
    background: var(--Level-4);
    padding: 3px 6px;
    text-align: center;
}

.master-8{
    word-break: break-all;
    color: #FFF;
    border-radius: 5px;
    font-size: var(--font-size-4);
    font-weight: var(--font-weight-bold);
    line-height: 150%; /* 21px */
    letter-spacing: 0.56px;
    background: var(--Level-5);
    padding: 3px 6px;
    text-align: center;
}

.master-9{
    word-break: break-all;
    color: #FFF;
    border-radius: 5px;
    font-size: var(--font-size-3);
    font-weight: var(--font-weight-bold);
    line-height: 150%; /* 21px */
    letter-spacing: 0.56px;
    background: #094890;
    padding: 3px 6px;
    text-align: center;
}

.master-10{
    word-break: break-all;
    color: #FFF;
    border-radius: 5px;
    font-size: var(--font-size-3);
    font-weight: var(--font-weight-bold);
    line-height: 150%; /* 21px */
    letter-spacing: 0.56px;
    background: #666666;
    padding: 3px 6px;
    text-align: center;
}

.master-11{
    word-break: break-all;
    color: #094890;
    border-radius: 5px;
    font-size: var(--font-size-3);
    font-weight: var(--font-weight-bold);
    line-height: 150%; /* 21px */
    letter-spacing: 0.56px;
    background: #e8f1fd;
    padding: 3px 6px;
    text-align: center;
}

.master-12{
    word-break: break-all;
    color: #FFF;
    border-radius: 5px;
    font-size: var(--font-size-4);
    font-weight: var(--font-weight-bold);
    line-height: 150%; /* 21px */
    letter-spacing: 0.56px;
    background: #0000FF;
    padding: 3px 6px;
    text-align: center;
}

.master-13{
    word-break: break-all;
    color: var(--White);
    border-radius: 5px;
    font-size: var(--font-size-4);
    font-weight: var(--font-weight-bold);
    line-height: 150%; /* 21px */
    letter-spacing: 0.56px;
     background: var(--Gray-6);
    padding: 3px 6px;
    text-align: center;
}

.master-6.w-100,
.master-7.w-100,
.master-8.w-100,
.master-12.w-100,
.master-13.w-100 {
	word-break: break-all;
    width: 100px !important;
    display: inline-block;
    margin: 2px;
}

.master-9.ms-w-50,
.master-10.ms-w-50,
.master-11.ms-w-50{
    width: 50px !important;
    display: inline-block;
    margin: 2px;
}

.mt-10{
    margin-top: 10px;
}

.portal-shelter-list{
    font-size: var(--font-size-5);
}

.list-table.portal-shelter-list  table th {
    text-align: center;
}

.portal-shelter-list .dataTable th:nth-child(1){ width: 25%; }
.portal-shelter-list .dataTable th:nth-child(2){ width: auto;}
.portal-shelter-list .dataTable th:nth-child(3){ width: 150px; }
.portal-shelter-list .dataTable th:nth-child(4){ width: 130px; }
.portal-shelter-list .dataTable th:nth-child(5){ width: 130px; white-space: nowrap;}
.portal-shelter-list .dataTable th:nth-child(6){ width: 75px; white-space: nowrap;}

.portal-shelter-list .dataTable td:nth-child(1){ width: 25%; }
.portal-shelter-list .dataTable td:nth-child(2){ width: auto; }
.portal-shelter-list .dataTable td:nth-child(3){ width: 150px; white-space: nowrap;}
.portal-shelter-list .dataTable td:nth-child(4){ width: 100px; white-space: nowrap; text-align: center;}
.portal-shelter-list .dataTable td:nth-child(5){ width: 130px; white-space: nowrap; text-align: center;}
.portal-shelter-list .dataTable td:nth-child(6){ width: 75px; white-space: nowrap; text-align: center;}

.portal-shelter .p-input {
    width: 100%;
}
.portal-shelter .p-input input{
    width: 100%;
}

.portal-shelter .p-input2 {
    width: 100%;
}
.portal-shelter .p-input2 input{
    width: 100%;
}

/*--避難所情報一覧 end--*/

/*避難情報一覧 start*/

.portal-evacuation.portal-shelter .p-table-title {
/*    margin-top: 40px;*/
}

.portal-evacuation.portal-shelter .city-info>div {
    display: flex;
    justify-content: flex-start;
    border-left: 0;
    white-space: nowrap;
}

.portal-evacuation.portal-shelter .city-info>div.w-100 {
    width: 100%;
}

.list-table.portal-evacuation-list  table th {
    text-align: center;
}

.portal-evacuation-list .dataTable th:nth-child(1){ width: 38%; }
.portal-evacuation-list .dataTable th:nth-child(2){ width: auto; }
.portal-evacuation-list .dataTable th:nth-child(3){ width: 200px; }
.portal-evacuation-list .dataTable th:nth-child(4){ width: 150px; }
.portal-evacuation-list .dataTable th:nth-child(5){ width: 150px; white-space: nowrap; }
.portal-evacuation-list .dataTable th:nth-child(6){ width: 75px; white-space: nowrap; }

.portal-evacuation-list .dataTable td:nth-child(1){ width: 38%; }
.portal-evacuation-list .dataTable td:nth-child(2){ width: auto; }
.portal-evacuation-list .dataTable td:nth-child(3){ width: 200px; white-space: nowrap;}
.portal-evacuation-list .dataTable td:nth-child(4){ width: 150px; white-space: nowrap; text-align: right;}
.portal-evacuation-list .dataTable td:nth-child(5){ width: 150px; white-space: nowrap; text-align: right;}
.portal-evacuation-list .dataTable td:nth-child(6){ width: 75px; white-space: nowrap; text-align: center;}

.portal-evacuation.portal-shelter .city-info>div>div {
    width: 100%;
}

/*避難情報一覧 end*/

.phone-menu-list{
    display: none;
}

/*リンク集 start*/
.portal-links .category img{
    width: 19px;
    margin-right: 10px;
    
}

.portal-links .links{
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-start;
    flex-direction: row;
    align-items: center;
    font-size: 16px;
    list-style: none;
}

.portal-links .links li{
    min-width: 265px;
    height: 68px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.portal-links .links li a{
    padding: 18px;
    min-width: 265px;
    width: 265px;
    height: 100%;
    background: var(--Gray-3);
    border-radius: 8px;
    text-overflow: ellipsis;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.portal-links .links li a span{
    width: 100%;
    font-size: var(--font-size-6);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow:hidden;
    text-overflow:ellipsis;
}

.portal-links .links .background-white {
    background: var(--White);
}

.portal-links .nav{
    gap: 10px;
}

/*.portal-links .nav-fill .nav-item .nav-link{
    border: 1px solid var(--Gray-3);
    border-radius: 8px;
    background: var(--White);
    font-size: 16px;
    font-weight: 700;
    height: 70px;
}

.portal-links .nav-fill .nav-item .nav-link img{
    margin-right: 10px;
}

.portal-links .nav-pills .nav-link.active{
    background-color:  #1364c329;
    color: var(--Black);
}

*/
.portal-links .center{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.portal-links .nav{
    width: 100%;
    border-bottom: 1px solid var(--Gray-3);
}

.portal-links .tabcenter{
    display: flex;
    width: 85%;
    justify-content: center;
    align-items: flex-end;
}

.portal-links .nav-tabs .nav-link img{
    width: 32px;
    height: 32px;
    padding: 4px;
    border-radius: 4px;
    margin-right: 8px;
}
.portal-links .nav-tabs .nav-link{
    width: 19%;
    text-align: left;
    background: var(--White);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border: 1px solid var(--Gray-3);
    height: 50px;
    font-size: var(--font-size-6);

}
.portal-links .nav-tabs .nav-link.active{
    background: var(--Blue);
    color: var(--White);
    border: none;
}

.portal-links .nav-tabs .nav-link.active img{
    background-color: var(--White);
}

.portal-links .links-tabContent{
    padding: 24px;
    width: 85%;
    margin: 0 auto;
    border: 1px solid var(--Gray-3);
}

.portal-links .other-btn{
        width: 29px;
    height: 28px;
    padding: 0;
    background-position: 3px center;
}

.portal-links .cards{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.portal-links .intelligence-info{
    width: 30%;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-6);
    background-color: var(--white);
    border: 1px solid var(--Gray-6);
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding:15px;
    height: 70px;
}


.portal-links .intelligence-info .pt-txt{
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.portal-links .intelligence-info img{
     padding-right:12px;
     width: 45px;
     height: 45px;
}

.portal-links .links li a:hover {
    background: #1364c329;
}

/*リンク集 end*/

/*緊急ニュース start*/
.portal-news .list-news{
    width: 100%;
    background: var(--White);
    padding: 0;
    margin:0;
    font-size: var(--font-size-5);
    display: none;
}

.portal-news .list-news.show{
    display: block;
}

.portal-news .list-news li:nth-child(even){
    background: var(--Gray-1);
}

.portal-news .list-news li{
    display: flex;
    flex-wrap: wrap;

}

.portal-news .list-news div{
    padding: 12px;
}

.portal-news .list-news li>div:nth-child(1){
    width: 20%;
    min-width: 230px;
    margin-right: 20px;
    white-space: nowrap;
    color: var(--Blue-2);
}

.portal-news .list-news li>div:nth-child(2){
    width: 78%;
}


/*緊急ニュース end*/

/*地図 start*/

/*地図 end*/

@media screen and (max-width: 1220px) {


    .portal-news .list-news li>div:nth-child(1){
        width: 100%;
        margin-right: 0;
    }
    
    .portal-news .list-news li>div:nth-child(2){
        width: 100%;
    }
    .no-142-1 .list-news li>div:nth-child(1){
        white-space: unset !important;
        max-width: 260px;
    }
}

@media screen and (max-width: 1400px) {
    /*--ヘッダ共通 start--*/
        .menu-group a {
            padding: 8px 8px;
        }
        .menu-group .active {
            padding: 8px 8px;
        }
    /*--ヘッダ共通 end--*/
}

@media screen and (max-width: 1210px) {
    /*--ヘッダ共通 start--*/
        .header-menu .header-logo{
            padding-right: 0px;
        }
    
        .header-menu .menu-group{
            flex-wrap: nowrap;
            justify-content: end;
        }
    
        .jus-start-1200{
            justify-content: start;
        }
    /*--ヘッダ共通 end--*/
}
@media screen and (max-width: 1200px) {
/*--ヘッダ共通 start--*/
    .header-menu .header-logo{
        padding-right: 0px;
    }

    .header-menu .menu-group{
        flex-wrap: nowrap;
        justify-content: end;
    }

    .jus-start-1200{
        justify-content: start;
    }
/*--ヘッダ共通 end--*/

/*--TOP start--*/
    .portal-top .intelligence-info{
        width: 22vw;
    }
/*--TOP end--*/

/*--避難所情報一覧 start--*/

    .portal-shelter .city-name {
        width: 28%;
        
    }
    
    .portal-shelter .p-table1-row-l, .portal-shelter .p-table1-row-r {
        width: 100%;
    }
    
    .portal-shelter .p-table1-row-r {
        padding-left: 0;
    }
    
    .portal-shelter .p-table1-row-l{
        border-right: 0;
    }
    .portal-shelter .p-table1-row {
        flex-wrap: wrap;
    }
    
    .portal-shelter .pc-even{
        background: var(--White);
    }
    
    .portal-shelter .m-even{
        background: var(--Gray-1);
    }
    
    .portal-shelter .p-table1-row {
        padding-bottom: 0;
    }
    
    .portal-shelter .p-table1-row-l {
        padding-bottom: 16px;
    }
    
    .portal-shelter .search-card {
        flex-direction: column;
    }

/*--避難所情報一覧 end--*/

}

@media screen and (max-width: 1042px) {
    .menu-group a {
        padding: 8px 8px;
    }
    .menu-group .active {
        padding: 8px 8px;
    }
}

@media screen and (max-width: 1010px) {
    .menu-group {
        padding-left: 0 !important;
    }
}

@media screen and (max-width: 1000px) {
/*--TOP start--*/
    .portal-top .intelligence-info{
        width: 32%;
    }
/*--TOP end--*/

    .portal-links .nav-tabs .nav-link {
        width: 32%;
     }
    .menu-group a {
        padding: 8px 4px;
    }
    .menu-group .active {
        padding: 8px 4px;
    }

}

@media screen and (max-width: 950px) {
    .menu-group a {
        padding: 8px 2px;
    }
    .menu-group .active {
        padding: 8px 2px;
    }
}

@media screen and (max-width: 1252px) {
    .header-logo {
        padding: 0 0;
    }
}

@media screen and (max-width: 900px) {
/*--ヘッダ共通 start--*/
    .header-menu{
        display: none;
    }

    main{
        padding-left: 15px;
        padding-right: 15px;
    }

    .portal-rows{
        flex-direction: column;
    }

    .phone-menu{
        min-height: 75px;
        padding-left: 0px;
        padding-right: 0px;
        background: var(--White);
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
    .PTLV0120 .phone-menu {
        justify-content: end;
    }

    .phone-logo{
        font-size: var(--font-size-4);
        font-weight: var(--font-weight-bold);
        padding-left: 15px;
        display: flex;
        align-items: center;
        white-space: nowrap;
    }

    .phone-logo img{
        width: 48px;
     }
     
    .phone-menu-toggle {
        white-space: nowrap;
        display: flex;
        align-items: center;
        padding: 0 10px;
        font-size: var(--font-size-3);
        background-image: url(../img/phone-menu.svg);
        background-repeat: no-repeat;
        background-position: center center;
        background-position-y: 10px;
        background-size: 32px 32px;
        padding-top: 30px;
        cursor: pointer;
        /* background-position-x: 205px; */
    }

    .phone-menu-toggle.active {
        background-image: url(../img/x-lg.svg);
    }

    .phone-menu-list{
        position: absolute;
        width: 100%;
        height: calc(100vh - 65px);
        background: var(--Blue);
/*        top: 65px;*/
        padding: 30px 20px;
    }

    .phone-menu-list.active{
        display: block;
        z-index: 1002;
    }

    .phone-menu-list>ul{
        list-style-type: none;
        padding: 0 25px !important;
        margin-bottom: 40px;
        width: 100%;
    }

    .phone-menu-list>ul>li{
        padding-right: 5px;
        border-bottom: 1px solid var(--White);
        width: 100%;
        cursor: pointer;
        color: var(--White);
    }

    .phone-menu-list>ul>li>a{
        padding: 15px 16px;
        display: inline-block;
        color: var(--White);
        background-image: url(../img/phone-menu-right.svg);
        background-repeat: no-repeat;
        background-position: center right;
        text-decoration: none;
        width: 100%;
    }

    .phone-menu-list>ul>li.active{
        background-image: url(../img/point.svg);
        background-position: center left;
        background-repeat: no-repeat;
    }

    .phone-menu-option{
        padding: 0 25px;
        color: var(--White);
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 15px;
    }

    .font-size-change button{
        flex: 1;
    }

    .font-size-change button:nth-child(1){
        font-size: var(--font-size-3);
    }

    .font-size-change button:nth-child(3){
        font-size: var(--font-size-5);
    }

        

/*--ヘッダ共通 end--*/
/*--トップ画面 start--*/
    .top-menu-message{
        flex-direction: column;
    }

    .top-menu-message>div:nth-child(1){
		border-right: 0 !important;
        flex-direction: row;
        justify-content: space-between;
        border-right: 0px;
        border-top-right-radius: 7px;
        border-bottom-right-radius: 7px;
        width: 100%;
    }

    .top-menu-message-content{
        position: relative;
        flex-wrap: wrap;
    }

    .pc{
        display: none;
    }

    .phone{
        display: block;
    }

    .top-menu-text{
        color: var(--Alert);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
        word-break: break-all;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        margin-bottom: 5px;
    }

    .form-items-table-overflow{
        overflow-y: hidden;
        height: auto;
    }

    .map-content{
        flex-wrap: wrap;
        height: auto;
    }

    .space-between{
        flex-direction: column;
    }

    .intelligence-info2{
        flex-direction: column;
    }

    .info2-left{
        border-bottom: 1px solid var(--Gray-6);
    }

    .intelligence-info2 .info2-right {
        border-left: 0;
        height: 100px;
    }

    .info2-right{
        margin-top: 0px;
        
    }

    .footer-message{
        flex-direction: column;
    }

    .footer-message>div:nth-child(1){
        padding-right: 0;
        padding-bottom: 30px;
        border-right: unset;
        border-bottom: 1px solid var(--White);
    }

    .footer-message>div:nth-child(2){
        padding-left: 0;
        padding-top: 30px;
    }

    .footer-menu,
    .footer-message{
        padding-left: 15px;
        padding-right: 15px;
        flex-direction: column;
    }

    .footer-bottom{
        justify-content: start;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .portal-top .cards {
        flex-direction: row;
    }
    .portal-top .intelligence-info{
        width: 48%;
    }
    
/*--トップ画面 end--*/
/*--避難所情報一覧 start--*/
    .address-master tr{
        display: flex;
        flex-direction: column;
    }


    .address-master table td:nth-child(1),
    .address-master table td:nth-child(3) {
        border-left: 0px;
    }

    .address-master table tr:nth-child(odd){
        background-color: unset;
    }
    
    .address-master table tr:nth-child(even){
        background-color: unset;
    }

    .address-master table td:nth-child(odd){
        background-color: var(--White);
    }
    
    .address-master table td:nth-child(even){
        background-color: var(--Gray-3);
    }
    .portal-filter{
        align-items: baseline;
        flex-wrap: wrap;
        flex-direction: column;
    }
    
    .portal-filter-title {
        width: 100px;
    }
     .portal-shelter-list .dataTable th:nth-child(1){ width: 150px;}
    .portal-shelter-list .dataTable th:nth-child(2){ width: 150px;}
    .portal-shelter-list .dataTable th:nth-child(3){ width: 100px; }
    .portal-shelter-list .dataTable th:nth-child(4){ width: 100px; }
    .portal-shelter-list .dataTable th:nth-child(5){ width: 130px; white-space: nowrap;}
    .portal-shelter-list .dataTable th:nth-child(6){ width: 75px; white-space: nowrap;}
    
    .portal-shelter-list .dataTable td:nth-child(1){ width: 150px; }
    .portal-shelter-list .dataTable td:nth-child(2){ width: 150px;}
    .portal-shelter-list .dataTable td:nth-child(3){ width: 100px; white-space: nowrap;}
    .portal-shelter-list .dataTable td:nth-child(4){ width: 100px; white-space: nowrap;}
    .portal-shelter-list .dataTable td:nth-child(5){ width: 130px; white-space: nowrap;}
    .portal-shelter-list .dataTable td:nth-child(6){ width: 75px; white-space: nowrap;}
    
/*--避難所情報一覧 end--*/

/*--避難情報一覧 start--*/



.portal-evacuation-list .dataTable th:nth-child(1){ width: 200px; white-space: wrap;}
.portal-evacuation-list .dataTable th:nth-child(2){ width: 200px;white-space: wrap;}
.portal-evacuation-list .dataTable th:nth-child(3){ width: 130px; white-space: wrap;}
.portal-evacuation-list .dataTable th:nth-child(4){ width: 150px; white-space: wrap;}
.portal-evacuation-list .dataTable th:nth-child(5){ width: 150px;white-space: wrap;}
.portal-evacuation-list .dataTable th:nth-child(6){ width: 100px;white-space: wrap;}

.portal-evacuation-list .dataTable td:nth-child(1){ width: 200px; white-space: wrap;}
.portal-evacuation-list .dataTable td:nth-child(2){ width: 200px; white-space: wrap;}
.portal-evacuation-list .dataTable td:nth-child(3){ width: 130px; white-space: wrap; }
.portal-evacuation-list .dataTable td:nth-child(4){ width: 150px; white-space: wrap; text-align: right;}
.portal-evacuation-list .dataTable td:nth-child(5){ width: 150px; white-space: wrap; text-align: right;}
.portal-evacuation-list .dataTable td:nth-child(6){ width: 100px; white-space: wrap;}
/*--避難情報一覧 end--*/

/*--リンク集 start--*/
    .portal-links .links li{
/*        width: 100%;*/
    }
    
    .portal-links .cards {
        flex-direction: row;
        width: 100%;
    }
    
    .portal-links .intelligence-info{
        width: 48%;
    }
/*--リンク集 end--*/

/*緊急ニュース start*/
    .portal-news .list-news li>div:nth-child(1){
        width: 100%;
        white-space: nowrap;
        color: var(--Blue-2);
    }
    
    .portal-news .list-news li>div:nth-child(2){
        
    }

/*緊急ニュース end*/

    .protal-content-main {
        width: 100%;
    }

    .ptlc-top-map {
        height: 450px !important;
    }
    
    .show-info {
        display: block !important;
    }
}

@media screen and (max-width: 767px) {
    
 /*--トップ start--*/
     .portal-top .cards {
        flex-direction: row;
    }
    .portal-top .intelligence-info{
        width: 100%;
    }
 /*--トップ end--*/
    /*--避難所情報一覧 start--*/
    .portal-shelter .search-card-row {
        flex-direction: column;
        gap: 12px;
    }
    .portal-shelter .search-card {
        width: 100%;
        flex-direction: row;
    }
    .portal-shelter .search-card-img {

        align-items: center;
        /* align-content: normal; */
        display: flex;
    }
    .portal-shelter .search-card-img img {
        width: 50px;
        height: 60px;
    }
    .portal-shelter .p-table-title-right button{
        width: 100%;
        margin-bottom: 12px;
    }
    
    .portal-shelter .p-table1-row-l, .portal-shelter .p-table1-row-r {
        width: 100%;
        flex-direction: column;
       /* gap: 12px;*/
    }
    
    .portal-shelter .city-info {
        width: 100%;
    }
    
    .portal-shelter .city-name {
        width: 100%;
    }
    
    .portal-shelter .city-info>div {
        width: 33.3%;
        padding: 4px 6px;
        line-height: 150%;
        letter-spacing: 0.56px;
    }
    
    .portal-shelter .city-info, .portal-shelter .city-name {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    

    
    /*--避難所情報一覧 end--*/
    
     .portal-links .nav-tabs .nav-link {
        width: 48%;
     }
}


@media screen and (max-width: 500px) {
     .phone-logo img{
        width: 26px;
     }
     
     .header-logo-name {
        font-size: 19px;
        width: 216px;
        margin-left: 4px;
        }
     
     .portal-links .nav-tabs .nav-link {
        width: 100%;
     }
         .portal-links .intelligence-info{
        width: 87%;
    }
    
    .portal-links .tabcenter {
        justify-content: flex-start;
        flex-direction: column;
    }

    .portal-links .links {
        padding-left: 0;
    }
    .portal-links .links .ph-li {
        justify-content: flex-start;
        min-width: 200px;
    }
    .portal-links .links .ph-li a {
        min-width: 200px;
        overflow: hidden;
/*        white-space: nowrap;*/
    }
    .top-area-select-button{
        white-space: break-spaces;
        text-align: left;
    }
    .p-table-title-right .wsnm{
        white-space: normal;
    }
}

@media screen and (max-width: 320px) {
     .phone-logo img{
        width: 26px;
     }
     
     .header-logo-name {
        font-size: 19px;
        width: 224px;
        margin-left: 4px;
        }
    
/*--トップ画面 start--*/
    .title {
        white-space: normal;
    }

    .level-label{
        white-space: wrap;
    }

    .form-items-table table td:nth-child(1){
        white-space: normal;
    }

    .phone-logo{
        width: 80%;
    }

    .top-area-select-button{
        white-space: break-spaces;
        text-align: left;
    }

    .p-table-title-right .wsnm{
        white-space: normal;
    }

    .top-area-select{
        flex-wrap: wrap;
    }

    .top-mark1{
        padding: 3px 1px;
    }

    .top-menu-title{
        gap: 3px;
    }

    .footer-message>div:nth-child(1){
        font-size: var(--font-size-7);
    }
/*--トップ画面 end--*/
/*--避難所情報一覧 start--*/

    .refuge-logo-list{
        height: auto;
    }

    .refuge-logo-list>div>div:nth-child(1){
        min-width: 40px;
    }

    .img-div {
        min-width: 20px;
        height: 45px;
    }
    .portal-filter-title {
        width: 50px;
    }
    .portal-filter .portal-filter-fw {
        display: flex;
        flex-wrap: wrap;
    }
    .portal-filter .wsn {
        white-space: nowrap;
    }
    .portal-links .links {
        padding-left: 0;
    }
    .portal-links .links .ph-li {
        justify-content: flex-start;
    }
    .portal-links .links .ph-li a {
        min-width: 145px;
        overflow: hidden;
        white-space: nowrap;
    }
/*--避難所情報一覧 end--*/
/*--リンク集 start--*/
    .portal-links .links li{
        width: 100%;
    }
    
    .portal-links .nav-tabs .nav-link {
        width: 100%;
     }
/*--リンク集 end--*/
}

#google_translate_element{
    display: none;
}

/*
.map-dis{
    pointer-events: none;
    color: var(--Gray-6);
}*/

.c-message {
    width: 100%;
    margin-bottom: 10px;
    padding: 0 0px;
}

.c-message ul {
    padding-left: 0;
}

.c-message li {
    list-style: none;
    width: 100%;
    margin-bottom: 10px;
    color: var(--Alert);
    font-weight: var(--font-weight-bold);
    margin-top: 5px;
}

.c-message li:before {
    content: "";
    position: relative;
    display: inline-block;
    height: 15px;
    width: 25px;
    background-image: url(../img/bi_error.svg);
    background-size: 25px;
    background-size: 25px 25px;
}

.umb-10 {
    margin-bottom: 10px;
}

.ptlc-top-map {
    height: 90%;
    width: 100%;
    border-radius: 7px;
}

.max-row-4 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.js-bet-stb {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.js-bet-stb .stb-link {
    font-size: var(--font-size-4);
}

.js-bet-stb .goto {
    background-size: 14px 14px;
    color: var(--Black);
    background-image: url(../img/right-triangle-within-circle-black.svg);
}

.word-break-all{
    word-break: break-all;
}

.error-message-for-user{
    padding: 10px 20px 20px 20px;
}

.portal-form{
    background-color: var(--White);
    max-height: 50vh;
    border-radius: 12px;
    overflow: auto;
    border: 10px solid var(--White);
    margin-bottom: 20px;
}

.portal-form .form-item{
    margin: 30px 20px;
    display: flex;
    gap: 20px;
}
@media screen and (max-width: 900px) {
    .portal-form .form-item{
        flex-direction: column;
    }
}
.portal-form .form-msg{
    margin: 10px 20px;
    display: flex;
    gap: 20px;
    padding-top: 10px;
    font-size: var(--font-size-5);
}

.portal-form .form-item .item-label{
    padding: 10px 0;
    min-width: 75px;
    font-size: var(--font-size-5);
    width: 100px;
}

.portal-form .form-item .input-items{
    display: flex;
    gap: 20px;
    align-items: center;
}

.portal-form .form-item .input-items-column{
    flex-direction: column;
    display: flex;
    gap: 10px;
}

@media screen and (max-width: 500px) {
    .portal-form .form-item .input-items{
        flex-direction: column;
        align-items: flex-start;
    }
}

input[type="radio"] {
    padding: 0;
    border-color: var(--Gray-7);
    width: 18px;
    height: 18px;
    margin-top: 0px;
}

.portal-form .form-item .input-items.radios div{
    display: flex;
    gap: 10px;
    align-items: center;
}

.required {
    color: var(--Alert);
    font-feature-settings: 'pwid' on;
    font-size: 10px !important;
    line-height: 150%; /* 15px */
    background-color: var(--Alert-light);
    font-weight: 400;
    padding: 2px 4px;
    border-radius: 4px;
    vertical-align: text-bottom;
}

.form-check-input.error-border{
    border: 1px solid #EC0000;
}

.portal-form .form-item .input-items .input-item-with-util{
    display: flex;
    gap: 10px;
    align-items: center;
}

.portal-form .form-item .input-items .input-item-with-util input[type="text"]{
    width: 100px;
}

.portal-form .form-item .input-item{
    display: flex;
    flex-direction: column;
}

.error-item {
    border: 1px solid var(--Alert);
}

.error-item:focus:not(.form-check-input[type=radio]) {
    background: var(--Alert-light);
    box-shadow: 0 0 0 0.2rem var(--Alert-light) !important;
}

.loading-content{
    height: 100px;
    width: 150px;
    display: inline-block;
    align-content: center;
    text-align: center;
    background-color: var(--Gray-3);
    background-image: url(../img/loading.gif);
    background-position: center;
    background-size: 80px;
    background-repeat: no-repeat;
    border-radius: 12px;
}

table.dataTable tbody tr:nth-child(even) td {
  background-color: var(--Gray-1);
}
.bootstrap-select.disabled, .bootstrap-select > .disabled {
    background-color: var(--Gray-1);
}
.translated-ltr * {
    white-space: normal !important;
    word-break: break-all !important;
}
#kaisetuShelterInfoLegend img{
    height: 20px !important;
}