/* --- GoogleフォントからWebフォントをインポート --- */
@import url(https://fonts.googleapis.com/css?family=Lato:400,700);

body {
    font-family: Lato;
    width: 100%; /* ページの幅 */
    color: #000000; /* 全体の文字色 */
    font-size: 100%; /* 全体の文字サイズ */
    overflow-x: hidden;
    margin: 0px;
    padding: 0px !important;
    box-sizing: border-box;
    border: none;
    width: 100%;
    max-width: 100%;
}

small {
     font-size: 80%; 
     font-weight: 400;
}

.section {
    background-color:rgba(255,255,255,0.9);
    padding: 0.25em;
}

a{
    text-decoration: none;
}

img{
    max-width: 100%;
}

.trozo_logo{
    width: 150px;
}

.fixed-header{
    background-color: black;
    color: white;
    position: fixed;
    top: 0;
    width: 100%;
    height: 50px;
    margin: 0;

}
.fixed-footer{
    background-color: black;
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 75px;
    margin: 0;
}


.my-ol{
  counter-reset:list;
  list-style-type:none;
  font: 14px/1.6 'arial narrow', sans-serif;
  padding: 0px;
  border-bottom: black;
}
  
.my-ol li{
  position:relative;
  line-height: 30px;
  margin: 7px 0 7px 40px;
  padding: 0.5em;
  font-size:1em;
}
  
.my-ol li:before{
    border-radius: 1em;
    counter-increment: list;
    content: counter(list);
    position: absolute;
    left: -35px;
    width: 30px;
    height: 30px;
    background: #222222;
    text-align: center;
    color: #fff;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.my-ul{
    list-style-type:none;
    display: block;
    -webkit-margin-before: 0px;
    -webkit-margin-after: 0px;
    -webkit-margin-start: 0.1em;
    -webkit-margin-end: 0px;
    -webkit-padding-start: 0px;
    margin: 0.25em;
}
.my-ul li {
    position:relative;
    padding: 0.2em 0.3em 0.3em 1.25em;
    margin: 0.75em 0em;
}
.my-ul li:before {
    position:absolute;
    content:'';
    top: 0.55em;
    left: 0.2em;
    height:0;
    width:0;
    border-style: solid;
    border-width: 6px 0 6px 9px;
    border-color: transparent transparent transparent #201e7d;
}

.index_input{
    color:#3c3c3c;
    font-family: Helvetica, Arial, sans-serif;
    border-radius: 0;
    background-color: #fbfbfb;
    padding: 1em;
    margin-bottom: 0.5em;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    border: 0.1px solid black;    
}
.index_input:focus{
    background: #fff;
    box-shadow: 0;
    color: #3498db;
    outline: none;
    border: 3px solid #3498db;
}

#width {
    width: auto;
}

#height {
    width: auto;
}

#magnification{
    width: auto;
}

.box {
    border-bottom: 1px solid #C4C9CD;
    margin-bottom: 2.5em;
    box-shadow: 0px 0.25em 0.25em 0em grey;
    max-width: 100%;
}

.box_heading {
    font-weight: bold;
    font-size: 1.3em;
    padding: 0.5em;
    margin: 0em;
    background: #222222;
    color: white;
    border-top: 1px solid #C4C9CD;
    position: relative;/*相対位置*/
    /*padding: 0.5em 0.5em 0.5em 1.9em;アイコン分のスペース*/
}
.box_heading a{
    color: white;
}

.box_body {
    padding: 0.5em;
    background-color: white;
}


.box2{
    color: #5d627b;
    background: white;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
    border: solid grey;
}

/* --- タブボタン ---*/
.tab_btn {
    position: relative;
    display: inline-block;
    font-size: 20px;
    font-weight: bold;
    padding: 0.25em 0.5em;
    text-decoration: none;
    color: #FFF;
    background: #008080;
    transition: .4s;
}

.tab_btn:hover {
    background: #1ec7bb;
}


/* --- ヘルプ画面 ---*/
.Help_Btn {
}

#help_btn_overall {
    position: relative;
    margin: 2em 0;
    padding: 0.5em 1em;
    border: solid 3px #d3d3d3;
}
#help_btn_overall .box-title {
    position: absolute;
    display: inline-block;
    top: -27px;
    left: -3px;
    padding: 0 9px 0 9px;
    height: 25px;
    line-height: 25px;
    vertical-align: middle;
    font-size: 1.3em;
    background: #d3d3d3;
    color: black;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}
#help_btn_overall p {
    margin: 0; 
    padding: 0;
}

#help_btn_c_wiki {
    position: relative;
    margin: 2em 0;
    padding: 0.5em 1em;
    border: solid 3px #ffff00;
}
#help_btn_c_wiki .box-title {
    position: absolute;
    display: inline-block;
    top: -27px;
    left: -3px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    vertical-align: middle;
    font-size: 1.3em;
    background: #ffff00;
    color: black;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}
#help_btn_c_wiki p {
    margin: 0; 
    padding: 0;
}


#help_btn_blog {
    position: relative;
    margin: 2em 0;
    padding: 0.5em 1em;
    border: solid 3px #7cfc00;
}
#help_btn_blog .box-title {
    position: absolute;
    display: inline-block;
    top: -27px;
    left: -3px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    vertical-align: middle;
    font-size: 1.3em;
    background: #7cfc00;
    color: black;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}
#help_btn_blog p {
    margin: 0; 
    padding: 0;
}


#help_btn_bbs {
    position: relative;
    margin: 2em 0;
    padding: 0.5em 1em;
    border: solid 3px #00bfff;
}
#help_btn_bbs .box-title {
    position: absolute;
    display: inline-block;
    top: -27px;
    left: -3px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    vertical-align: middle;
    font-size: 1.3em;
    background: #00bfff;
    color: black;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}
#help_btn_bbs p {
    margin: 0; 
    padding: 0;
}


#help_btn_album {
    position: relative;
    margin: 2em 0;
    padding: 0.5em 1em;
    border: solid 3px #ff7f00;
}
#help_btn_album .box-title {
    position: absolute;
    display: inline-block;
    top: -27px;
    left: -3px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    vertical-align: middle;
    font-size: 1.3em;
    background: #ff7f00;
    color: black;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}
