/*
Theme Name: MyWiki Child
Theme URI: http://fasterthemes.com/wordpress-themes/mywiki
Template: mywiki
Author: FasterThemes
Author URI: http://fasterthemes.com/
Description: MyWiki is simple, lightweight and fast loading WordPress Theme for individuals and companies to manage their Knowledge-base or Support or Wiki or Frequently Asked Questions (FAQs) through a WordPress website. It is powered by Ajax search. It is a mobile responsive theme based on Twitter bootstrap framework. It is a translation ready theme and hence can be translated to any LTR language. Step by step documentation and tutorial is available for free here: https://fasterthemes.com/documentation/mywiki/
Tags: custom-background,custom-menu,full-width-template,theme-options,right-sidebar,featured-images,post-formats,sticky-post,editor-style,translation-ready
Version: 4.0.1724371821
Updated: 2024-08-23 09:10:21

*/

/* START CUSTOM R-TSUCHIYA */

/* 指定の固定ページはヘッダーに表示させない ページIDが 4278(おすすめ図書登録),4280(図書編集),4282(図書詳細),4284(購入依頼登録) のリンクを非表示 */
.navbar-collapse .mywiki-header-menu .page-item-4278,
.navbar-collapse .mywiki-header-menu .page-item-4280,
.navbar-collapse .mywiki-header-menu .page-item-4282,
.navbar-collapse .mywiki-header-menu .page-item-4284 {
    display: none !important;
}

.custom-content{
    padding-top: 1em;
    padding-bottom: 50px;
}

/* 削除確認ダイアログ内ボタン */
.my-solid-btn-delete{
    color: #fff;
    background-color: #c63140;
    border-radius: 5px;
    padding: 8px 15px 8px 15px;
    border: 0 !important;
    margin-left: 3px;
    font-size: 15px;
    transition: background-color 0.3s ease;
}
.my-solid-btn-delete:hover{
    color: #fff;
    background: #992631;
}
.my-solid-btn-cancel{
    color: #fff;
    background-color:gray;
    border-radius: 5px;
    padding: 8px 15px 8px 15px;
    border: 0 !important;
    margin-left: 3px;
    font-size: 15px;
    transition: background-color 0.3s ease;
}
.my-solid-btn-cancel:hover{
    color: #fff;
    background: rgb(90, 90, 90);
}
/* 未レビュー通知ダイアログ内ボタン */
.my-solid-btn-ok{
    color: #fff;
    background-color:#048eb0;
    border-radius: 5px;
    padding: 8px 15px 8px 15px;
    border: 0 !important;
    margin-left: 3px;
    font-size: 15px;
    transition: background-color 0.3s ease;
}
.my-solid-btn-ok:hover{
    color: #fff;
    background: #005777;
}
/* リスト内チェックボックス アニメーション付き */
.animationCheckbox {
    display: inline-block;
    position: relative;
}
.list-checkbox {
    appearance: none;
    height: 17px;
    width: 17px;
    margin: 4px 0 4px 4px;
    border: 1px solid gray;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}
.list-checkbox:checked {
    transform: rotate(-45deg);
    opacity: 0;
}
.list-checkbox:focus {
    outline: none !important;/
}
.list-check {
    position: absolute;
    top: 0;
    left: 0;
    width: 17px;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}
