:root {
    --main-color: rgba(101, 153, 19, 1);/*メインカラー*//*緑*/
    --main-color-50: rgba(101, 153, 19, 0.5);/*メインカラー透明度50*//*緑*/
    overflow-x: hidden;   
}

.box{
  width: 94%; 
  margin: 5% auto;
  height: auto;
  padding: 0 0 30px 0;
  color: var(--black-color);
}

/*通報ページ*/
.contactBox{
    color: var(--black-color);
}





/* 掲示板説明 */
.bbs_about{
    margin: 30px auto;
    color: var(--black-color);
    width: 100%;
    max-width: 600px;
    height: auto;
    font-size: 14px;
}
/* 掲示板説明内の通報画像 */
.action_icon_text {
    position: relative;
    width: 16px;
  }
.action_icon {
    position: absolute;
    width: 20px;
    right: 10px;
    top: 10px;
}
/*.action_icon_box {
    width: 100%;
    top: -70px;
    position: relative;
    text-align: center;
    pointer-events: none;
}*/
/*.action_icon {
    position: relative;
    padding: 0.6em 0.8em;
    margin: 0 auto;
    color: var(--black-color);
    background-color: var(--gray-color-light);
    width: 20px;
}*/

/*更新ボタンと検索ボタンの位置調整*/
.sort_search_box {
    margin: 0 auto;/*上,右,下,左*/
    color: var(--black-color);
    width: 100%;
    height: 30px;
    font-size: 16px;
    display: contents;
}

/*更新ボタン*/
.sort_search_button{
    font-family: 'R-Font';
    padding: 10px 15px;
    color: rgb(255,255,255,1);
    background-color: var(--main-color);
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    line-height: 1;
    border-radius: 3px;
}

/*並び替え、検索の文字*/
.sort_search_text{
    text-align: left;
}

.search_text{
    padding-left: 5px;

    outline: 0;
    width: 63%;
    height: 27px;

  	border: 3px solid var(--main-color);
  	border-radius: 2px;
    font-family: 'R-Font';
    font-size: 16px;

    color: var(--black-color);
}

/* 検索囲い */
@media screen and (min-width:551px) {/*大きい*/
    .bbs_search {
     text-align: center;
     margin: 0 auto;/*上,右,下,左*/
     width: 63%;
     color: var(--black-color);
     display: flex;
    }
    .bbs_search_s {
     width: 52%;
     color: var(--black-color);
    }
    .box{
        width: 75%; 
        margin: 5% auto;
        height: auto;
        padding: 0 0 30px 0;
        color: var(--black-color);
      }

  }
  @media screen and (max-width:550px) {/*小さい*/
    .bbs_search {
     margin: 0 auto;/*上,右,下,左*/
     width: 100%;
     color: var(--black-color);
    }
    .bbs_search_s {
     width: 100%;
     color: var(--black-color);
    }
    .box{
        width: 75%; 
        margin: 5% auto;
        height: auto;
        padding: 0 0 30px 0;
        color: var(--black-color);
      }
  }


/* スレ一覧 */
.bbs{
    position: relative;
    /* margin: 0 auto;上,右,下,左 */
    color: var(--black-color);
    /*background-color: var(--gray-color-light);*/
    /* width: 60%;850px; */
    height: 80px;/*70px;*/
    transition: all .3s;
    border-bottom: solid 4px rgba(101, 153, 19, 1);
}

.bbs:hover{
    background-color: rgb(218, 218, 218)
}

.bbs h1 {
    font-size: 23px;
    white-space: nowrap;/*文字を折り返さない*/
    text-align: left;
   }
.bbs h2 {
    font-size: 12px;
    line-height:0.0em;
    white-space: nowrap;
    text-align: right;
   }

/*.bbs:hover{
    background-color: #52de4f38;
}/**/

.bbs a{
    display: block;
    margin: 4% 2%auto;
    text-decoration: none;
    text-align: left;
    color: black;
    font-size: 1em;
}
.bbs p {
    font-size: 1em;
    text-align: right;
    position: relative;
}

/* 新規スレ */
.new_thread_box{
    height: auto;
    width: 100%;
}
.new_thread{
    padding: 2% 3% 40px 3%;
    margin: 30px auto 110px auto;
    color: var(--black-color);
    background-color: var(--gray-color);
    width: 90%;
    max-width: 500px;
    height: auto;
    border-radius: 3px;
}
.new_thread_submit{
    color: var(--black-color);
    width: 100%;
    height: 30px;
    font-size: 16px;
    text-align: center;
}
.new_thread_text{
    margin:0px 0px 0px 10px;/*上,右,下,左*/
    color: var(--black-color);
    width: 63%;
    height: 30px;
    font-size: 16px;
}
.new_thread_alert{
    color: var(--black-color);
    height: 30px;
    font-size: 12px;
}