#help_btn_album p {
    margin: 0; 
    padding: 0;
}




.Help_Headline {
    position: relative;
    padding: 5px 5px 5px 42px;
    background: #191970;
    color: white;
    font-size: 30px;
    margin-left: -10px;
    line-height: 1.3;
    z-index:2;
}

.Help_Headline:before {
    position: absolute;
    content: '';
    left: -2px;
    top: -2px;
    border: none;
    border-left: solid 40px white;
    border-bottom: solid 79px transparent;
    z-index:1;
}

#help h3 {
    padding: 0.25em;
    line-height: 1.2em;
    color: #000000;/*文字色*/
    background: #E6E7E9;
}

.Help_Panel{
    list-style:none;
}

#this_site_type{
    font-weight: bold;
    font-size: 1.2em;
    color: red;
}

/* --- ニュース情報画面 ---*/
.news_head {
    position: relative;/*相対位置*/
    padding: 0.5em 0.5em 0.5em 1.5em;/*アイコン分のスペース*/
    line-height: 1.4;/*行高*/
    color: #000000;/*文字色*/
    background: #E6E7E9;
    font-size: 1.25em;
}

.news_head:before{ 
    font-family: FontAwesome;
    content: "\f1ea";/*アイコンのユニコード*/
    position: absolute;/*絶対位置*/
    font-size: 1em;/*サイズ*/
    left: 0.25em;/*アイコンの位置*/
    top: 0.5em;/*アイコンの位置*/
    color: #222222; /*アイコン色*/
}

/* --- ユーザー情報画面 ---*/
#user_info h3 {
    position: relative;/*相対位置*/
    padding: 0.5em 0.5em 0.5em 1.5em;/*アイコン分のスペース*/
    line-height: 1.4;/*行高*/
    color: #000000;/*文字色*/
    background: #E6E7E9;
}

#user_info h3:before{ 
    font-family: FontAwesome;
    content: "\f0a4";/*アイコンのユニコード*/
    position: absolute;/*絶対位置*/
    font-size: 1em;/*サイズ*/
    left: 0.25em;/*アイコンの位置*/
    top: 0.5em;/*アイコンの位置*/
    color: #222222; /*アイコン色*/
}

#index_main {
    width: 100%;
    max-width: 100%;
}

#index_description{
    background-color: #ededed;
    margin-bottom: 3em;
    box-shadow: 0px 0.25em 0.25em 0em grey;
}

/*@-webkit-keyframes bg-color {
  0% { background-color: #e74c3c; }
  20% { background-color: #f1c40f; }
  40% { background-color: #1abc9c; }
  60% { background-color: #3498db; }
  80% { background-color: #9b59b6; }
  100% { background-color: #e74c3c; }
}

@keyframes bg-color{
  0% { background-color: #e74c3c; }
  20% { background-color: #f1c40f; }
  40% { background-color: #1abc9c; }
  60% { background-color: #3498db; }
  80% { background-color: #9b59b6; }
  100% { background-color: #e74c3c; }
}*/







#header {
    background-color: #222222;
}

#header_title{
    background: #222222;
    font-size: 1.25em;
    -webkit-margin-before: 0em;
    -webkit-margin-after: 0em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
    font-weight: bold;
    padding: 1em;
}
#header_title a{
    color: white;
}

#header_title_small{
    background: #222222;
    font-size: 1.1em;
    -webkit-margin-before: 0em;
    -webkit-margin-after: 0em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
    font-weight: bold;
    padding: 0.5em;
}
#header_title_small a{
    color: white;
}

#header_search{
    color: white;
    background: #222222;
    padding-top: 0.5em;
    -webkit-margin-before: 0em;
    -webkit-margin-after: 0em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
}
#header_search_value {
    font-size: 1.25em;
    width: 75%;
    max-width: 30em;
    text-align: center;
    border:0;
    color:#aaa;
    border:solid 1px #ccc;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 1em;
    -moz-box-shadow: inset 0 0 4px rgba(0,0,0,0.2);
    -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
    box-shadow: inner 0 0 4px rgba(0, 0, 0, 0.2);
}

#footer_menu a {
    height: auto;
    width: 25%;
    color: white;
    padding: 0.25em;
}
#footer_menu p {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

#header_img {
    text-align: center;
}

#header_img img {
    border-radius: 1em;
}

#header_img_small{
    padding: 0em 0.75em;
    width: 10em;
}
#header_img_small img{
    margin-right: 0.5em;
    border-radius: 1em;
    width: 100%;
}

#header_user_name p{
    font-size: 1.1em;
    font-weight:bold;
    text-decoration: none;
    color: white;
    -webkit-margin-before: 0em;
    -webkit-margin-after: 0em;
    -webkit-margin-start: 0.5em;
    -webkit-margin-end: 0px;    
}


#integrate_logo{
    display:inline;
    margin-right: 10px;
}

/* --- ヘッダータイトル (aリンク)--- */
h1 a{
    color: #FFFFFF;
    font-weight:bold;
    text-decoration: none;
}

h1 a:hover {
    text-decoration: none;
}

/* -- ヘッダーのサイト名 -- */
#header_index {
}

/* -- メイン -- */
#main {
    word-break : break-all;
}

/* --- フッタ --- */
#footer {
    color: white;
    background-color: #222222;
    width: 100%;
    display: inline-block;
    padding-bottom: 25px;
}

/* --- フッタ(各部紹介リンク)--- */
#footer a{
    color: white;
    text-decoration: none;

}

.footer_btn{
    margin: 1em;
}

/* --- フッタ(サイト情報)--- */
#site_inform{
    text-align: center;
}

/* --- 完了メッセージ ---*/
#complete_message{
    font-size: 17px;   
}

/* --- コメント入力欄 ---*/
#article_comment{
}

.comment-form {
    width: 95%;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    line-height: 1.25;
    color: #464a4c;
    background-color: #fff;
    background-image: none;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
    -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
    -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
}

#search_value {
    width: 75%;
    text-align: center;
    border:0;
    padding-top: 0.25em;
    padding-bottom: 0.25em;
/*    font-size:1em;
    font-family:Arial, sans-serif;*/
    color:#aaa;
    border:solid 1px #ccc;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -moz-box-shadow: inset 0 0 4px rgba(0,0,0,0.2);
    -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
    box-shadow: inner 0 0 4px rgba(0, 0, 0, 0.2);
}

