.actress-list {
    display: flex;
    flex-wrap: wrap; /* このプロパティが折り返しを有効にします */
}

.actress-list-item hr {
    margin-top: 0.1rem;
    margin-bottom: 0.1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    max-width: 10rem;
}

/* PCの場合のスタイル */
@media screen and (min-width: 768px) {
    .actress-list-item {
        width: 10rem;
        text-align: center;
        margin-top: 0rem;
        margin-left: 0.25rem;
        margin-right: 0.25rem;
        margin-bottom: 1.5rem;
    }
    .actress-list-item a img {
        max-width: 7rem;
    }
}
/* スマホの場合のスタイル */
@media screen and (max-width: 767px) {
    .actress-list-item {
        width: 31%;
        text-align: center;
        font-size: 0.85rem;
        margin-top: 0rem;
        margin-left: 0.25rem;
        margin-right: 0.25rem;
        margin-bottom: 1.5rem;
    }
    .actress-list-item a img {
        width: 100%;
    }
}

.actress-list-item2 {
    max-width: 30%;
    padding: 10px;    
    text-align: center;
}
/* PCの場合のスタイル */
@media screen and (min-width: 768px) {
    .actress-list-item2-img {
        max-width: 7.5em;
    }
}

.item-list {
    display: flex;
    flex-wrap: wrap; /* このプロパティが折り返しを有効にします */
}
.item-list-item hr {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    max-width: 10rem;
}

/* PCの場合のスタイル */
@media screen and (min-width: 768px) {
    .item-list-item {
        width: 10rem;
        border: 0.25px solid;
        border-color: rgba(0, 0, 0, 0.1);
        margin-top: 0rem;
        margin-left: 0.25rem;
        margin-right: 0.25rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    .item-list-item img {
        max-width: 7rem;
    }
}
/* スマホの場合のスタイル */
@media screen and (max-width: 767px) {
    .item-list-item {
        width: 31.5%;
        border: 0.25px solid;
        border-color: rgba(0, 0, 0, 0.1);
        font-size: 0.8rem;
        margin-top: 0rem;
        margin-left: 0.1rem;
        margin-right: 0.1rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    .item-list-item img {
        width: 100%;
    }
}


.item-img-small {
    width: 55%;
    max-width: 95%;
    margin: 1rem;
}
.item-img-large {
    max-height: 30em;
    max-width: 95%;
    margin: 1rem;
}
.item-movie {
    width: 100%;
}

.item-sample-img{
    max-width: 95%;
    margin: 0.5em;
}

.item-detail th{
    min-width: 8.5rem;
}

.item-detail a {
/*    border: 0.25mm ridge darkgray;
    padding: 0em 0px;
    border-radius: 3px;*/
}

.breadcrumb {
    padding: 0.5rem 0.5rem !important;
}

.custom-btns {
    text-align: center;
}
.custom-btn {
    background-color: #ebebeb;
    padding: 0.25rem;
    margin: 0.25rem;
    border: 0.25mm ridge darkgray;
    text-align: center;
    max-width: 15rem;
    color: black;
    font-size: 0.85rem;
}
.custom-btn a {
    color: black !important;
}
.custom-btn-50 {
    width: 50%;
}
.custom-btn-100 {
    width: 100%;
}



/* PCの場合のスタイル */
@media screen and (min-width: 768px) {
    #search_form{
        margin: 0rem 0.25rem;
        padding: 0.5rem 0.25rem;
        border: 0.1rem solid rgba(0, 0, 0, 0.3);
    }
}

/* スマホの場合のスタイル */
@media screen and (max-width: 767px) {
    #search_form{
        margin: 0rem 0.25rem 3rem;
        padding: 0.5rem 0.25rem;
        border: 0.1rem solid rgba(0, 0, 0, 0.3);
    }
}

.search_form_title{
    text-align: center;
}
.search_item {
    margin-bottom: 0.5rem;
}
.search_number {
    width: 75px;
    text-align: center;
}
.search_sell_date{
    text-align: center;
}

.search_hr {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}


.search_item_left {
    text-align: right;
    padding-right: 1em;
}
.search_item_right {
    text-align: left;
}


body {
    font-family: "Sawarabi Mincho";
    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%;
}

a{
    text-decoration: none;
}

.blue-color {
    color: #1a0dab !important;
}
.page-link{
    color: #1a0dab !important;
}
.page-item.active .page-link {
    color: white !important;
    background-color: #1a0dab;
}

img{
    max-width: 100%;
}

iframe{
    max-width: 100%;
}

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


.news {
    color: red;
}




#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: #1a0dab;
  border-color: #1a0dab;
}

.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: #1a0dab;
  border-color: #1a0dab;
}

.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: #fff;
  background-color: #4d4d4d;
  border-color: #4d4d4d;
}

.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: #4d4d4d;
  border-color: #4d4d4d;
}

.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: #038503;
  border-color: #038503;
}

.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: #038503;
  border-color: #038503;
}

.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: #ad5c00;
  border-color: #ad5c00;
}

.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: #ad5c00;
  border-color: #ad5c00;
}

.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: #b30500;
  border-color: #b30500;
}

.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: #b30500;
  border-color: #b30500;
}

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


/* -- トップ画面のボタン --*/
.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;
}


/* --- コメント一覧 ---*/
#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: #038503;
  border-color: #038503;
}

.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: #038503;
  border-color: #038503;
}

.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;*/
    align-items: flex-start; /* 要素を垂直方向に上揃えに配置 */
}

