@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;
}

main {
    min-height: calc(100vh - 347px);
    margin-top: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
}


h2 {
    font-size: var(--font-size-8);
}

h3 {
    font-size: var(--font-size-6);
}

a {
    color: var(--Blue-link);
    text-decoration: underline;
    text-decoration-color: var(--Blue-link);
    padding: 2px;
}

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

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

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);
}

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

.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;
}

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

.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;
}


.dropdown-menu {
    max-height: 260px !important;
}


.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;
}




.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: 14px;
    padding: 4px 4px;
}

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

.bootstrap-select.disabled,
.bootstrap-select>.disabled {
    background-color: var(--Gray-1);
}

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


/*datatable start*/
.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;

    font-size: var(--font-size-4);
}

.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 {
    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;
}

.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 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-td);
}

.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;
}

/*datatable end*/


.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: 9px;
    font-family: var(--font-family);
    font-size: var(--font-size-5);
    /*    height: 31px;*/
    background: var(--White);
}

.dataTables_wrapper .bootstrap-select>*{
    font-size: var(--font-size-4);
}

.dataTables_wrapper .dataTables_length select{
    font-size: var(--font-size-3);
}

.protal-breadcrumb ol>li>a {
    text-decoration: underline;
    font-size: var(--font-size-5);
}

.protal-breadcrumb ol>li {
    font-size: var(--font-size-5);
}

.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);
    text-decoration: none;
}

.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 {
    height: 110px;
}

.large-body {
    height: calc(100vh - 269px) !important;
}

.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 {
    margin-left: 10px;
/*    cursor: pointer;*/
    font-size: var(--font-size-11);
    font-weight: 700;
    line-height: 160%;
}


.phone-title {
    display: none;
}

.header-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: flex-end;
    padding: 10px 26px;
    width: 27.8rem;
}

.header-warnInfo {
    display: flex;
    width: 23%;
    justify-content: center;
    align-items: center;
    gap: 5px;
    color: var(--White);
    white-space: nowrap;
    min-width: 190px;
}

.line-warnInfo {
    display: none;
}

.bottom-nav {
    display: none;
}

@media screen and (max-width: 1430px) {
    .header-warnInfo {
        width: 17%;
    }
}

@media screen and (max-width: 1231px) {
    .header-warnInfo {
        display: none;
    }

    .line-warnInfo {
        display: flex
    }
}

.header-warnInfo-m {
    display: flex;
    width: 100%;
    height: 48px;
    justify-content: center;
    align-items: center;
    background: #e52501;
    font-size: var(--font-size-8);
    font-weight: 700;
    text-shadow: 0 0 1px rgba(0, 0, 0), 0 0 2px rgba(255, 255, 255, 0.3);
}

.header-warnInfo-m svg {
    width: 26px;
    height: 22px;
    margin-right: 6px;
}

@media screen and (max-width: 1231px) {
    .header-warnInfo-m {
        border-radius: 0;
        color: var(--White);
        font-size: var(--font-size-6);
        height: 43px;
    }

    .header-warnInfo-m svg {
        width: 20px;
        height: 22px;
        margin-right: 6px;
    }
}



.menu-group-r1 {
    display: flex;
    justify-content: space-between;
}

.menu-group {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    margin-bottom: 0;
    justify-content: end;
    gap: 7px;
    font-size: var(--font-size-4);
    white-space: nowrap;
    min-height: 32px;
}


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

.footer-menu {
    padding: 10px 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(--White);
    font-size: var(--font-size-4);
}

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

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

.footer-message>div>div:nth-child(1) {
    font-size: var(--font-size-6);
}

.menu-group svg {
    margin-right: 1px;
}

.mg-svg1 svg {
    width: 14px;
    height: 15px;
    padding-bottom: 2px;
}

.mg-svg2 svg {
    width: 14px;
    height: 14px;
    margin-right: 4px;
}

.mg-svg3 svg {}

.mg-svg4 svg {}

.btnGrp {
    display: flex;
    justify-content: start;
    gap: 0px;
}


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

.font-size-change button,
.btnGrp button {
    text-transform: none;

    color: var(--Gray-7);
    background: var(--White);
    border: 1px solid var(--Gray-6);
}

.font-size-change button {
    padding: 5px 10px;
}

.btnGrp button {
    padding: 5px 13px;
    font-size: var(--font-size-14);
}