#search_value_index {
    text-align: center;
    border:0;
    padding: 0.5em 1em;
/*    font-size:1em;
    font-family:Arial, sans-serif;*/
    color:#aaa;
    border:solid 1px #ccc;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -moz-box-shadow: inset 0 0 4px rgba(0,0,0,0.2);
    -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
    box-shadow: inner 0 0 4px rgba(0, 0, 0, 0.2);
    width: auto !important;
}

.searchBtn {
    height: 1.75em;
    vertical-align: middle;
}

/* --- メニュー見出し ---*/
.menu_heading{
    font-size: 1.25em;
    color: black;/*文字色*/
    background: #CCCCCC;/*背景色*/
    padding: 0.2em 0em 0.2em 0.5em;
    margin: 0em 0em 0.5em 0em;
    display: inline-block;/*おまじない*/
    line-height: 1.3;/*行高*/
    vertical-align: middle;/*上下中央*/
    border-radius: 25px 25px 25px 25px;/*左側の角を丸く*/
    width: 95%;
}
.menu_heading:before {
  content: '●';
  color: white;
  margin-right: 8px;
}


/* --- カスタムui ---*/
#custom_ul li{
    list-style: none;
}

/* --- 記事編集フォーム ---*/
#edit_form{
    max-width: 100%;
    background: white;
    padding: 1em 0.25em;
    box-shadow: 0px 0.25em 0.25em 0em grey;
}


/* --- 記事見出し ---*/
#heading{
    padding: 0.25em 0.5em;/*文字の上下 左右の余白*/
    margin: 0em;
    background-color: #222222;
    color: white;
    border-top: solid 1px white;
}

/* --- 表示順前後移動ボタン ---*/
.display_order_transition_btn{
    color: white;
}

/*---　青いメッセージ---*/
#blue_message{
    color: blue;
}

.blue_message{
    color: blue;
}

#parent_article{
    font-weight:bold;
    color: red;
}

#red_message{
    font-size: 80%;
    color: red;
}

.red_message{
    font-size: 100%;
    color: red;
}

.red_font{
    color: red;
}

#message{
    font-weight: bold;
}

.message{
    font-weight: bold;
    font-size: 1.2em;
    color: red;
}

.bold{
    font-weight: bold;

}

.horizontal {
    display: inline-block !important;
}

.top {
    vertical-align: top;
}

#top .icon{
    position: relative;
    top: 0.175em;
}

.left{
    text-align: left;
}

.center{
    text-align: center;
}

.right{
    text-align: right;
}

.f_right{
    float: right;
}

.backGroundColor{
    background-color: #e4f5ff;
}

/* -- トップ(ヘッダーの更に上) -- */
#top {
    background-color: black;
    text-align: center;
    border-bottom: 0.5px solid lightgray;
    width: 100%;
    height: 50px;
    z-index: 99;
}

#top a {
    color: white;/*文字色*/
    cursor: pointer;
    width: 25%;
}
.header_user_img{
    height: 1.5em;
    border-radius: 1em;
    margin: 0em 0.5em;
}

.profile_image{
    border-radius: 1em;
}

.middle{
    vertical-align: middle;
}

/* ---　メニューバー ---*/
#menu_bar {
}


.btn{
    background-color: gainsboro;
    display: inline-block;
    font-weight: normal;
    line-height: 1.25;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.btn:active {
    -ms-transform: translateY(2px);
    -webkit-transform: translateY(2px);
    transform: translateY(2px);/*下に動く*/
    border-bottom: none;/*線を消す*/
}

.btn-primary {
  color: #fff;
  background-color: #0275d8;
  border-color: #0275d8;
}

.btn-primary:hover {
  color: #fff;
  background-color: #025aa5;
  border-color: #01549b;
}

.btn-primary:focus, .btn-primary.focus {
  -webkit-box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.5);
          box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.5);
}

.btn-primary.disabled, .btn-primary:disabled {
  background-color: #0275d8;
  border-color: #0275d8;
}

.btn-primary:active, .btn-primary.active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #025aa5;
  background-image: none;
  border-color: #01549b;
}

.btn-secondary {
  color: #292b2c;
  background-color: #fff;
  border-color: #ccc;
}

.btn-secondary:hover {
  color: #292b2c;
  background-color: #e6e6e6;
  border-color: #adadad;
}

.btn-secondary:focus, .btn-secondary.focus {
  -webkit-box-shadow: 0 0 0 2px rgba(204, 204, 204, 0.5);
          box-shadow: 0 0 0 2px rgba(204, 204, 204, 0.5);
}

.btn-secondary.disabled, .btn-secondary:disabled {
  background-color: #fff;
  border-color: #ccc;
}

.btn-secondary:active, .btn-secondary.active,
.show > .btn-secondary.dropdown-toggle {
  color: #292b2c;
  background-color: #e6e6e6;
  background-image: none;
  border-color: #adadad;
}

.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #5bc0de;
}

.btn-info:hover {
  color: #fff;
  background-color: #31b0d5;
  border-color: #2aabd2;
}

.btn-info:focus, .btn-info.focus {
  -webkit-box-shadow: 0 0 0 2px rgba(91, 192, 222, 0.5);
          box-shadow: 0 0 0 2px rgba(91, 192, 222, 0.5);
}

.btn-info.disabled, .btn-info:disabled {
  background-color: #5bc0de;
  border-color: #5bc0de;
}

.btn-info:active, .btn-info.active,
.show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #31b0d5;
  background-image: none;
  border-color: #2aabd2;
}

.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #5cb85c;
}

.btn-success:hover {
  color: #fff;
  background-color: #449d44;
  border-color: #419641;
}

.btn-success:focus, .btn-success.focus {
  -webkit-box-shadow: 0 0 0 2px rgba(92, 184, 92, 0.5);
          box-shadow: 0 0 0 2px rgba(92, 184, 92, 0.5);
}

.btn-success.disabled, .btn-success:disabled {
  background-color: #5cb85c;
  border-color: #5cb85c;
}

.btn-success:active, .btn-success.active,
.show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #449d44;
  background-image: none;
  border-color: #419641;
}

.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}