.flex-center {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    justify-content: center; /* 要素を横方向に中央に配置 */
    align-items: flex-start; /* 要素を垂直方向に上揃えに配置 */
}

.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: #1a0dab;
}
.my_radio .my_option_input:checked {
	background: #1a0dab;
}
.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: #1a0dab;
}
.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: #1a0dab;
}
.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;
}

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

.imagePreview {
    width: 100px;
    height: 100px;
    background-position: center center;
    background-size: cover;
    -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, .3);
    display: inline-block;
}








.img_content{
    padding: 0em;
    margin: 0.5em;
    border: 1px solid rgba(0,0,0,.125);
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    border-radius: 0.25rem;
/*    background: linear-gradient(45deg, #bdbbbb 0%, #d6d6d6 45%, #f5f5f5 70%, #d4d4d4 85%, #bfbfbf 90% 100%);*/
}

.img_content_desc {
    padding: 1em;
}

h1 {
    font-size: 1.35em !important;
}
h2 {
    font-size: 1.35em !important;
}

.floor-index {
    padding: 0rem 0rem;
    margin-bottom: 2.5rem;
}
.floor-index h2 {
    background-color: #ebebeb;
    padding: 0.25rem 0rem;
    margin: 0rem;
}



.cb-category {
    font-size: 1.2em !important;
}

.page-link {
    padding: 0.5rem 0.5rem !important;
}

.navbar-brand {
    font-size: 0.85em;
}


.tool-model-btn a{
    color: white;
}


#top_logo {
    width: auto !important;
}

.list-group-item {
    /* 上 | 右 | 下 | 左 */
    padding: 0.5rem 0.5rem 1.5rem 0.5rem !important;
}

.sample-img-list {
    /*word-wrap: break-word;*/
}

.sample-img-list ul {
/*    list-style-position: inside;*/
}

.sample-img-badge{
    white-space: normal !important;
    line-height: 1.2em;
    background-color: #f2f2f2;
    padding: 0.2em 0.75em !important;
    margin: 0.25em 0em !important;
    font-size: 85% !important;
}

.sample-img-key {
    font-weight: bold;
    /*font-size: 1.25em;*/
    padding: 0em 0.5em;
}

.list-group a {
    overflow-wrap: break-word;
}

.spell-generater label {
    cursor: pointer;
}
.spell-generater input {
    cursor: pointer;
}

label {
    display:inline-block;
    margin-bottom: 0rem !important;
}


.frame-img {
    border-top: 7.5px solid #825330;
    border-right: 7.5px solid #614228;
    border-bottom: 7.5px solid #4f371f;
    border-left: 7.5px solid #8f6843;
    box-shadow: 4px 4px 10px 2.5px rgba(0,0,0,0.4);
}


  .ad-left, .ad-right {
    position: fixed; /* 広告を固定する */
    padding-bottom: 55px;    
    top: 55%; /* 画面の縦方向の真ん中に広告を配置 */
    transform: translateY(-50%); /* 広告自体の縦方向の真ん中を基準にする */
    min-width: 300px;
  }

  .ad-left {
    left: 0; /* 画面の左側に広告を配置 */
  }

  .ad-right {
    right: 20px; /* 画面の右側に広告を配置 */
  }

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    margin-bottom: 1rem;    
}

.image_file_btn input {
    display: none;
}

.select-lang {
    width: 12em !important;
    display: inline-block;
}

.profile-user-image {
    max-width: 50%;
}

.layout-user-image-file{
    height: 1.25em;
    border-radius: 0.5em;
}

.favorite_img {
    position: relative;
    top: -0.15em;
    height: 1.5em;
}

.mov{
    width: 100%;
}


.index-btn {
    margin: 0.5em !important;
}




/* PCの場合のスタイル */
@media screen and (min-width: 768px) {
    .img-list {
        display: flex;
        flex-wrap: wrap;
        align-items: center;    
    }

    .img_content {
        width: 30%;
    }
    
    .cb-txt {
        font-size: 1.25em !important;
    }
    
    .main-content {
        padding: 20px;
        /*max-width: calc(100% - 600px);*/
        width: 100%;
    }
  
    .index-btns {
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-align-items: center;
        align-items: center;
    }
    
    .detail-img {
        height: 85vh;
        width: auto;
        object-fit: cover;    
    }
    
}

/* スマホの場合のスタイル */
@media screen and (max-width: 767px) {
    
    .pagination{
        max-width: 100%;
        font-size: 0.45em;
    }    
    
    .cb-txt {
        font-size: 1em !important;
    }
    
    .detail-img {
        width: 100% !important;
        height: auto !important;
    }
    
}

.container-fluid {
    display: -webkit-flex;
    display: flex;
    align-items: flex-start; /* 要素を垂直方向に上揃えに配置 */
    padding-right: 0px !important;
    padding-left: 0px !important;
    margin-right: 0px !important;
    margin-left: 0px !important;
}

.side-content {
    width: 300px;
}

.img-list img {
    width:100%;
    height:auto;
}


#tag-search {
    text-align: center;
}

.search-container {
    position: relative;
}

.search-icon {
    width: 1.25rem;
    position: relative;
    top: -0.05rem;
    left: -0.05rem;
}

#tag-search {
    padding-left: 30px; /* Make sure the text does not overlap the icon */
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(0,0,0,.8) !important;
}




.navbar-toggler {
    /* padding: 0.25rem 0.75rem; */
    /* font-size: 1.25rem; */
    /* line-height: 1; */
    /* background-color: transparent; */
    /* border: 1px solid transparent; */
    /* border-radius: 0.25rem; */
}
