@charset "UTF-8";
/* CSS Document */

/* 不法投棄110番画面(REXXXXX) */

/* -----------------------------------
    汎用クラス
   ----------------------------------- */
:root { 
  --blue: #002060;
  --blue-2: #a6c1ed;
  --red: #FF0000;
  --gray: #cccccc;
  --green: #0EA718;
  --lightBlue: #EAF2FF;
  --lightGreen: #F0FCF1;
  --lightPink: #FFF3F8;
  --lightYellow: #FFFDEE;
  --lightGray: #EBEBEB;
  --darkYellow: #d89d00;
  --color-accent: #E2005B;
  --line-height: 1.6;
  --line-height-s: 1.2;
  --transition: all 0.3s ease;
  --okagreen:#207200;
  --okanavgreen:#F5FFE7;
}

html {
    background-color: #FFFFFF;
    scroll-behavior: smooth;
}

.mt-0 { margin-top: 0px !important; }
.mt-5 { margin-top: 5px !important; }
.mt-10 { margin-top: 10px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-30 { margin-top: 30px !important; }
.mt-40 { margin-top: 40px !important; }
.mt-50 { margin-top: 50px !important; }
.mt-80 { margin-top: 80px !important; }
.mt-100 { margin-top: 100px !important; }
.mb-0 { margin-bottom: 5px !important; }
.mb-5 { margin-bottom: 5px !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-30 { margin-bottom: 20px !important; }
.mb-50 { margin-bottom: 50px !important; }
.mb-100 { margin-bottom: 100px !important; }
.ml-10 { margin-left: 10px !important; }
.ml-20 { margin-left: 20px !important; }
.mr-10 { margin-right: 10px !important; }
.mr-20 { margin-right: 20px !important; }
.ml-mr-5 { margin-left: 5px !important; margin-right: 5px !important; }
.ml-mr-10 { margin-left: 10px !important; margin-right: 10px !important; }
.ml-mr-20 { margin-left: 20px !important; margin-right: 20px !important; }
.ml-mr-50 { margin-left: 50px !important; margin-right: 50px !important; }
.margin-auto{ margin-left: auto !important; margin-right: auto !important;}
.pt-0 { padding-top: 0px !important; }
.pt-10 { padding-top: 10px !important; }
.pt-20 { padding-top: 20px !important; }
.pt-30 { padding-top: 30px !important; }
.pt-50 { padding-top: 50px !important; }
.pb-0 { padding-bottom: 0px !important; }
.pb-10 { padding-bottom: 10px !important; }
.pb-30 { padding-bottom: 30px !important; }
.pb-50 { padding-bottom: 50px !important; }
.pl-0 { padding-left: 0px !important; }
.pl-10 { padding-left: 10px !important; }
.pr-0 { padding-right: 0px !important; }
.pr-10 { padding-right: 10px !important; }
.plr-10 { padding-left: 10px !important;padding-right: 10px !important; }

.txt-small {font-size: 0.9em; display: inline-block !important; }
.txt-right {text-align: right !important;}
.txt-center {text-align: center !important;}
.txt-center__pc {text-align: center !important;}
.txt-left {text-align: left !important;}
.txt-nowrap {white-space: nowrap !important;}
.txt-bold{font-weight: bold !important}

.width1em { width: 1em !important; }
.width2em { width: 2em !important; }
.width3em { width: 3em !important; }
.width4em { width: 4em !important; }
.width5em { width: 5em !important; }
.width6em { width: 6em !important; }
.width7em { width: 7em !important; }
.width8em { width: 8em !important; }
.width10em { width: 10em !important; }
.width11em { width: 11em !important; }
.width12em { width: 12em !important; }
.width13em { width: 13em !important; }
.width15em { width: 15em !important; }
.width20em { width: 20em !important; }
.width25em { width: 25em !important; }
.width30em { width: 30em !important; }
.width40em { width: 40em !important; }
.width50em { width: 50em !important; }
.width90per { width: 90% !important; }
.width100per { width: 99% !important; }
.width-auto { width: auto!important; }

.flex,
.flex-c,
.flex-l{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}
.flex-c{justify-content: center}
.flex-l{justify-content: flex-start}
.flex-wide {flex: 0 0 100%}

.__blue{color: var(--blue) !important;}
.__green{color: var(--color-accent) !important;}
.__red{color: var(--red) !important;}
.__gray{color: var(--gra) !important;}
.__bg-blue{
    background-color: var(--blue) !important;
    color: #ffffff !important;
}
.__bg-red{
    background-color: var(--red) !important;
    color: #ffffff !important;
}
.__bg-gray{background-color: var(--gray) !important;}
.__bg-green{
    background-color: var(--green) !important;
    color: #ffffff !important;
}
.__bg-lightGreen{background-color: var(--lightGreen) !important;}
.__bg-pink{background-color: var(--lightPink) !important;}
.__bg-yellow{background-color: var(--lightYellow) !important;}
.__bg-darkYellw{
    background-color: var(--darkYellow) !important;
    color: #ffffff !important;
}
.__bg-ligtgray{background-color: var(--lightGray) !important;}

/* --- Clear Fix ------------- */
*, *::after, *::before {
    box-sizing: border-box;
}

.sp {display: none;}

@media screen and (max-width: 768px) {
    body p, body li, body table, dt, dd, input, label{ font-size: 16px; }    
    .sp {display: block;}
}

/* -----------------------------------
   フォーム
 * ----------------------------------- */
select, textarea, input[type="text"] {
    background-color: #fff;
    border: 1px solid var(--gray);
    outline: none;
    background-image: none;
    box-shadow: none;
    vertical-align: baseline !important;
    font-size: 14px;
}
input, select, label, textarea {
    vertical-align: baseline !important;
    font-size: 14px;
}

/* -----------------------------------
    ヘッダー・フッター
   ----------------------------------- */
#container-header {height: 50px;}
#global-navi,
#container-headerImage {
    display: none;
    visibility: hidden;
}
#header-inner {
    width: 100%;
}
h1 {margin: 0;}
h1 img {width: 200px !important;}
h1 a {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 22px;
    font-weight: bold;
    color: #fff !important;
}
.navbar-header .navbar-toggle {display: none;}
#bodyMiddle_SiteMapPnl {display: none;}