.btn-warning:hover {
  color: #fff;
  background-color: #ec971f;
  border-color: #eb9316;
}

.btn-warning:focus, .btn-warning.focus {
  -webkit-box-shadow: 0 0 0 2px rgba(240, 173, 78, 0.5);
          box-shadow: 0 0 0 2px rgba(240, 173, 78, 0.5);
}

.btn-warning.disabled, .btn-warning:disabled {
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}

.btn-warning:active, .btn-warning.active,
.show > .btn-warning.dropdown-toggle {
  color: #fff;
  background-color: #ec971f;
  background-image: none;
  border-color: #eb9316;
}

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d9534f;
}

.btn-danger:hover {
  color: #fff;
  background-color: #c9302c;
  border-color: #c12e2a;
}

.btn-danger:focus, .btn-danger.focus {
  -webkit-box-shadow: 0 0 0 2px rgba(217, 83, 79, 0.5);
          box-shadow: 0 0 0 2px rgba(217, 83, 79, 0.5);
}

.btn-danger.disabled, .btn-danger:disabled {
  background-color: #d9534f;
  border-color: #d9534f;
}

.btn-danger:active, .btn-danger.active,
.show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #c9302c;
  background-image: none;
  border-color: #c12e2a;
}

/* --- パンくず--- */
#breadcrumb_list{
    margin-bottom: 1em;
}

.breadcrumb {
    color: #FFFFFF;
    position: relative;
    background: #000080;
    padding: 0.5em 0.5em;
    text-decoration: none;
    transition: .4s;
    margin-right: 1.5em;
}
.breadcrumb:after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    border-style: solid;
    border-color: transparent;
    border-left-color: #000080;
    border-width: 1.1em 1em;
    width: 0;
    height: 0;
}

.breadcrumb:hover {
    color: #000000;
    background: #00ffff;
}

.breadcrumb_this_article {
    color: #FFFFFF;
    background: #801500;
    padding: 0.5em 0.5em;
    text-decoration: none;
    transition: .4s;
    margin-right: 1.5em;
}
.breadcrumb_this_article:hover {
    color: #000000;
    background: #ff0000;
}


/* --- 記事タイトルと内容--- */
#article_title_and_content {
    width: 100%;
    max-width: 100%;
}

/* --- 記事情報の枠---*/
.article_info_area {
    border:2px dashed #6C6C6C;
    border-radius: 20px;
    background-color: white;
    padding: 0.5em;
    margin: 0.5em;
}


/* --- 記事情報 ---*/
.article_info {
    border-bottom: dashed 2px #CFD3D5;
}

/* --- 記事情報のフォント ---*/
.article_info_font{
    color: #3E207F;
}

/* --- 過去バージョン情報 ---*/
.old_ver_info{
    border:2px dotted #6C6C6C;
    border-radius: 10px;
    background-color: white;
    padding: 0.5em;
}

/* --- 記事（左側） 過去バージョンのフォント --- */
#old_ver {
    font-weight: bold;
}

/* --- 記事（左側） 過去バージョンのﾘﾝｸ --- */
#old_ver a{
    font-weight: normal;
    font-size: 110%; /* フォンﾄサイズ */;
    margin-top: 0px;
    font-weight: bold;
}

/* --- 記事タイトル --- */
#article_title{
    padding: 0.5em 0.5em;/*文字の上下 左右の余白*/
    background: #222222;/*背景色*/
    display: block;
    -webkit-margin-before: 0em;
    -webkit-margin-after: 0em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
    font-weight: bold;
    color: #fffafa;/*文字色*/
    font-size: 1.75em;
}
#article_title a{
    vertical-align: middle;
    text-decoration: none;
    transition: .4s;
    padding: 0.25em;
    border-radius: 1em;
    color: white;
}
#article_title a:hover{
    color: #222222;/*文字色*/
    background: #fffafa;/*文字色*/
    font-weight:bold;
}

/* --- 掲示板タイトル --- */
#board_title_fieldset{
    padding: 0.3em 0.5em;/*文字の上下 左右の余白*/
    margin: 0;
    color: #222222;/*文字色*/
    background: #dcdcdc;/*背景色*/
    border: solid grey;
    font-weight:bold;
    font-size: 23px;
}

#article_content {
    background: #f5f5f5;
    border: solid 0.01em black;
    padding: 1em 0.75em;
}

/*　--- 記事内（画像） 　---*/
#article_content img{
    max-width: 100%;
    height: auto;
}


#article_content td{
    padding: 0.5em;
}

/* --- 記事の内容のタイトル見出し --- */
#article_content legend{
    color: #3E207F;
}

/* --- 記事の内容の見出し --- */
#article_content h2{
    padding: 0.3em 0.5em;/*文字の上下 左右の余白*/
    color: #000000;/*文字色*/
    background: #ffffff;/*背景色*/
    border-left: solid 5px #000080;/*左線*/
    border-bottom: solid 3px #808080;/*下線*/
    font-weight: bold;
    font-size: 20px;
}

/* --- 記事の内容の引用 --- */
#article_content blockquote {
    position: relative;
    padding: 10px 15px 10px 50px;
    box-sizing: border-box;
    font-style: italic;
    background: white;
    color: black;
    border: solid 0.1em rgba(0, 0, 0, 0.22);
    box-shadow: 0.1em 0.1em 0.1em 0.1em rgba(0,0,0,0.4);
}

#article_content blockquote:before{
    display: inline-block;
    position: absolute;
    top: 10px;
    left: -3px;
    vertical-align: middle;
    content: "“";
    font-family: sans-serif;
    color: #cfcfcf;
    font-size: 90px;
    line-height: 1;
}

#article_content blockquote p {
    padding: 0;
    margin: 10px 0;
    line-height: 1.7;
}

#article_content blockquote cite {
    display: block;
    text-align: right;
    color: #888888;
    font-size: 0.9em;
}

/* -- トップ画面のボタン --*/
.index_btn {
    position: relative;
    padding-left: 30px;
    font-size: 1.25em;
    color: #325A8C;
}
.index_btn::before,
.index_btn::after{
    content: "□";
    position: absolute;
}
.index_btn::before{
    left:0;
    top:-3px;
}
.index_btn::after{
    left: 5px;
    top: 3px;
    color: #A1B8D1;
}