.btnGrp button:nth-child(1) {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.btnGrp button:nth-child(2) {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}



.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;
}

.font-size-change button.active,
.btnGrp button.active {
    background: #555555;
    color: var(--White);
    border-color: #555555;
}

.phone-menu {
    display: none;
}

.portal-rows {
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 20px;
    gap: 16px;
    margin: auto;
    width: calc(100% - 240px);
}

.portal-area-white {
    width: 100%;
    background: var(--White);
}

.portal-rows-2 {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 20px;
    gap: 15px;
    background: var(--White);
}

@media screen and (max-width: 1800px) {
    .portal-rows {
        width: calc(100% - 200px);
    }
}

@media screen and (max-width: 1600px) {
    .portal-rows {
        width: calc(100% - 160px);
    }
}

@media screen and (max-width: 1600px) {
    .portal-rows {
        width: calc(100% - 120px);
    }
}

@media screen and (max-width: 1400px) {
    .portal-rows {
        width: calc(100% - 80px);
    }
}

/*--ヘッダ共通 end--*/

/*配色付けのレベル start*/
/*フォント*/
.master-f {
    display: inline;
    word-break: break-all;
    font-size: var(--font-size-5);
    line-height: 150%;
    /* 21px */
    letter-spacing: 0.56px;
    color: var(--White);
    font-weight: var(--font-weight-bold);
    border-radius: 5px;
    padding: 7px 11px;
    text-align: center;
    white-space: nowrap;
}

/*避難所　開設　小*/
.master-1 {
    background: var(--Blue-4);
}

.master-2 {
    background: #E7F2FD;
    border: 1px solid var(--Blue_dark, #094890);
    color: var(--Blue_dark, #094890);
}

/*避難所　閉鎖　小*/
.master-3 {
    background: var(--Gray_dark, #666);
}

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

/*高齢者等避難*/
.master-6 {
    word-break: break-all;
    background: var(--Level-3);
}

/*避難指示*/
.master-7 {
    background: var(--Level-4);
}

/*緊急安全確保*/
.master-8 {
    background: var(--Level-5);
}

/*警戒区域*/
.master-12 {
    background: var(--Blue-6);
}

/*発令解除*/
.master-13 {
    background: var(--Gray-6);
}

/*避難所　開設　大*/
.master-9 {
    background: var(--Blue-4);
    padding: 7px 30px;
}

/*避難所　閉鎖*/
.master-10 {
    background: var(--Gray_dark, #666);
    padding: 7px 30px;
}

/*本部設置　解散*/
.portal-ico-1.grey {
    padding: 7px 30px;
    background: var(--Gray_dark, #666);
    color: var(--White);
}

/*本部設置　設置*/
.portal-ico-1.orange {
    padding: 7px 30px;
    background: #bd5005;
}

/*本部設置　通常*/
.portal-ico-2.red {
    background: var(--Alert);
    padding: 2px 5px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    color: var(--White);
    font-size: var(--font-size-3);
}

/*配色付けのレベル end*/

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

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

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

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

.wrap {
    flex-wrap: wrap;
}

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

.pc {
    display: block;
}

.phone {
    display: none;
}

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

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

.p-button-bg-b {
    padding: 8px 15px;
    border-radius: 5px;
    background-color: var(--Blue-btn-bg2);
    border: 1px solid var(--Blue-btn-bg2);
    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-btn-bg2);
    background-position-x: 15px;
    color: var(--Blue-btn-bg2);
    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-btn-bg2);
}

.p-m-button {
    padding: 8px 15px;
    border-radius: 5px;
    background-color: var(--Blue-btn-bg2);
    border: 1px solid var(--Blue-btn-bg2);
    color: var(--White);
    white-space: nowrap;
    width: 100px;
}

.p-m-button-white {
    background-color: var(--White);
    color: var(--Blue-btn-bg2);
}

#google_translate_element {
    display: none;
}


.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;
}


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

    /*--ヘッダ共通 start--*/
    .header-logo {
        padding: 0 0;
    }

    .menu-group a {
        padding: 8px 8px;
    }

    .menu-group .active {
        padding: 8px 8px;
    }

    /*--ヘッダ共通 end--*/

    .phone{
        display: block;
    }

    .phone.br-lineh{
        line-height: 1px;
    }

}

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

@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: 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--*/

}