.list-check::before {
    content: "";
    width: 9px;
    height: 14px;
    border-width: 0 3px 3px 0;
    border-style: solid;
    border-color: transparent #048eb0 #048eb0 transparent;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.list-checkbox:checked + .list-check::before {
    opacity: 1;
}
.list-checkbox-all {
    appearance: none;
    height: 17px;
    width: 17px;
    margin: 4px 0 4px 4px;
    border: 1px solid #fff;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}
.list-checkbox-all:checked {
    transform: rotate(-45deg);
    opacity: 0;
}
.list-checkbox-all:focus {
    outline: none !important;/
}
.list-check-all {
    position: absolute;
    top: 0;
    left: 0;
    width: 17px;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}
.list-check-all::before {
    content: "";
    width: 9px;
    height: 14px;
    border-width: 0 3px 3px 0;
    border-style: solid;
    border-color: transparent #fff #fff transparent;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.list-checkbox-all:checked + .list-check-all::before {
    opacity: 1;
}

/* リスト内アイコンボタン */
.btn-delete{
    background: #dc3545;
    color:#fff;
    border: 0 !important;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.btn-delete:hover{
    background: #992631;
}
.btn-edit {
    background: #F49431;
    color:#fff;
    border: 0 !important;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.btn-edit:hover {
    background: #a76421;
}
.btn-show {
    background: #048eb0;
    color:#fff;
    border: 0 !important;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.btn-show:hover {
    background: #005777;
}
.btn-disabled {
    /* background: #909090; */
    /* color: #fff; */
    background: transparent;
    color:#909090;
    border: 0 !important;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* 一覧の操作ボタン */
.my-solid-btn,
a.my-solid-btn {
    color: #fff;
    background-color: #005777;
    border-radius: 5px;
    padding: 8px 15px 8px 15px;
    border: 0 !important;
    margin-left: 3px;
    font-size: 15px;
    transition: background-color 0.3s ease;
}
.my-solid-btn:hover,
a.my-solid-btn:hover {
    color: #fff;
    background: #002642;
}
.my-solid-btn:disabled,
a.my-solid-btn:disabled {
    background-color: gray; /* グレーに設定 */
    cursor: not-allowed; /* カーソルを変更 */
}
.my-solid-btn-edit,
a.my-solid-btn-edit {
    color: #fff;
    background-color: #F49431;
    border-radius: 5px;
    padding: 8px 15px 8px 15px;
    border: 0 !important;
    margin-left: 3px;
    font-size: 15px;
    transition: background-color 0.3s ease;
}
.my-solid-btn-edit:hover,
a.my-solid-btn-edit:hover {
    color: #fff;
    background: #a76421;
}

/* 検索パネル内ボタン */
.my-outline-btn,
a.my-outline-btn {
    color: #fff;
    background: #048eb0;
    border-radius: 5px;
    padding: 4px 8px;
    border: 0 !important;
    margin-left: 3px;
    font-size: 14px;
    transition: background-color 0.3s ease;
}
.my-outline-btn:hover,
a.my-outline-btn:hover {
    background: #005777;
    color: #fff;
}
.my-outline-btn-reset,
a.my-outline-btn-reset {
    color: #fff;
    background: gray;
    border-radius: 5px;
    padding: 4px 8px;
    border: 0 !important;
    margin-left: 3px;
    font-size: 14px;
    transition: background-color 0.3s ease;
}
.my-outline-btn-reset:hover,
a.my-outline-btn-reset:hover {
    background: rgb(90, 90, 90);
    color: #fff;
}

/* 詳細画面の評価表示用の星 */
.star5-rating{
    position: relative;
    z-index: 0;
    display: inline-block;
    white-space: nowrap;
    color: LightGray;
    font-size: 25px;
}
.star5-rating:before, .star5-rating:after{
    content: '★★★★★';
}
.star5-rating:after{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
    color: #F49431;
}
.star5-rating[data-rate="5"]:after{ width: 100%; } /* 星5 */
.star5-rating[data-rate="4"]:after{ width: 80%; } /* 星4 */
.star5-rating[data-rate="3"]:after{ width: 60%; } /* 星3 */
.star5-rating[data-rate="2"]:after{ width: 40%; } /* 星2 */
.star5-rating[data-rate="1"]:after{ width: 20%; } /* 星1 */
.star5-rating[data-rate="0"]:after{ width: 0%; } /* 星0 */

/* 検索ボックス */
table.table-search {
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
    overflow: hidden;
    border: 0 !important;
    margin-top: 40px;
}
table.table-search tr {
    border: 0 !important;
}
table.table-search th {
    vertical-align: top;
    width: 25%;
    border: 0 !important;
    font-weight: bold;
}
table.table-search td {
    width: 75%;
    border: 0 !important;
}
table.table-search input,select {
    border: solid 1px #cfcfcf;
    padding: 2px, 5px;
    border-radius: 3px;
    height: 32px;
    background: #fff !important;
}
table.table-search input:focus {
    border: solid 2px #002B48 !important;
    outline: none;
}

/* Datatables */
/* ソートアイコン非表示 */
table.table-review-comment.dataTable thead .sorting_asc {
    background-image: none !important;
}
table.dataTable thead .sorting{
    background-image: none !important;
}
/* 昇順ソートアイコン */
table.dataTable thead .sorting_asc {
    background-image: none !important;
}
table.dataTable thead .sorting_asc::after {
    font-family: "Font Awesome 5 Free";
    content: "\f0d8";
    color: #fff;
    margin-left:5px;
}
/* 降順ソートアイコン */
table.dataTable thead .sorting_desc {
    background-image: none !important;
}
table.dataTable thead .sorting_desc::after {
    font-family: "Font Awesome 5 Free";
    content: "\f0d7";
    color: #fff;
    margin-left:5px;
}

/* ページネーションボタン */
.dataTables_wrapper .dataTables_paginate .paginate_button {
    background: none !important;
    border: 0 !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: none !important;
    border: 0 !important;
    color: #048eb0 !important;
    font-weight: bold;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: none !important;
    border-bottom: solid 1px #048eb0 !important;
    color: #048eb0 !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: none !important;
    border-bottom: solid 1px #048eb0 !important;
    color: #048eb0 !important;
    font-weight: bold;
}

/* 購入書籍一覧表 */
table.table-list {
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
    overflow: hidden;
    text-align: center;
    border: 0 !important;
    font-size: 13px;
}
table.table-list tr {
    background-color: #e6f1f6;
    border: 0 !important;
}
table.table-list th, table.table-list td {
    padding: 0.5em  !important;
    border: 0 !important;
}
table.table-list thead th {
    background-color: #048eb0;
    color: #fff;
    font-weight: bold;
    text-align: center;
}
table.table-list tbody th {
    color: #048eb0;
}
/* paddingはみ出し防止 */
table.dataTable th, table.dataTable td {
    box-sizing: border-box !important;
}

/* 図書一覧スピナー表示 */
.table-container {
    position: relative;
    width: 100%;
    height: 100%;
}
.datatable-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.8);
    z-index: 1000;
    width: 100%;
    height: 100%;
}
.spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #048eb0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1.5s linear infinite;
}
.spinner-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center; /* 水平方向の中央揃え */
    justify-content: center; /* 垂直方向の中央揃え */
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* レビューへのコメントテーブル */
.table-wrapper{
    /* border: solid 1px #cfcfcf; */
    border-radius: 3px;
    padding: 10px;
    margin-bottom: 20px;
    background-color: #f6f6f6;
}
table.table-review-comment{
    border-collapse: collapse;
    width: 100% !important;
    border: 0 !important;
    background-color: #f6f6f6 !important;
}
table.table-review-comment th{
    border: 0 !important;
    padding: 3px !important;
}
table.table-review-comment tr{
    border: 0 !important;
}
table.table-review-comment td{
    padding: 3px !important;
    border: 0 !important;
    vertical-align: top;
    background-color: #f6f6f6 !important;
}

/* Contact Form7スマホ・タブレット用カスタマイズ */
@media(max-width:767px){
    /* 一覧テーブル */
    table.table-list {
        border-radius: 0;
        text-align: left;
    }
    table.table-list thead {
        display:none;
    }
    table.table-list tr {
        background-color: unset;
    }
    table.table-list tr:hover {
        background-color: #e6f1f6;
    }
    table.table-list tbody tr.selected {
        background-color: #e6f1f6;
    }
    table.table-list th, table.table-list td {
        display: block;
        border: 0;
        border-bottom: 1px solid #048eb0;
    }
    table.table-list tbody th{
        background: #048eb0;
        color:#fff;
        text-align: center;
    }
    table.table-list td::before{
        content: attr(data-label);
        /* background-color: #e6f1f6; */
        background-color: #048eb0;
        color: #fff;
        font-weight: bold;
        display: inline-block;
        width: 20%;
        min-width: 4em;
        text-align: center;
        margin-right: 0.5em;
        padding: 4px;
        border-radius: 3px;
    }
    table.table-list td:first-child::before {
        content: none; /* 先頭のtdだけ非表示に */
    }
    table.table-list tr {
        border-bottom: double 3px #d7d7d7 !important;
    }
    .check-label{
        padding-left: 4px;
        font-size: 13px;
        font-weight: normal;
        position: absolute;
        top: 4px;
        left: 16px;
    }
    .star5-rating-comment{
        font-size: 10px !important;
    }

    /* レビューコメントテーブル */
    table.table-review-comment{
        font-size:12px;
    }
    .star5-rating-comment{
        font-size: 12px !important;
    }

    /* contactform7 */
    .pcdate{
        display: none;
    }

    .table-form,
    .table-show,
    .book_review {
        margin: 20px auto;
        margin-bottom: 30px;
        border: 0 !important;
        vertical-align: middle;
        width: 100%;
    }

    .table-show {
        margin: auto;
        border: 0 !important;
        vertical-align: middle;
        width: 100%;
    }

    .inner{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* テーブルの見出しとフォーム */
    table.table-form th,table.table-form td {
       display:block;
       padding:0.8em 0!important;
       width:100%;
       border:0;
    }

    /* テーブルの見出しとフォーム */
    table.table-form tr {
        padding-top:0.8em !important;
    }

    /* 送信ボタン */
    input.wpcf7-submit{
       margin-bottom:30px;
       width:100%;
    }
}
@media(min-width: 768px) and (max-width: 991px) {
    /* 一覧テーブル */
    table.table-list {
        font-size:10px;
    }
    .btn-delete{
        width: 24px;
        height: 24px;
    }
    .btn-edit {
        width: 24px;
        height: 24px;
    }
    .btn-show {
        width: 24px;
        height: 24px;
    }
    .star5-rating-list{
        font-size: 10px !important;
    }
    /* レビューコメントテーブル */
    table.table-review-comment{
        font-size:12px;
    }
    .star5-rating-comment{
        font-size: 12px !important;
    }

    .flexbox{
        width: 100%;
        display: flex;
    }
    .inner{
        flex-grow: 1;
        width: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .spdate{
        display: none;
    }
    /* 日付タグの幅を調整 */
    .wpcf7-date.dateform{
        width: 25%;
    }

    /*テーブル下に余白.枠線・テキストの行間 */
    .table-form {
        margin: 10px auto;
        margin-bottom: 30px;
        border: 0 !important;
        vertical-align: middle;
        width: 600px;
    }
    .table-show {
        margin: 10px auto;
        margin-bottom: 30px;
        border: 0 !important;
        vertical-align: middle;
        width: 800px;
    }
    .book_review {
        margin: 30px 0 20px 0;
        margin-bottom: 30px;
        border: 0 !important;
        vertical-align: middle;
        width: 100%;
    }
    /* 一覧テーブルしましま */
    table.table-list tr:nth-child(even) {
        background-color: #f0f0f0;
    }
    /* 一覧テーブル　ホバーとセレクトカラー */
    table.table-list tr:hover {
        background-color: #c8e1ee !important;
    }
    table.table-list tbody tr.selected {
        background-color: #c8e1ee;
    }
    /* 一覧テーブルチェックボックス横の書籍ID非表示 */
    .check-label{
        display: none;
    }
}
@media(min-width:992px){
    .flexbox{
        width: 100%;
        display: flex;
    }
    .inner{
        flex-grow: 1;
        width: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .spdate{
        display: none;
    }
    /* 日付タグの幅を調整 */
    .wpcf7-date.dateform{
        width: 25%;
    }

    /*テーブル下に余白.枠線・テキストの行間 */
    .table-form {
        margin: 10px auto;
        margin-bottom: 30px;
        border: 0 !important;
        vertical-align: middle;
        width: 600px;
    }
    .table-show {
        margin: 10px auto;
        margin-bottom: 30px;
        border: 0 !important;
        vertical-align: middle;
        width: 800px;
    }
    .book_review {
        margin: 30px 0 20px 0;
        margin-bottom: 30px;
        border: 0 !important;
        vertical-align: middle;
        width: 100%;
    }
    /* 一覧テーブルしましま */
    table.table-list tr:nth-child(even) {
        background-color: #f0f0f0;
    }
    /* 一覧テーブル　ホバーとセレクトカラー */
    table.table-list tr:hover {
        background-color: #c8e1ee !important;
    }
    table.table-list tbody tr.selected {
        background-color: #c8e1ee;
    }
    /* 一覧テーブルチェックボックス横の書籍ID非表示 */
    .check-label{
        display: none;
    }
}

/*ContactForm7カスタマイズ*/
/*
****
    登録編集画面のテーブルデザイン
****
*/
/* 自動入力されるPタグを無効にする */
.table-form p,
.table-show p,
.table-comment p{
    display: inline;
}
.table-show {
    border-collapse: separate; /* セルの境界を分ける */
    border-spacing: 20px; /* セルの間隔を設定 */
}
/* テーブルの最終行は下線を表示させない */
table.table-form tr:last-child {
    border: 0 !important;
}
/* テーブルの下線を表示させない */
table.table-show tr,
table.book_review tr  {
    border: 0 !important;
}
/* テーブルの見出し側 */
.table-form th{
    border: 0 !important;
    text-align: left;
    padding: 1em 0.5em;
    background: #fff;
    white-space: nowrap;
    width: 150px;
    font-weight: bold;
}
.table-show th{
    /* border-bottom: solid 1px #d7d7d7;	 */
    border-right: 0 !important;
    text-align: left;
    padding: 30px 10px 5px 0px;
    /* background: #fff; */
    white-space: nowrap;
    font-weight: bold;
    color: #048eb0;
    /* color: #F49431; */
    /* color: #002B48; */
    padding: 0.5rem 1rem;
    border-left: 3px solid #048eb0;
    /* border-left: 3px solid #F49431; */
    /* border-left: 3px solid #002B48; */
    background: #f4f4f4;
    /* background:rgba(4,142,176,0.1); */
    /* background:rgba(0,43,72,0.1); */
}
.book_review th{
    height: 20px;
    /* border-bottom: solid 1px #d7d7d7;	 */
    border-right: 0 !important;
    text-align: left;
    padding: 30px 10px 5px 0px;
    /* background: #fff; */
    white-space: nowrap;
    font-weight: bold;
    color: #048eb0;
    /* color: #F49431; */
    /* color: #002B48; */
    padding: 0.5rem 1rem;
    border-left: 3px solid #048eb0;
    /* border-left: 3px solid #F49431; */
    /* border-bottom: 3px solid #002B48; */
    background: #f4f4f4;
    /* background:rgba(4,142,176,0.1); */
    /* background:rgba(0,43,72,0.1); */
}
/* 必須と任意タグ */
.input-req,.input-opt{
    font-size: 1.2rem;
    padding: 2px 5px 2px 5px ;
    background :#F49431;
    /* background :#d9376e; */
    color: #fff;
    border-radius: 3px;
    margin-right: 5px;
}
/* 任意タグの背景カラー */
.input-opt{
    background: #002B48;
    color: #fff;
}
/* テーブルフォーム側 */
.table-form td{
    border: 0 !important;
    padding: 1.5em 0.5em;
}
.table-show td{
    border: 0 !important;
    padding: 0px 10px 20px 10px;
}
.book_review td{
    font-size: 18px;
    border: 0 !important;
    padding: 0px 10px 20px 10px;
}
/* 入力エリア幅最大 */
.wpcf7-form-control {
    width: 100%;
}

/* フォーム入力欄の余白・背景カラー・枠線消す指定 */
.table-form input,.table-form select {
    background:#fafafa;
    border: solid 1px #d7d7d7;
    border-radius: 3px;
}
.table-form textarea {
    background:#fafafa;
    border: solid 1px #d7d7d7;
    border-radius: 3px;
}
.table-form input:focus {
    border: solid 2px #002B48 !important;
    outline: none;
}
.table-form textarea:focus {
    border: solid 2px #002B48 !important;
    outline: none;
}


/* 読み取り専用のinputフィールドのスタイル */
.table-form input[readonly],
.table-show input[readonly],
.table-comment input[readonly] {
    background-color: #fff;
    border: none !important;
    outline: none;
    cursor: default;
}

.table-form textarea[readonly],
.table-show textarea[readonly],
.table-comment textarea[readonly] {
    background-color: #fff;
    /* border: none !important; */
    outline: none;
    cursor: default;
}

.table-form input[readonly]:focus,
.table-show input[readonly]:focus,
.table-comment input[readonly]:focus {
    border: none !important;
    outline: none;
}


/* ラジオボタンのデザイン */
.custom-radio input[type=radio] {
    display: none;
}

.custom-radio span.wpcf7-list-item {
    margin-left: 0;
}

.custom-radio span.wpcf7-list-item ~ span.wpcf7-list-item {
    margin-left: 20px;
}

.custom-radio input[type=radio] + .wpcf7-list-item-label,
.table-show input[type=radio] + .wpcf7-list-item-label {
    padding-left: 2em;
    display: inline-block;
    position: relative;
    font-weight: normal;
}

.custom-radio input[type=radio] + .wpcf7-list-item-label::after,
.table-show input[type=radio] + .wpcf7-list-item-label::after,
.table-form input[type=radio] + .wpcf7-list-item-label::before,
.table-show input[type=radio] + .wpcf7-list-item-label::before {
    content: '';
    display: block;
    position: absolute;
    border: 1px solid #AAAAAA;
    width: 20px;
    height: 20px;
    top: 0;
    left: 0;
    border-radius: 50%;
}

.custom-radio input[type=radio] + .wpcf7-list-item-label::after,
.table-show input[type=radio] + .wpcf7-list-item-label::after {
    opacity: 0;
    width: 14px;
    height: 14px;
    top: 3px;
    left: 3px;
    border: none;
    background: #002B48;
}

.custom-radio input[type=radio]:checked + .wpcf7-list-item-label {
    color: #002B48;
    font-weight: bold;
}

.custom-radio input[type=radio]:checked + .wpcf7-list-item-label::after {
    opacity: 1;
}

/* disabled時のスタイル */
.custom-radio input[type=radio]:disabled + .wpcf7-list-item-label {
    color: #666;
}

.custom-radio input[type=radio]:disabled + .wpcf7-list-item-label::after {
    background-color: #666;
}

/* 評価設定用の星ラジオボタン */
.radio-star input[type=radio] {
    display: none;
}
.my-wrap {
    position: relative;
}
.my-wrap .wpcf7-form-control-wrap {
    position: static !important;
}
.radio-star .wpcf7-list-item {
    position: absolute;
    top: 0px;
    left: 0px;
}
.radio-star .wpcf7-list-item-label {
    color: lightgray;
    font-size: 20px;
    letter-spacing: 5px;
    cursor: pointer;
}
.radio-star .wpcf7-list-item:hover .wpcf7-list-item-label,
.radio-star .wpcf7-list-item:hover ~ .wpcf7-list-item .wpcf7-list-item-label,
.radio-star .wpcf7-list-item.checked .wpcf7-list-item-label,
.radio-star .wpcf7-list-item.checked ~ .wpcf7-list-item .wpcf7-list-item-label {
    color: #F49431;
}

/* チェックボックスのデザイン */
.custom-checkbox input[type=checkbox] {
    display: none;
}

.custom-checkbox span.wpcf7-list-item,
.table-show span.wpcf7-list-item {
    margin-left: 0;
}

.custom-checkbox span.wpcf7-list-item ~ span.wpcf7-list-item {
    margin-left: 10px;
}

.custom-checkbox input[type=checkbox] + .wpcf7-list-item-label {
    padding-left: 1.7em;
    display: inline-block;
    position: relative;
    font-weight: normal;
}

.custom-checkbox input[type=checkbox] + .wpcf7-list-item-label::after,
.custom-checkbox input[type=checkbox] + .wpcf7-list-item-label::before {
    content: '';
    display: block;
    position: absolute;
    border: 1px solid #AAAAAA;
    width: 20px;
    height: 20px;
    top: 0;
    left: 0;
}

.custom-checkbox input[type=checkbox] + .wpcf7-list-item-label::after {
    opacity: 0;
    width: 10px;
    height: 15px;
    transform: rotate(45deg);
    left: 5px;
    border: none;
    border-right: 3px solid #002B48;
    border-bottom: 3px solid #002B48;
}

.custom-checkbox input[type=checkbox]:checked + .wpcf7-list-item-label {
    color: #002B48;
    font-weight: bold;
}

.custom-checkbox input[type=checkbox]:checked + .wpcf7-list-item-label::after {
    opacity: 1;
}

/* 詳細画面でdisabledにしたチェックボックスのチェックしていない項目を薄くする */
.checkbox-disabled input[type=checkbox]:not(:checked) + .wpcf7-list-item-label {
    opacity: 0.4;
}

/* disabled時のスタイル */
.custom-checkbox input[type=checkbox]:disabled + .wpcf7-list-item-label {
    color: #666;
}

.custom-checkbox input[type=checkbox]:disabled + .wpcf7-list-item-label::after {
    border-right: 3px solid #666;
    border-bottom: 3px solid #666;
}

/* ツールチップ */
.tooltip .tooltip-inner {
    background-color: #002B48;
    color: #fff;
    width: 300px;
}
.tooltip.top .tooltip-arrow {
    border-top-color: #002B48;
 }
.tooltip.bottom .tooltip-arrow {
    border-bottom-color: #002B48;
 }
.tooltip.left .tooltip-arrow {
    border-left-color: #002B48;
}
.tooltip.right .tooltip-arrow {
    border-right-color: #002B48;
}

/* 購入依頼フォームの追加使用者枠 */
.add-user-group{
    margin: 10px 0 0 0;
}
.add-user-group p {
    display: block;
}

/* 送信ボタンのデザイン */
.wpcf7-submit{
    display: block;
    margin: 10px auto;
    width: 80%;
    height: 2.5em;
    background: #048EB0 !important;
    color: #fff;
    font-size: 15px;
    border-radius: 5px;
    border: none;
    transition: background-color 0.3s ease;
}
.wpcf7-submit:hover{
    color: #fff;
    background: #005777 !important;
}
.wpcf7-submit:disabled {
    background: #ccc !important;
}

/* フォーム上部に表示されるエラーメッセージを非表示 */
/* .screen-reader-response {
    display: none;
} */

/* フォーム内バリデーションエラーメッセージのデザイン */
.wpcf7-not-valid-tip{
    box-sizing: border-box;
    border-radius: 5px;
    background-color: #F49431;
    color: #fff;
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 10px;
    padding: 5px 10px;
    position: relative;
}
.wpcf7-not-valid-tip::before{
    content: "";
    border: 10px solid transparent;
    border-bottom: 15px solid #F49431;
    position: absolute;
    top: -20px;
    left: 5%;
}

/* 送信後メッセージのデザイン */
/* 送信ボタン下成功時 */
.wpcf7 form.sent .wpcf7-response-output {
    background:rgba(4,142,176,0.2);
    /* color: #28a745; */
    color: #048eb0;
    padding: 10px 15px;
    border-radius: 5px;
    border: none;
}
.wpcf7 form.sent .wpcf7-response-output:before {
    content: "\f058";
    display: inline-block;
    /* color: #28a745; */
    color: #048eb0;
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    font-size: 1.2em;
    margin-right: 10px;
}
/* 送信ボタン下未入力警エラーまたはサーバーエラー */
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    background:rgba(220,53,69,0.2);
    color: #dc3545;
    padding: 10px 15px;
    border-radius: 5px;
    border: none;
}
.wpcf7 form.aborted .wpcf7-response-output:before,
.wpcf7 form.invalid .wpcf7-response-output:before,
.wpcf7 form.unaccepted .wpcf7-response-output:before {
    content: "\f071";
    display: inline-block;
    color: #dc3545;
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    font-size: 1.2em;
    margin-right: 10px;
}

/* スピナー非表示（送信後メッセージが下に行き過ぎるため） */
div.wpcf7 .wpcf7-spinner {
    display: none !important;
}

/* タブのデザイン */
.tab-wrap {
    display: flex;
    flex-wrap: wrap;
    margin:20px 0;
}
.tab-wrap:after {
    content: '';
    width: 100%;
    height: 3px;
    background: #048eb0;;
    display: block;
    order: -1;
}
.tab-label {
    color: White;
    background: LightGray;
    font-weight: bold;
    white-space: nowrap;
    text-align: center;
    padding: 10px .5em;
    order: -1;
    position: relative;
    z-index: 1;
    cursor: pointer;
    border-radius: 5px 5px 0 0;
    flex: 1;
}
.tab-label:not(:last-of-type) {
    margin-right: 5px;
}
.tab-content {
    width: 100%;
    height: 0;
    overflow: hidden;
    opacity: 0;
}
.tab-switch:checked+.tab-label {
    background: #048eb0;
}
.tab-switch:checked+.tab-label+.tab-content {
    height: auto;
    overflow: auto;
    padding: 15px;
    opacity: 1;
    transition: .5s opacity;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.tab-switch {
    display: none;
}

/* コメントフォームのテーブルデザイン */
.table-comment{
    border-collapse: collapse;
    width: 100%;
    overflow: hidden;
    border: 0 !important;
}
.table-comment tr{
    border: 0 !important;
}
.table-comment td{
    border: 0 !important;
}
/* コメントラベル */
.input-req-comment{
    border-right: 0 !important;
    text-align: left;
    white-space: nowrap;
    /* font-weight: bold; */
    color: #048eb0;
}
.div-comment{
    padding: 10px 20px 10px 20px;
    border-bottom: solid 1px #d7d7d7;
}
.span-comment{
    margin-left: 20px;
}
.p-comment{
    margin: 5px 0 5px 0;
}

/* star-rating　コメントレビュー歴内表示用 */
.star5-rating-comment{
    position: relative;
    z-index: 0;
    display: inline-block;
    white-space: nowrap;
    color: LightGray;
    font-size: 15px;
}
.star5-rating-comment:before, .star5-rating-comment:after{
    content: '★★★★★';
}
.star5-rating-comment:after{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
    color: #F49431;
}
.star5-rating-comment[data-rate="5"]:after{ width: 100%; } /* 星5 */
.star5-rating-comment[data-rate="4"]:after{ width: 80%; } /* 星4 */
.star5-rating-comment[data-rate="3"]:after{ width: 60%; } /* 星3 */
.star5-rating-comment[data-rate="2"]:after{ width: 40%; } /* 星2 */
.star5-rating-comment[data-rate="1"]:after{ width: 20%; } /* 星1 */
.star5-rating-comment[data-rate="0"]:after{ width: 0%; } /* 星0 */

/* star-rating　図書一覧内表示用 */
.star5-rating-list{
    position: relative;
    z-index: 0;
    display: inline-block;
    white-space: nowrap;
    color: LightGray;
    font-size: 15px;
}
.star5-rating-list:before, .star5-rating-list:after{
    content: '★★★★★';
}
.star5-rating-list:after{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
    color: #F49431;
}
.star5-rating-list[data-rate="5"]:after{ width: 100%; } /* 星5 */
.star5-rating-list[data-rate="4"]:after{ width: 80%; } /* 星4 */
.star5-rating-list[data-rate="3"]:after{ width: 60%; } /* 星3 */
.star5-rating-list[data-rate="2"]:after{ width: 40%; } /* 星2 */
.star5-rating-list[data-rate="1"]:after{ width: 20%; } /* 星1 */
.star5-rating-list[data-rate="0"]:after{ width: 0%; } /* 星0 */

/* END CUSTOM R-TSUCHIYA */

/* テーマカラー変更ここから */
.suggestionsbox {
	/* 検索フォームの予測変換リストを非表示 */
/*	position: absolute;
	left: 0px;
	top: 20px;
	margin: 35px 0px 0px 0px;
	width: 100%;
    max-width: 50%;
	padding: 0px;
	background-color: #fff;
	border: 1px solid #D1D1D1;
	color: #fff;
	z-index: 999;
	box-shadow: 1px 0 1px #B0B0B0;*/
}
.header-text {
    color: #048eb0;
}
.searchwrap {
    background: none repeat scroll 0 0 #048eb0;
}
a {
    color: #048eb0;
}
a:hover, a.wid-cat-title p:hover, a:focus {
    color: #05b6e2 !important;
}
h1, h2, h3, h4, h5, h6 {
    font-family: メイリオ, Meiryo, sans-serif;
    color: rgb(4, 142, 176);
}
#home-main .page-catheader .page-title {
    color: #048eb0;
}
#footer {
    background: #048eb0 !important;
}
.content-according li {
    color: #048eb0;
}
.current_page_item a {
    color: rgb(4, 142, 176) !important;
}
ul li {
    color: #048eb0;
}

.cat-title {
    color: #048eb0;
}
.cat-title span {
    color: #048eb0;
}
.cat-heading a {
    color: #048eb0;
}

.single-post .cat-title {
    color: #048eb0;
    font-family: メイリオ, Meiryo, sans-serif;
    font-size: 32px;
}
body {
    font-family: メイリオ ,Meiryo, sans-serif;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 500;
    line-height: 1.1;
}

.post_content ul, ol {
    margin-top: 0;
    margin-bottom: 10px;
    padding-inline-start: 20px !important;
    color: #333 !important;
}
.post_content ul li , ol li {
    color: #333 !important;
}

#commentform input[type='submit'] {
    background: #048eb0;
}

.sidebar-heading {
    color: #ffffff;
    position: relative;
    margin: 0;
    padding: 10px 10px;
    background: #048eb0;
    border-radius: 3px;
}
.sidebar li {
    padding-left: 16px;
}

/* サイドバー非表示 */
div.col-sm-8 {
	width: 90%;
}
div#sidebar1 {
	display: none;
}

/* ヘッダのHOME, SITEMAPを非表示 */
/*li.page-item-902, li.page-item-127, li.page-item-2504 {*/
li.page-item-902, li.page-item-2504 {
	display: none;
}

.navbar-default .navbar-nav > li > a {
	color: #048eb0;
}

/* 検索フォームの予測変換リストを非表示 */
#suggestionslist, #suggestions {
	display: none;
}