/* -- ライターコイン個数 --*/
.write_coin_num {
    font-size: 20px;
    font-weight: bold;
}

/* -- ライターコイン画像 --*/
.write_coin_img{
    width: 25px;
    height: 30px;
}

/* -- 換金申請履歴テーブル --*/
.money_applicaton_table{
    border-collapse: collapse;
}

.money_applicaton_th{
    background: #FFCC99;
    font-weight:bold;
    border: solid 1px;
    padding: 0.5em;
}
.money_applicaton_td{
    border: solid 1px;
    padding: 0.5em;
}

/* -- サイト一覧 --*/
#site_list{
    padding: 5px;
}

/* -- 質問 --*/

#question{
    margin: 0.5em;
}

.question_btn{
    display: inline-block;
    text-decoration: none;
    background: #191970;
    color: #FFFFFF;
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    text-align: center;
    font-weight: bold;
    vertical-align: middle;
    overflow: hidden;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
    border-bottom: solid 3px #bd6565;
    transition: .4s;
}

.question_btn:hover{
    background: #FFFFFF;
    color: #191970;
}

.question_btn:active{
    -ms-transform: translateY(2px);
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
    border-bottom: none;
}



#question_list_heading{
position: relative;
display: inline-block;
padding: 0 55px;
}

#question_list_heading:before, #question_list_heading:after{
content: '';
position: absolute;
top: 50%;
display: inline-block;
width: 45px;
height: 1px;
background-color: black;
}

#question_list_heading:before {left:0;}
#question_list_heading:after {right: 0;}


#question_heading{
    position: relative;
    display: inline-block;
    font-weight: bold;
    font-size: 150%;
    padding: 0 55px;
    margin: 1em;
}

#question_heading:before, #question_heading:after{
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 45px;
    height: 1px;
    background-color: black;
}

#question_heading:before {left:0;}
#question_heading:after {right: 0;}


#question_title {
    margin: 0px 0px 0.7em;
    border-bottom: solid 3px black;
    font-size: 140%;
    font-weight: bold;
    background-color: white;
    padding: 0.5em;
}

#question_content {
    padding: 0.3em;
    border: solid 3px #000000;
    background-color: #f5f5f5;
}

#question_content h2{
    padding: 0.3em 0.5em;/*文字の上下 左右の余白*/
    color: #000000;/*文字色*/
    background: #ffffff;/*背景色*/
    border-left: solid 5px #000080;/*左線*/
    border-bottom: solid 3px #808080;/*下線*/
    font-weight: bold;
    font-size: 20px;
}

#question_content img{
    max-width: 100%;
}

#question_list {
    margin: 0.5em;
}

#question_list ul, #question_list ol {
  background: #fcfcfc;/*背景色*/
  padding: 0.5em 0.5em 0.5em 0em;/*ボックス内の余白*/
  border: solid 3px gray;/*線の種類 太さ 色*/
}

#question_list ul li, #question_list ol li {
    font-size: 1.2em;
}


#answer_list_heading{
    position: relative;
    display: inline-block;
    font-weight: bold;
    font-size: 150%;
    padding: 0 55px;
    margin: 1em;
}

#answer_list_heading:before, #answer_list_heading:after{
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 45px;
    height: 1px;
    background-color: black;
}

#answer_list_heading:before {left:0;}
#answer_list_heading:after {right: 0;}

.answer_btn{
    display: inline-block;
    text-decoration: none;
    background: #dc143c;
    color: #FFFFFF;
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    text-align: center;
    font-weight: bold;
    vertical-align: middle;
    overflow: hidden;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
    border-bottom: solid 3px #bd6565;
    transition: .4s;
}

.answer_btn:hover{
    background: #FFFFFF;
    color: #dc143c;
}

.answer_btn:active{
    -ms-transform: translateY(2px);
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
    border-bottom: none;
}

#answer_content {
    padding: 0.3em;
    margin: 0 0 1em;
    border: solid 3px #000000;    
    background-color: #f5f5f5;
}

#answer_content h2{
    padding: 0.3em 0.5em;/*文字の上下 左右の余白*/
    color: #000000;/*文字色*/
    background: #ffffff;/*背景色*/
    border-left: solid 5px #000080;/*左線*/
    border-bottom: solid 3px #808080;/*下線*/
    font-weight: bold;
    font-size: 20px;
}

#answer_content img{
    max-width: 100%;
}

/* --- 掲示板への最近の質問見出し ---*/
#recent_question_list_to_board_heading {
    background: #87ceeb;
    padding: 4px;
}

/* --- 掲示板への最近の質問 ---*/
#recent_question_to_board {
    background: #e0ffff;
    border-left: 1px solid #C4C9CD;
    border-right: 1px solid #C4C9CD;
    border-bottom: 1px solid #C4C9CD;
}


/* --- サイトタイプの選択ボタン ---*/
.site_type_btn{
    display: inline-block;
    text-decoration: none;
    width: 120px;
    height: 120px;
    line-height: 120px;
    border-radius: 50%;
    text-align: center;
    font-weight: bold;
    font-size: 1.5em;
    vertical-align: middle;
    overflow: hidden;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
    border-bottom: solid 3px #bd6565;
    transition: .4s;
}

.site_type_btn:active{
    -ms-transform: translateY(2px);
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
    border-bottom: none;
}
.c_wiki_btn{
    background: #ffff00;
}
.c_wiki_btn a:link { color: #000000; }
.c_wiki_btn a:visited { color: #000000; }
.c_wiki_btn a:hover { color: #ff0000; }
.c_wiki_btn a:active { color: #ff0000; }    
.c_wiki_zone{
    padding: 1em;
    background: #ffff00;
}

/* --- 更新対象テンプレートリストのテンプレートボタン---*/
.template_btn{
    position: relative;
    display: inline-block;
    font-weight: bold;
    font-size: 1.7em;
    padding: 0.25em 0.5em;
    text-decoration: none;
    color: #0000cd;
    transition: .4s;
  }

.template_btn:hover {
    background: #0000cd;
    color: white;
}


/* --- コメント一覧 ---*/
#comment_list {
position: relative;
padding: 5px 5px 5px 42px;
background: yellow;
font-size: 1.5em;
font-weight: bold;
color: black;
margin-left: -33px;
line-height: 1.3;
z-index:-1;
}

#comment_list:before {
position: absolute;
content: '';
left: -2px;
top: -2px;
border: none;
border-left: solid 40px white;
border-bottom: solid 79px transparent;
z-index:-2
}

/* --- ツイートタイムライン ---*/
#tweet_timeline {
position: relative;
padding: 5px 5px 5px 42px;
background: #00aced;
font-size: 1.5em;
font-weight: bold;
color: white;
margin-left: -33px;
line-height: 1.3;
z-index:-1;
}

#tweet_timeline:before {
position: absolute;
content: '';
left: -2px;
top: -2px;
border: none;
border-left: solid 40px white;
border-bottom: solid 79px transparent;
z-index:-2
}