@media screen and (max-width: 1042px) {
    html {
        font-size: 16px;
    }

    a {
        font-size: var(--font-size-6);
    }
    footer{
        margin-bottom: 116px;
    }
    .header-items {
        display: none;
    }

    .bottom-nav {
        position: fixed;
        bottom: 0;
        width: 100%;
        height: 116px;
        background-color: var(--Gray-10);
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 1000;
    }

    .bottom-nav-left {
        display: flex;
        align-items: center;
        width: 95px;
        height: 82px;
        flex-shrink: 0;
    }

    .bottom-nav-right {
        display: flex;
        flex-direction: column;
        /* 上下排列 */
        align-items: flex-end;
        gap: 5px;
        padding-right: 15px;
    }

    .bottom-nav .menu-group {
        font-size: var(--font-size-4);
    }

    .phone-menu-toggle {
        white-space: nowrap;
        display: flex;
        font-size: var(--font-size-3);
        background-image: url(../img/menu_bg.svg);
        background-repeat: no-repeat;
        background-position: center center;
        background-position: 0 0;
        background-size: 95px 82px;
        cursor: pointer;
        width: 95px;
        height: 82px;
        align-items: end;
        justify-content: center;
        padding-bottom: 10px;
        color: var(--White);
        font-size: var(--font-size-4);
        font-weight: var(--font-weight-bold);
    }

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

    .scroll-top button {
        background-color: var(--Blue-link);
        color: var(--White);
        border: 0;
        border-radius: 6px;
        cursor: pointer;
        width: 214px;
        height: 60px;
        background-image: url(../img/arrow_up_white.svg);
        background-repeat: no-repeat;
        background-position: 1860px center;

    }

    .phone-menu-list {
        position: absolute;
        width: 100%;
        height: calc(100vh - 208px);
        background: var(--White);
    }

    .phone-menu-list.active {
        display: block;
        position: fixed;
        bottom: 116px;
        z-index: 999;
        overflow-y: auto;
    }

    .phone-menu-list .accordion-flush .accordion-item {
        border-bottom: 1px solid var(--White);
    }

    .phone-menu-list .accordion-flush .accordion-button {
        color: var(--Black);
        background: #E0E6EA;
        --bs-accordion-btn-padding-x: 2.25rem;
        padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
    }

    .phone-menu-list .phone-btns {
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding: 8px 15px;
        text-align: left;
    }

    .phone-menu-list .phone-btns button {
        background-color: var(--White);
        border: 0;
        padding: 8px 24px;
        text-align: left;
        background-repeat: no-repeat;
        background-position: 0 center;
    }

    .phone-menu-list .phone-btns button.phbtn-bg1-1 {
        background-image: url(../img/phbtn-bg1-1.svg);
        background-size: 15px 19px;
    }

    .phone-menu-list .phone-btns button.phbtn-bg1-2 {
        background-image: url(../img/phbtn-bg1-2.svg);
        background-size: 18px 19px;
    }

    .phone-menu-list .phone-btns button.phbtn-bg1-3 {
        background-image: url(../img/phbtn-bg1-3.svg);
        background-size: 17px 18px;
    }

    .phone-menu-list .phone-btns button.phbtn-bg1-4 {
        background-image: url(../img/phbtn-bg1-4.svg);
        background-size: 17px 18px;
    }

    .phone-header-items {
        display: flex;
        align-items: flex-start;
        padding: 10px 35px;
        flex-direction: column;
        gap: 10px;
    }
    .phone-header-items .menu-group{
        font-size: var(--font-size-5);
    }

}

@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%;
    }

}



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

    /*--ヘッダ共通 start--*/

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

    .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-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);
    }

    .header-logo {
        justify-content: flex-start;
        padding-left: 24px;
    }
    /*--ヘッダ共通 end--*/
}

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

    .header-logo-name {
        font-size: var(--font-size-7);
        line-height: 110%;
    }
    .header-logo-name .title-2 {
        font-size: var(--font-size-5);
    }

}

@media screen and (max-width: 500px) {
    .phone-logo img {
        width: 26px;
    }


    /*関連情報 start*/
    .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;*/
    }

    /*関連情報 end*/

}

@media screen and (max-width: 500px) {
    .phone-title {
        display: inline
    }
}

@media screen and (max-width: 320px) {
    .phone-logo img {
        width: 26px;
    }

    .header-logo-name {
        font-size: 19px;
        width: 224px;
        margin-left: 4px;
    }

}

.small-rem {
    width: 33.8rem;
}