/* 社員インタビュー */
.wp-audio-shortcode {
    width: 300px !important;
    /* margin-left: 20px; */
}

div.wp-video {
	width: 640px !important;
}

img.lcp_thumbnail {
    position: absolute;
    left: 0;
    top: 0;
}

ul.lcp_catlist {
    list-style-type: none;
    /* margin-left: 16px; */
	 padding-inline-start: 0 !important;
}

ul.lcp_catlist li {
    position: relative;
    height: 160px;
    margin: 10px 0;
    padding-left: 172px;
    border-bottom: #ccc solid 1px;
    display: flex;
    flex-flow: column;
	  overflow: auto;
}

ul.lcp_catlist li a {
	font-size: 20px;
    display: block;
    width: 100%;
	padding-bottom: 8px;
	font-family: メイリオ, Meiryo, sans-serif;
}

div.lcp-customfield {
    background: url(http://hg-info.homegrowin.jp/wp-content/uploads/2024/04/circle_icon01.png) no-repeat 0px 4px;
    padding-left: 14px;
}

.lcp_private {
	display: none;
}

@media (max-width: 500px) {
    ul.lcp_catlist li {
        /* padding-left: 160px; */
        padding-left: 132px;
        overflow: hidden;
        height: 130px;
    }
    ul.lcp_catlist li a {
        font-size: 14px;
        width: auto;
        padding-bottom: 4px;
    }
    /*
    .lcp_except h3 {
        font-size: 10px;
    }*/
    .lcp-customfield {
        font-size: 11px;
    }
    img.lcp_thumbnail {
        width: 120px;
    }
    div.col-sm-8 {
        width: 100%;
    }
}

/* START ADDCUSTOM R-TSUCHIYA */
.load {
	background-image: url(./img/loader-blue.gif);
	background-position: right 180px center;
	background-repeat: no-repeat;
}
.single_cat_image {
    display: none;
}

.btn-info {
	color: #048eb0;
}
.btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .open .dropdown-toggle.btn-info {
	color: #048eb0 !important;
}
.btn-info:active, .btn-info.active {
	color: #048eb0 !important;
}

.navbar .navbar-nav > .active > a {
	color: #048eb0;
}
.navbar .navbar-nav > .active > a:hover, .navbar .navbar-nav > .active > a:focus {
	/* color: #048eb0; */
    color: #05b6e2;
}

.current-menu-item > a {
	color: #048eb0 !important;
}

.suggestionlist ul li:hover {
	/* color: #048eb0; */
    color: #05b6e2;
}
.suggestionlist ul li a:hover {
	/* color: #048eb0; */
    color: #05b6e2;
}

.navbar-toggle {
	background-color: #048eb0;
	border-color: #048eb0;
}
.navbar-default .navbar-toggle {
	border-color: #048eb0 !important;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
	background-color: #048eb0 !important;
    /* background-color: #05b6e2 !important; */
}

@media (max-width: 767px) {
	.mywiki-header-menu a:hover, .mywiki-header-menu a:focus {
		/* color: #048eb0 !important; */
        color: #05b6e2 !important;
	}
	.mywiki-header-menu li> a {
		color: #048eb0;
	}
	.mywiki-header-menu li> a:hover {
		/* color: #048eb0; */
        color: #05b6e2;
	}
}

.wp-caption {
	background: none repeat scroll 0 0 #048eb0;
}
.search-submit{
    background: #048eb0;
}
.header-text {
	color: #048eb0;
}

@media (max-width: 359px) {
	#home-main .page-catheader .page-title {
		color: #048eb0;
	}
}
/* テーマカラー変更ここまで */