.h1_1 {
    font-size: 1.2em;
    border-bottom: solid 3px black;
}


#index_buttons{
    padding: 2em 1em;
}
#index_buttons a{
    margin: 1em;
}

.search_result_item{
    padding: 0.5em 1em;
    margin: 2em 0;
    font-weight: bold;
    border: solid 3px #000000;    
}

.input_wide{
    width: 90%;
}

.width_100{
    width: 100%;
}
.width_90{
    width: 90%;
}
.width_80{
    width: 80%;
}
.width_70{
    width: 70%;
}
.width_60{
    width: 60%;
}
.width_50{
    width: 50%;
}
.width_40{
    width: 40%;
}
.width_30{
    width: 30%;
}
.width_20{
    width: 20%;
}
.width_10{
    width: 10%;
}

.min_width_100{
    min-width: 100%;
}

/* モーダル コンテンツエリア */
.modal-main{
    text-align: center;
    display:none;
    width:500px;
    margin:0;
    padding:0;
    background-color:white;
    color:#666666;
    position:fixed;
    z-index:2;
    border: solid 3px #000000;    
}
/* モーダル 背景エリア */
.modal-bg {
　　display:none;
　　width:100%;
　　height:100%;
　　background-color: rgba(0,0,0,0.5);
　　position:fixed;
　　top:0;
　　left:0;
　　z-index: 1;
}

.my_tab_btn{
    height: 3em;
}


/* SNSボタン */
#social-icon p {
    margin: 2em 1em;
    color: white;
    vertical-align: middle;
}

#social-icon a {
    padding: 0.75em;
    color: white;
    vertical-align: middle;
}

#social-icon i {
    text-align: center;
    width: 1em;
    margin-right: 0.75em;
}

#social-icon .text {
}

#social-icon i:before { padding: 0; }
#social-icon .google { background: #c53727;}
#social-icon .twitter { background: #00a1e9;}
#social-icon .facebook { background: #3b5998;}



.padding_top {
    padding-top: 1em !important;
}
.padding_left {
    padding-left: 1em !important;
}
.padding_left_2 {
    padding-left: 2em !important;
}
.padding_right {
    padding-right: 1em !important;
}
.padding_bottom {
    padding-bottom: 1em !important;
}
.padding_bottom_half {
    padding-bottom: 0.5em !important;
}
.padding_bottom_2 {
    padding-bottom: 2em !important;
}
.padding {
    padding: 1em !important;
}
.padding_half {
    padding: 0.5em !important;
}
.margin_0 {
    margin: 0em !important;
}
.margin {
    margin: 1em !important;
}
.margin_2 {
    margin: 2em !important;
}
.margin_half {
    margin: 0.5em !important;
}
.margin_right {
    margin-right: 1em !important;
}
.margin_right_half {
    margin-right: 0.5em !important;
}
.margin_left {
    margin-left: 1em !important;
}
.margin_left_half {
    margin-left: 0.5em !important;
}
.margin_top_2 {
    margin-top: 2em !important;
}
.margin_top_0 {
    margin-top: 0em !important;
}
.margin_top {
    margin-top: 1em !important;
}
.margin_top_half {
    margin-top: 0.5em !important;
}
.margin_bottom_2 {
    margin-bottom: 2em !important;
}
.margin_bottom {
    margin-bottom: 1em !important;
}
.margin_bottom_half {
    margin-bottom: 0.5em !important;
}

.back_ground_color_1 {
    background-color: #ededed;
}

.big_font {
    font-size: 1.5em;
}






/*
 * アコーディオン
 */
.faq label {
    color: #edfcf3;
    position: relative;
    display: block;
    cursor :pointer;
    transition: all 0.5s;
    padding: 0.5em;
 }

 /* チェックボックスは表示しない */
 .faq input {
   display: none;
 }

 /* 開けることを示すための下矢印と答えをチェックボックスが入る前の状態にセット */

 .faq .collapse-handle {
   height: 0.7em;
   width: 1.5em;
   background: image-url("collapse_allow_close.svg") no-repeat;
   position: absolute;
   right: 1em;
   top: 40%;
 }

 .faq .ac_list {
   height: 0;
   padding: 0;
   overflow: hidden;
   opacity: 0;
   transition: 0.8s;
 }

 .faq .ac_list li{
     margin: 0.25em;
     padding: 0.25em;
 }
 .faq .ac_list li a{
     padding: 0.25em;
 }
 
 .faq .ac_list li :hover{
    background-color: #edfcf3;
 }
 .faq .ac_list li a:hover{
    color: #222222 !important;
 }
 
 .faq .ac_list li:before{
     border-style: none;
 }
 
 /* チェックボックスにチェックが入ったら、以下の要素が変更になる */

 .checkbox:checked + label .collapse-handle {
   height: 0.7em;
   width: 1.5em;
   background: image-url("collapse_allow_open.svg") no-repeat;
   position: absolute;
 }

 .checkbox:checked + label + .ac_list {
   height: auto;
   opacity: 1;
   background-color: #222222;
   align-items: flex-start;
   padding: 1em 1em 1em 0;
 }

 .checkbox:checked + label + .ac_list a{
    font-size: 1em !important;
    color: #edfcf3;
    font-weight: normal;
    transition: .4s;
 }
 
 .new{
    background-color: red;
    color: white;
    font-weight: bold;
    padding: 0em 0.25em 0.1em;
    margin: 0em 0.25em;
    font-size: 0.8em;
}