#page-top,
footer {
    display: none;
    visibility: hidden;
}

@media screen and (max-width: 990px) {
    h1 {width: 100%}    
    h1 a {
        height: 42px;
        width: 100%;
        font-size: 17px;
        line-height: var(--line-height-s)
    }
}

@media screen and (max-width: 768px) {
    #container-header {
        background-color: #F5FFE7;
        padding: 0 5px;
    }
}

@media screen and (max-width: 408px) {
    h1{padding-left: 5px}
}

/* -----------------------------------
    メインコンテンツ
   ----------------------------------- */
#main-container {
    width: 100%;
    padding: 0;
    min-height: auto;
}

#container-map {
    display: flex;
    justify-content: space-between;
    position: relative;
    overflow: hidden
}
#container-map #column-map{
    transition: var(--transition);
}

/*地図面*/        
#container-map #column-map {
    position: relative;
    width: 100%;
    height: calc(100dvh - 50px); /*ヘッダーを差し引く*/
    transition: var(--transition);
}

@media screen and (max-width: 768px) {
    #container-map {
        flex-wrap: wrap;
    }

    #container-map #column-map {
        max-width: 100%;
        width: 100%;
        order: 1
    }
}

#map {
    height: calc(100dvh - 40dvh - 55px);
    width: 100%;
}
@media screen and (max-width: 768px) {
    #map {height: calc(100dvh - 45dvh - 55px);}
}

/* -----------------------------------
   ボタン
 * ----------------------------------- */
.container-btn {
    margin: 15px auto 20px;
    text-align: center;
}
a.btn {
    padding: 2px 5px;
    display: inline-block;
    text-align: center;
    color: var(--blue);
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid var(--blue);
    background-color: var(--lightBlue);
    min-width: 60px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin: 5px;
    white-space: nowrap;
    font-size: 16px;
}
a.btn:visited {
    color: var(--blue);
}
a.btn:hover img {
    transition: all 0.3s linear;
}
a.btn:hover {
    background-color: var(--blue);
    color: #FFFFFF;
}

a.btn.__bg-red {
    border: 1px solid var(--red);
    background-color: var(--red);
    color: #FFFFFF;
}

@media screen and (max-width: 768px) {
    a.btn {
        min-height: 30px;
        line-height: 30px;
        width: 95%;
        font-size: 14px;
        box-sizing: border-box;
    }
    a.btn.btn-report {
        width: auto;
    }
}

/* -----------------------------------
   マップとマップ上のツール
 * ----------------------------------- */
/* ツールボタン */
.column-maptool{
    position: absolute;
    top: 10px;
    z-index: 2
}
.column-maptool li + li{padding-left: 5px}
#column-maptool_left{left: 35px;}
#column-maptool_right{right: 10px}