/* START PS Auto Sitemap style プラグインのCSSが読み込めないためここに転記、スタイル変更時は編集が必要（現：ビジネス）　 */
#sitemap_list {
	background: #fff;
	margin: 0;
	padding: 0;
}
#sitemap_list li.home-item {
	margin-left: 0px;
}
#sitemap_list li {
	background: url(./img/business/line_dotted_brown.png) repeat-x 0 1.8em;
	font-size: medium;
	text-indent: 0;
	padding: 0 0 12px 0px;
	margin: 12px 0;
	list-style-type: none;
}
#sitemap_list li a {
	color: #666;
	background: url(./img/business/ico_lv1.png) no-repeat left center;
	text-decoration: none;
	display: inline-block;
	padding-left: 25px;
	line-height: 32px;
	}
#sitemap_list li li {
	font-size: small;
	background: none;
	margin: 7px 0 0 0;
	padding: 1px 0 0 27px;
}
#sitemap_list li li a {
	background: url(./img/business/ico_lv2.png) no-repeat left center;
	padding-left: 15px;
	line-height: normal;
}
#sitemap_list li li li {
	padding-left: 15px;
}
#sitemap_list li li li a {
	background: url(./img/business/ico_lower_lv.png) no-repeat left center;
}

#sitemap_list ul {
	padding: 0;
	margin: 0;
}
#sitemap_list .posts_in_category {
	position: absolute;
	padding-left: 10px;
	padding-top: 3px;
}
#sitemap_list li li .posts_in_category {
	padding-top: 0;
}

#sitemap_list li .posts_in_category a {
	background: #fff url(./img/business/ico_post_list.png) no-repeat center;
	text-indent: -9999px;
	display: block;
	width: 1.2em;
	height: 1.2em;
	border: solid 1px #ccc;
	padding: 0;
}
/* END PS Auto Sitemap style */

/* END ADDCUSTOM R-TSUCHIYA */