.article_number{
    margin-top: 1.25em;
    padding: 0.15em 0.25em;
    font-size: 2.65em;
    background-color: black;
    color: white;
}
.article_number img{
    vertical-align: middle;
    max-height: 100%;
    max-width: 100%;
}


.c-wiki{
    color: #ededed;
    background-color: #201e7d;
}

.c-wiki_login_img{
    width: 6%;
    height: 6%;
    position: relative;
    top: 3px;
    right: 4.5px;
}

.c-wiki2{
    color: white;
    background-color: #222222;
}

.radius_10 {
    border-radius: 10px;
}
.radius_20 {
    border-radius: 20px;
}
.radius_30 {
    border-radius: 30px;
}
.radius_40 {
    border-radius: 40px;
}
.radius_50 {
    border-radius: 50px;
}

.font-size-1-25 {
    font-size: 1.25em;
}

.font-size-1-5 {
    font-size: 1.5em;
}

.font-size-2 {
    font-size: 2em;
}

.font-size-0-75 {
    font-size: 0.75em;
}

.font-size-0-5 {
    font-size: 0.5em;
}

.small-font{
    font-size: 80%;
}

.color-white {
    color: white;
}

.color-white-a{
    color: white;
}

#comment_btn {
    cursor: pointer;
}

.welcome {
    font-size: 1.5em;
    font-weight: bold;
    padding: 1em;
}

.my_table{
  border-collapse:collapse;
}
.my_table td,.my_table th{
  border:1px solid #ccc;
  padding:10px;
  text-align: center;
}
.my_table th{
  background:#EFEFEF;
}


.move-top {
    box-sizing: border-box;
    position: fixed;
    bottom: 160px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: 1px solid black;
    border-radius: 3px;
    opacity: 0.7;
    cursor: pointer;
    background-color: white;
}
.move-top:before{
    content: "";
    position: absolute;
    left: 9px;
    border-top: 8px solid transparent;
    border-right: 11px solid transparent;
    border-left: 11px solid transparent;
    border-bottom: 21px solid black;
}

.move-bottom{
    box-sizing: border-box;
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: 1px solid black;
    border-radius: 3px;
    opacity: 0.7;
    cursor: pointer;
    background-color: white;
}
.move-bottom:before{
    content: "";
    position: absolute;
    left: 9px;
    top: 9px;
    border-top: 21px solid black;
    border-right: 11px solid transparent;
    border-left: 11px solid transparent;
    border-bottom: 8px solid transparent;
}

#menu-bg {
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 19;
}


.child_article_list_area{
    background-color: white;
    border: solid 1px #222222;
    border-radius: 1.5em;
    padding: 0em 1em;
}

.child_article_list_area_bg{
    background-color: #ffefef;
}

.save_level_article_list_area_bg{
    background-color: #efefff;
}


/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}


.image-upload-btn{
    background-color: gainsboro;
    display: inline-block;
    font-weight: normal;
    line-height: 1.25;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.5rem 0.5rem;
    margin-left: 0.5em;
    font-size: 0.75em;
    border-radius: 0.25rem;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}
.image-upload-btn:active {
    -ms-transform: translateY(2px);
    -webkit-transform: translateY(2px);
    transform: translateY(2px);/*下に動く*/
    border-bottom: none;/*線を消す*/
}

.image-upload-btn {
  color: #fff;
  background-color: #5cb85c;
  border-color: #5cb85c;
}

.image-upload-btn:hover {
  color: #fff;
  background-color: #449d44;
  border-color: #419641;
}

.image-upload-btn:focus, .image-upload-btn.focus {
  -webkit-box-shadow: 0 0 0 2px rgba(92, 184, 92, 0.5);
          box-shadow: 0 0 0 2px rgba(92, 184, 92, 0.5);
}

.image-upload-btn.disabled, .image-upload-btn:disabled {
  background-color: #5cb85c;
  border-color: #5cb85c;
}

.image-upload-btn:active, .image-upload-btn.active,
.show > .image-upload-btn.dropdown-toggle {
  color: #fff;
  background-color: #449d44;
  background-image: none;
  border-color: #419641;
}

#temporary_registration_btn{
    border: solid 1px black;
    font-size: 1em;
}

.item-list-label{
    padding: 0.5em;
    border-radius: 30px;
    position: relative;
    bottom: 0.5em;
    font-size: 1em;
}

.article_item{
    margin: 0.75em 0em;
}

.article_item a{
    transition: all 0.2s ease-in-out;
    border-radius: 0.25rem;
    padding: 0.25em;
}

#menu{
    font-size: 1.1em;
}

.bikkuri{
    width: 1.5em;
    position: relative;
    top: 0.4em;
    margin: 0em 0.5em;
}

#social-icon2 {
    font-weight: bold;
}
#social-icon2 a {
    padding: 0.5em;
    margin: 0.5em;
    border-radius: 2em;
    font-size: 1em;
    color: white;
    vertical-align: middle;
}
#social-icon2 i {
    text-align: center;
    width: 1em;
    margin-right: 0.2em;
}
#social-icon2 i:before { padding: 0; }
#social-icon2 .google { background: #c53727;}
#social-icon2 .twitter { background: #00a1e9;}
#social-icon2 .facebook { background: #3b5998;}

.icon{
    height: 1.25em;
    margin: 0em 0.5em;
}

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

.flex-top {
    display: -webkit-flex;
    display: flex;
}

.pointer{
    cursor: pointer;
}

.q-desc-img{
    height: 1.25em;
    margin-left: 0.5em;
    margin-right: 0.5em;
    vertical-align: middle;
    cursor: pointer;
}

.q-desc {
	position: relative;
	display: inline-block;
	cursor: pointer;
}
.q-desc .q-desc-text {
        font-size: 0.85em;
	position: absolute;
	z-index: 2;
	bottom: 100%;
	left: 1em;
	width: auto;
	white-space: nowrap;
	padding: 0.3em 0.5em;
	transition: opacity 1s;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	border-radius: 6px;
	color: white;
	background-color: black;
        border: solid white;
}
.q-desc-img .q-desc-text::after {
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	content: ' ';
	border: 5px solid transparent;
	border-top-color: black;
}
.q-desc:hover .q-desc-text {
	visibility: visible;
	opacity: 1;
}