a:hover.btn-bgmap span img,
a:hover.btn-report span img {
    filter: invert(100%) sepia(0%) saturate(2%) hue-rotate(152deg) brightness(107%) contrast(101%);
}
a.btn-bgmap img {
    width: 21px;
    padding-right: 3px;
}
a.btn-report span {
    display: inline-block;
    width: 16px;
    margin-right: 3px;
    vertical-align: middle;
    line-height: 1;
}
@media screen and (max-width: 768px) {
    .column-maptool li + li{padding-left: 0}    
    #column-maptool_left{left: 10px;}  
    #column-maptool_right{justify-content: flex-end;}  
    #column-tsuhotool_right{justify-content: flex-end;}
}
/* -----------------------------------
   通報フォーム
 * ----------------------------------- */
dt {
    font-weight: normal;
}
.dt1 {
    font-size: 18px;
    font-weight: bold;
}
 .dt2{font-size: 18px;}

#column-110{
    position: absolute;
    bottom: 5px;
    width: 100%;
    height: calc(40dvh);
    background-color: #ffffff;
     z-index: 2; 
}
#column-110_ttl {
    background-color: var(--okagreen);
    padding: .4rem .7rem;
    align-items: center;
}
#column-110 h2{
    color: #ffffff;
    font-weight: bold;
    font-size: 18px;
    background-image: none;
    background-color: var(--okagreen);
    border-radius: 0;
    margin-bottom: 0;
}
#column-110 h2:after{
    content: "";
    bottom: 0;
}
    
#column-110_inner{
    margin-top: 10px;
    padding-bottom: 15px;
    padding-right: 20px;
    padding-left: 20px;
}
#column-110 .scroll-y {
    height: calc(40dvh - 60px);
    overflow-y: scroll;
    width: 100%;
    padding-bottom: 10px;
}

#inner-column-110.vertical-columns {
  display: flex;
  flex-direction: column; /* 縦方向に並べる */
  gap: 20px; /* カラム間の余白 */
  height: 100%; /* 必要に応じて調整 */
}

#inner-column-110.vertical-columns > dl {
  flex: 1; /* 均等に高さを分配 */
}

.container-open2 > div {
  flex: 1; /* 各カラムを均等に分ける */
}

#column-110 #inner-column-110{gap: 20px 40px }
#column-110 #container-open__left{width: 250px}
#column-110 #container-open__center{width: 250px;}
#column-110 #container-open__right{width: calc(100% - 250px - 250px - 80px);}
#column-110 dd{
    margin-top: 3px;
    margin-bottom: 8px;
}
.image-upload-area {
    display: flex;
    justify-content: flex-start;
    text-align: left;
    gap: 20px;
    align-items: flex-start;
}
.image-upload-col {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
#column-110 .required {
    background-color: var(--red);
    color: #ffffff;
    font-size: 85%;
    padding: 1px 5px;
    margin-left: 5px;
}
.light-blue-box {
    background-color: #e0f7fa;
    padding: 15px;
    border-radius: 8px;
}
.unified-input {
    background-color: #F0F0F0;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    padding: 5px;
    font-size: 1em;
}
/* 日時カレンダー */
.display-time-dt {
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.display-time-dt input {
    width: 190px;
    box-sizing: border-box;
    background-color: #F0F0F0;
    border: 1px solid #CCCCCC;
}
.display-time-dt span {
    position: absolute;
    right: 5px;
    top: 9px;
}
.ui-datepicker {font-size: 15px}
.ui-datepicker th {background-color: transparent}

#btnMapCenter.active {
    background-color: var(--blue);
    color: #FFFFFF;
}

.txtLocation {
    background-color: #f0f0f0;
}

#btnReportClickPoint {
    background-color: var(--lightBlue) !important;
    color: var(--blue) !important;
}
#btnReportClickPoint.active {
    background-color: var(--color-accent) !important;
    color: #fff !important;
}

@media screen and (min-width: 1000px) {
    #column-110 #inner-column-110 {
        display: flex;
        gap: 20px; /* カラム間のスペース */
    }
    #column-110 #container-open__left,
    #column-110 #container-open__center,
    #column-110 #container-open__right {
        flex: 1; /* 各カラムを均等に分配 */
    }
}