.form_item input{
    margin: 2% auto;
    outline: 0;
    width: 100%;
    height: 30px;

    border: none;
    font-family: 'R-Font', 'G-Font';
    font-size: 16px;
    border-radius: 3px;

    color: var(--black-color);
}
::placeholder{
    color: var(--gray-color-light);
    font-size: 16px;
}
input:disabled {
    background-color: var(--black-color);
}
input:disabled::placeholder{
    color: var(--black-color);
    font-size: 16px;
}

#submit_button_thre{
    font-family: 'R-Font';
    margin-top: 11px;
    padding: 10px 6%;
    color: var(--black-color);
    background-color: var(--gray-color-light);;
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    line-height: 1;
    border-radius: 3px;
    transition: all .3s;
}

#submit_button_thre:hover{
    background-color: white;
}

textarea {
    resize: none;
    width: 90%;
    height: 75%;
}

/* insert by unno 20190124 */

#alert{
    color: rgb(187, 0, 0)
}
.search_alert_box{
    color: var(--black-color);
    margin-left: 5%;
}

/*セレクトボックスのCSS*/
.cp-ipselect {
    overflow: hidden;
    width: 66.85%;
    height: 35px;
    text-align: center;

    color: var(--black-color);
    font-family: 'R-Font';
    font-size: 16px;
}
.cp-ipselect select {
    width: 100%;
    padding-right: 1em;
    cursor: pointer;
    text-indent: 0.01px;
    text-overflow: ellipsis;
    border: none;
    outline: none;
    background: transparent;
    background-image: none;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
}
.cp-ipselect select::-ms-expand {
    display: none;
}
.cp-ipselect.cp-sl01 {
    position: relative;
    border: 3px solid var(--main-color);
    border-radius: 2px;
    background: #ffffff;
  outline: none;
}
.cp-ipselect.cp-sl01::before {
    position: absolute;
    top: 0.8em;
    right: 0.9em;
    width: 0;
    height: 0;
    padding: 0;
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #666666;
    pointer-events: none;
}
.cp-ipselect.cp-sl01 select {
    padding: 8px 38px 8px 8px;
    color: #666666;
}


.fadeout_top {/*上部のフェードアウト*/
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: 80px;
    background: rgba(255, 255, 255, 1);
    filter: blur(10px);
    text-align:center;
    z-index: var(--fadeout-index);
   }
.fadeout_bottom {/*下部のフェードアウト*/
    position: fixed;
    bottom: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: 130px;
    background: rgba(255, 255, 255, 1);
    filter: blur(10px);
    text-align:center;
    z-index: var(--fadeout-index);
   }
 
.fadeout_heading {/*見出しのフェードアウト*/
    position: fixed;
    bottom: 0;
    right: 0;
    margin: 0;
    width: 22.8%;
    height: 100%;
    background: rgba(255, 255, 255, 1);
    /*filter: blur(0.5px);/**/
    text-align:center;
    z-index: var(--fadeout-index);
 
    /*background-color: rgba(150, 150, 150, 0.5);/**/
   }


.title_fadeout{
    overflow: hidden;
    text-overflow: ellipsis;
}

#bbs_list {
    max-width: 600px;
    margin: 0 auto;
}
#bbs_list li {
    position: relative;
}

/*通報ページ*/
.report_img {
    width: 40%;
}
#sendButton{
    font-family: 'R-Font';
    margin-top: -5px;
    padding: 10px 6%;
    color: var(--black-color);
    background-color: var(--gray-color-light);
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    line-height: 1;
    border-radius: 3px;
}
.return_bbs{
    font-family: 'R-Font';
    margin-top: 10px;
    padding: 10px 6%;
    color: var(--black-color);
    background-color: var(--gray-color-light);
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    line-height: 1;
    border-radius: 3px;
}
.report_textarea {
    padding-left: 5px;

    outline: 0;
    width: 60%;
    height: 70px;

    border: none;
    font-family: 'R-Font', 'G-Font';
    font-size: 16px;
    border-radius: 3px;

    color: var(--black-color);
    background-color: var(--gray-color-light);

    resize: none;
}
.view_detail{
    text-align: center;
    margin-top: 200px;
}
.response{
    padding: 0.9em 0.8em 0.3em 0.8em;
    margin: 10px 0;
    color: var(--black-color);
    background-color: var(--gray-color-light);
    width: 60%;
}