.q-desc2 {
	position: relative;
	display: inline-block;
	cursor: pointer;
}
.q-desc2 .q-desc-text2 {
        font-size: 0.85em;
	position: absolute;
	z-index: 1;
	bottom: 100%;
	left: 1em;
	width: auto;
	white-space: nowrap;
	padding: 0.3em 0.5em;
	transition: opacity 1s;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	border-radius: 6px;
	color: black;
	background-color: white;
}
.q-desc-img2 .q-desc-text2::after {
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	content: ' ';
	border: 5px solid transparent;
	border-top-color: white;
}
.q-desc2:hover .q-desc-text2 {
	visibility: visible;
	opacity: 1;
}

#content{
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    max-width: 100%;
}


.my_radio {
	/*margin: 2em auto;*/
}
.my_radio label{
        cursor: pointer;
}
@keyframes click-wave {
	0% {
		position: relative;
		width: 30px;
		height: 30px;
		opacity: 0.35;
	}
	100% {
		width: 200px;
		height: 200px;
		margin-top: -80px;
		margin-left: -80px;
		opacity: 0;
	}
}
.my_radio .my_option_input {
	position: relative;
	top: 10px;
	right: 0;
	bottom: 0;
	left: 0;
	width: 30px;
	height: 30px;
	margin-right: 0.5rem;
	cursor: pointer;
	transition: all 0.5s ease-out 0s;
	color: #ffffff;
	border: none;
	outline: none;
	background: #d7cbcb;
	-webkit-appearance: none;
	        appearance: none;
}
.my_radio .my_option_input:hover {
	background: #0275d8;
}
.my_radio .my_option_input:checked {
	background: #0275d8;
}
.my_radio .my_option_input:checked::before {
	font-size: 20px;
	line-height: 30px;
	position: absolute;
	display: inline-block;
	width: 30px;
	height: 30px;
	content: '✔';
	text-align: center;
}
.my_radio .my_option_input:checked::after {
	position: relative;
	display: block;
	content: '';
	-webkit-animation: click-wave 0.65s;
	        animation: click-wave 0.65s;
	background: #0275d8;
}
.my_radio .my_option_input.radio {
	border-radius: 50%;
}
.my_radio .my_option_input.radio::after {
	border-radius: 50%;
}
.my_radio label {
	line-height: 40px;
	display: block;
}
.my_radio .my_option_input:disabled {
	cursor: not-allowed;
	background: #0275d8;
}
.my_radio .my_option_input:disabled::before {
	font-size: 20px;
	line-height: 30px;
	position: absolute;
	display: inline-block;
	width: 30px;
	height: 30px;
	content: '✖︎';
	text-align: center;
}
.my_radio .disabled {
	color: #9e9e9e;
}

.site_coin{
    height: 2em;
}

.color_red{
    color: red;
}
.color_black{
    color: black;
}
.color_white{
    color: white;
}
.color_grey{
    color: grey;
}

.required{
    top: -0.15em;
    position: relative;
    vertical-align: middle;
    font-size: 75%;
    font-weight: bold;
    color: red;
    border: solid 1.5px red;
    border-radius: 0.5em;
    margin-left: 0.35em;
    padding: 0.25em 0.5em;
}



#loading{   
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    height:100%;
    display: none;
    background: rgba(0,0,0,0.6);
}
.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;  
}
.spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}
@keyframes sp-anime {
    0% { 
        transform: rotate(0deg); 
    }
    100% { 
        transform: rotate(359deg); 
    }
}
.is-hide{
    display:none;
}


#simple_body{
    background-color: white;
    padding-top: 2em;
    padding-left: 0.5em;
    padding-right: 0.5em;
    padding-bottom: 2.5em;
}

.comment-user-image{
    height: 1.5em;
    border-radius: 1em;
    position: relative;
    top: 0.35em;
}

ul.my-list {
    padding: 0;
    margin: 0;
    list-style-type: none;
    background: #f5f5f5;
}
.my-list li:nth-child(even){
    background-color: #fffaf0;
}
.my-list li {
}
.my-list li:last-child {
    border-bottom: none;
}
.my-list-a {
    display: block;
    padding: 8px 16px;
    text-decoration: none;
    color: black;
}
.my-list-a.active {
    color: #ffffff;
    background-color: #da3c41;
}
.my-list-a:hover:not(.active) {
    color: black;
    background-color: #ffd700;
}

.header_image{
    border-radius: 1em;
}


.index-ul{
    list-style: none;
    background-color: white;
}
.index-ul a{
    /*color: black;*/
}

.index-ul .black{
    color: black;
}

.index-li{
    padding: 1em;
}

.index-li:before{
}

.index-li img{
    height: 4.5em;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
}

.index-app-border{
    width: 100%;
    position: relative;
    display: inline-block;
}
.index-app-border:before{
    content: '';
    position: absolute;
    left: 50%;
    display: inline-block;
    width: 60%;/*線の長さ*/
    height: 1px;/*線の太さ*/
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);/*位置調整*/
    background-color: #dcdcdc;/*線の色*/
    border-radius: 2px;/*線の丸み*/
}

.index-app-name{
    padding-left: 1em;
    padding-top: 1.75em;
    vertical-align: middle;
}
.index-app-description{
    padding-top: 0.25em;
    font-size: 0.75em;
    color: rgba(0,0,0,.5);
}
.index-app-border {
    width: 100%;
    position: relative;
    display: inline-block;
}
.index-li img {
    height: 4.5em;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
}

.only-flex {
    /* display: -webkit-flex; */
    display: flex;
}

#footer_content{
    margin-top: 1em;
    margin-bottom: 5em;
    text-align: center;
}

.menu_item_content{
    margin-bottom: 2em;
}

#top_news{
    font-size: 1em;
    text-align: center;
}
#top_news p{
    padding-top: 1em;
    padding-bottom: 1em;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0em;
    margin-inline-end: 0em;
}


.comment-area ul{
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0em;
    margin-inline-end: 0em;
    padding-inline-start: 0em;
}

.search-result{
    background-color: white;
    margin-top: 1em;
    margin-bottom: 1em;
    padding-top: 1em;
    padding-bottom: 1em;
}
.search-result ul{
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0em;
    margin-inline-end: 0em;
    padding-inline-start: 2em;
}
.search-result li{
    margin-top: 1em;
    margin-bottom: 1em;
}