@media screen and (max-width: 1000px) {
    #column-110 #inner-column-110{gap: 20px 20px }
    #column-110 #container-open__left{width: 200px}
    #column-110 #container-open__center{width: 250px;}
    #column-110 #container-open__right{width: calc(100% - 200px - 250px - 40px);}
}
@media screen and (max-width: 900px) {
    #column-110 #inner-column-110{gap: 40px 40px }
    #column-110 #container-open__left{width: 45%}
    #column-110 #container-open__center{width: 45%;}
    #column-110 #container-open__right{
        width: 100%;
        flex: 0 0 100%
    }    
}
@media screen and (max-width: 768px) {
    #column-110{height: calc(45dvh);}
    #column-110 .scroll-y {height: calc(45dvh - 60px);}
    #column-110 #inner-column-110{gap: 0px }
    #column-110 #container-open__left,
    #column-110 #container-open__center{width: 100%;}
    #column-110 dl + dl,
    #column-110 dd + dt{margin-top: 10px}
    #column-110_ttl h2 {
        font-size: 16px;
        line-height: 1.2;
        height: 35px;
    }
    .image-upload-area {
        flex-direction: column;
        gap: 12px;
    }
    .image-upload-col {
        width: 100%;
    }
    .image-upload-col img {
        max-width: 100%;
    }
}

/* -----------------------------------
   受付完了
 * ----------------------------------- */
#wrapper-kanryo {
    max-width: 600px;
    width: 90%;
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 5px solid var(--lightGray);
}
@media screen and (max-width: 768px) {
    #wrapper-kanryo {padding: 20px;}    
}

h1.tkfoam {
    font-size: 17px;
    font-weight: bold;
    background-color: var(--okagreen);
    color: #FFFFFF;
    padding: 3px 8px;
    margin-bottom: 15px;
    width: 100%;
}

#column-kmain {
    text-align: left;
}

/* -----------------------------------------
   テーブルデザイン
 * ----------------------------------------- */
.tbl-td_l,
.tbl-td_c,
.tbl-th_l{
    margin: 10px 0;
    width: 100%;
}
.tbl-td_l th,
.tbl-td_c th,
.tbl-th_l th{
    padding: 4px 5px;
    border: 1px solid var(--lightGray);
    font-size: 100%;
    font-weight: normal;
    line-height: var(--line-height-s);
    text-align: center;
    background-color: var(--lightBlue);
}
.tbl-td_l td,
.tbl-td_c td,
.tbl-th_l td{
    padding: 4px 5px;
    border: 1px solid var(--lightGray);
    font-size: 100%;
    line-height: var(--line-height-s);
    text-align: left;
    vertical-align: middle;
}
.tbl-td_c td {text-align: center;}
.tbl-th_l th{text-align: left}

/* -----------------------------------
   オーバーレイ
 * ----------------------------------- */
#cboxOverlay {
    background: none;
    background-color: #000000
}
#cboxContent {
    background: #FFF;
}
#cboxLoadedContent {
    background: #FFF;
}
.container-overlay {
    padding: 25px;
    text-align: center;
}

#cboxClose {
    position: absolute;
    font-size: 0px;
    padding: 0px 8px 10px;
    color: #FFFFFF;
    display: block;
    /*background: none;*/
    /*background-color: #999999;*/
    border-radius: 6px 6px 0px 0px;
    height: 25px;
    right: 10px;
    bottom: 0px;
    top: auto;
    text-align: center;
    z-index: 100;
}
#cboxClose:after {
    content: "×";
    font-size: 20px;
}


/*見出し*/
.container-overlay h2 {
    font-size: 17px;
    font-weight: bold;
    background-color: var(--okagreen);
    color: #FFFFFF;
    padding: 3px 8px;
    margin-bottom: 10px;
}

/* 背景地図 */
#container-bgmap{
    width: 800px;
    gap:20px 10px 
}
.basemap-block {
    width: calc(100% / 4 - 10px);
    border: 1px solid var(--okagreen);
    text-align: center;
    border-radius: 6px;
    font-size: 14px;
}
.basemap-block img{
    border-radius: 6px 6px 0px 0px;
}
.basemap-block label{
    width: 100%;
    display: block;
}
.basemap-block img{width: 100%}
.basemap-block input {display: none;}
.basemap-block input[type=radio]:checked + label{
    background-color: var(--okagreen);
    color: #fff;
    display: block;
    margin-bottom: 0;
    height: 165px;
}
@media screen and (max-width: 1000px) {
#container-bgmap{width: 100%;}
}

/* GoogleMap表示中にScaleLineの位置を調整 */
.ol-viewport.has-google-map .ol-scale-line {
    bottom: 30px; /* デフォルトの8pxから30pxに変更（Googleロゴの上に配置） */
}

/* Google reCAPTCHA */
.grecaptcha-badge {
    z-index: 2;
    bottom: 30px!important;
}