@charset "utf-8";

/*////////////////////////////////////////////////
material
////////////////////////////////////////////////*/

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "Helvetica Neue", Arial, sans-serif, -apple-system BlinkMacSystemFont;
}


/*　検索ボタン */

#search_form .search_button button {
    height: 48px;
    font-size: 1.25rem;
    color: #FFFFFF;
    background: #006563;
    border-radius: 10px;
    background-position: left 16px center;
    background-repeat: no-repeat;
    background-size: 25px 25px;
    background-image: url("../images/icon_searchbtn.svg");
    border: none;
    cursor: pointer;
}

.search_button button:hover {
    opacity: 0.8;
    transition: 0.5s;
    color: #ffffff !important;
    cursor: pointer;
}

.search_button button:focus {
    outline:solid 2px #454545 !important;
    outline-offset:2px;
}


/*　いいねボタン */

.like_btn {
    position: relative;
    width: 160px;
    height: 48px;
    background-color: white;
    border-radius: 10px;
    border: #006563 2px solid;
}

.like_btn_on {
    position: relative;
    width: 160px;
    height: 48px;
    background-color: #189A94;
    border-radius: 10px;
    border: #189A94 2px solid;
}

.like_btn p,
.like_btn span,
.like_btn_on p,
.like_btn_on span {
    color: #006563;
    padding-left: 1rem;
    font-size: 1.25rem;
    text-align: center;
}

.like_btn_on p,
.like_btn_on span {
    color: white;
}

.like_btn div::before,
.like_btn span::before {
    content: "";
    height: 28px;
    width: 32px;
    left: 16px;
    background-color: #006563;
    -webkit-mask-image: url("../images/icon_like_btn.svg");
    -webkit-mask-repeat: no-repeat;
    mask-image: url("../images/icon_like_btn.svg");
    mask-repeat: no-repeat;
    position: absolute;
}

.like_btn_on div::before,
.like_btn_on span::before {
    content: "";
    height: 33px;
    width: 41px;
    top: 1px;
    left: 16px;
    background-color: white;
    -webkit-mask-image: url("../images/icon_like_btn_on.svg");
    -webkit-mask-repeat: no-repeat;
    mask-image: url("../images/icon_like_btn_on.svg");
    mask-repeat: no-repeat;
    position: absolute;
}

/*---　いいねカウント  ---*/
/*位置調整*/
.likecount,
.likecount.likecount_on {
    position: absolute;
    top: 100%;
    right: 0;
    width: fit-content;
    min-width: 213px;
    height: 48px;
    margin-top: 18px;
}
.likecount  {
    background-color: white;
    border-radius: 5px;
    border: #006563 2px solid;
    padding-top: 6px;
    text-align: center;

}

.likecount ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0;
}

.likecount ul li{
   width:100%;
}

.likecount.likecount_on {
    background-color: #189A94;
    border-radius: 5px;
    border: #189A94 2px solid;
}

.likecount p{
    font-size: 1.25rem;
    text-align: center;
    color: #006563;
}

.likecount p.count,
.likecount.likecount_on  p.count{
    text-align: center;
    width: fit-content;
    min-width: 90px;
    padding: 0 6px;
   }

.likecount  p:not(.count){
    width: 85px;
    position: relative;
    padding-right: 5px;
    margin-left: 34px;
}

.likecount p:not(.count)::after{
    display: block;
    position: absolute;
    content: "|";
    top: 0;
    right: -3px;
    color:#006563;
}

   .likecount.likecount_on  p:not(.count)::after{
    display: block;
    position: absolute;
    content: "|";
    top: 0;
    right: -3px;
    color: #fff;
}

.likecount::before {
    content: "";
    height: 28px;
    width: 32px;
    left: 8px;
    background-color: #006563;
    -webkit-mask-image: url("../images/icon_like_btn.svg");
    -webkit-mask-repeat: no-repeat;
    mask-image: url("../images/icon_like_btn.svg");
    mask-repeat: no-repeat;
    position: absolute;
}

.likecount.likecount_on::before {
    content: "";
    height: 33px;
    width: 41px;
    top: 1px;
    left: 8px;
    background-color: white;
    -webkit-mask-image: url("../images/icon_like_btn_on.svg");
    -webkit-mask-repeat: no-repeat;
    mask-image: url("../images/icon_like_btn_on.svg");
    mask-repeat: no-repeat;
    position: absolute;
}

.likecount.likecount_on p {
    color: white;
}

.likecount.likecount_on p::before {
    display: none;
}

/* 詳細ページ遷移ボタン */

.content_detail {
    margin-top: 2rem;
}

.content_detail a.btn::after {
    content: '';
    position: absolute;
    right: 16px;
    width: 25px;
    height: 25px;
    background-image: url("../images/icon_arrow_down_ci.svg");
    background-repeat: no-repeat;
    background-size: 25px 25px;
    transform: rotate(-90deg);
}

/*-- greenbtn hover--*/
.new_comment_btn.btn_greenhover:hover,
.new_content_btn.btn_greenhover:hover,
.btn_greenhover:hover,
.btn_greenhover>a:hover {
    opacity: 0.8;
    transition: 0.5s;
    color: #ffffff !important;
    cursor: pointer;
}

/* 連絡を取るボタン */

#memberprofile_data .contact {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 190px;
    height: 42px;
    border-radius: 5px;
    background-color: #006563;
    color: white;
}

#memberprofile_data .contact a {
    color: #fff;
    text-decoration: none;
    margin-left: -10px;
}

.contact .envelope {
    padding-right: 12px;
    margin-bottom: -3px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}


/* コピーボタン */

.copyBtn button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 190px;
    height: 42px;
    border-radius: 5px;
    background-color: #006563;
    color: white;
}

img.copyBtn {
    width: 20px;
    margin-right: 6px;
}


/* 新規追加ボタン
　新規コメント追加ボタン */

.new_content_btn,
.new_comment_btn{
    width: fit-content;
    min-width: 11.875rem !important;
    height: fit-content;
    min-height: 3rem;
    border-radius: 5px;
    color: white;
    background-color: #006563;
    text-align: center;
    position: relative;
    margin-right: 0 !important;
    font-size: 1.125rem;
    font-weight: 500;
}

.new_comment_btn.inactive,
.new_content_btn ,
.new_comment_btn {
    display: flex;
    align-items: center;
    vertical-align: middle;
    justify-content: center;
}

.new_comment_btn.inactive img,
.new_content_btn img,
.new_comment_btn img{
    margin: 0 8px 0 -18px;
    width: 30px;
}

/* 編集・削除ボタン　サイズはページごとに設定 */

.reply_btn,
.edit_btn,
.delete_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.125rem;
    font-weight: bold;
    letter-spacing: 0.1rem;
    border-radius: 5px;
    border: 2px solid;
}

.reply_btn,
.edit_btn {
    border-color: #006563;
    background-color: #006563;
    color: white;
    text-align: center;
    background-repeat: no-repeat;
    background-size: 30px 30px;
    background-position: left 16px center;
    background-image: url("../images/icon_btn_pen.svg");
    position: relative;
}

/*テキスト位置調整*/
.reply_btn{
    padding-left: 14px;
}

.edit_btn,
.delete_btn {
 padding-left: 4px !important;
}

.reply_btn a,
.edit_btn a {
    color: #fff !important;
    text-decoration: none !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 8px;
}

.delete_btn {
    border-color: #D13737;
    color: #D13737;
    background-repeat: no-repeat;
    background-size: 30px 30px;
    background-position: left 16px center;
    background-image: url("../images/icon_circle_delete.svg");
    position: relative;
}

.delete_btn a {
    color: #D13737 !important;
    text-decoration: none !important;
}

@media (max-width: 480px) {
    .delete_btn,
    .reply_btn,
    .edit_btn{
        background-size: 18px 18px;
        transition-duration: 0.5s;
    }
}

/* リンク範囲設定 */

.reply_btn a,
.edit_btn a,
.delete_btn a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 10px;
    cursor: pointer;
}


/* 公開ステータスアイコン */

.content_info td .public_element,
.content_info td .private_element {
    width: fit-content;
    height: fit-content;
    min-width: 4.375rem;
    min-height: 2.125rem;
    float: left;
}

@media (max-width: 960px) {
    .reply_btn a,
    .edit_btn a,
    .delete_btn a {
        padding-top: 10px;
    }
    .content_info td .public_element,
    .content_info td .private_element {
        width: fit-content;
        height: fit-content;
        min-width: 4.375rem;
        min-height: 2.125rem;
        float: none;
    }
}

/*アイコンとタイトル2段組に変化*/
@media (max-width: 480px) {
    .content_info .bg.statusIcon {
        display: flex;
        flex-direction: column;
    }
    .content_info td.bg:has(span) {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
}

.public_element,
.private_element{
    border: 1px solid;
    height: 34px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap
}

.public_element {
    border-color: #006563;
    margin-right: 10px;
    color: #006563;
}

.private_element {
    border-color: black;
    background-color: lightgray;
    margin-right: 10px;
}

/* 会員プロフィールが未登録 */

.banner_unregistered {
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0 24px;
    text-align: center;
    font-size: 0.875rem;
    font-weight: bold;
}

.banner_unregistered.pc p {
    display: flex;
    align-items: center;
    background-color: #FBDADA;
    color: #AF2C2C;
    text-decoration: underline #AF2C2C;
    -webkit-text-decoration: underline #AF2C2C;
}

.banner_unregistered.pc {
    width: fit-content;
    min-width: 21.5625rem;
}

.banner_unregistered.pc p {
    height: fit-content;
    min-height: 1.875rem;
    padding: 0 12px;
}

@media (max-width: 1040px) and (min-width: 961px) {
    .banner_unregistered.pc {
        height: 100%;
        margin: 0  -52px 0 0;
        font-size: 0.75rem;
        font-weight: bold;
    }
    .banner_unregistered.pc p {
        width: 100%;
        display: flex;
        align-items: center;
        height: 40px;
        padding: 0 6px;
    }
}

@media (max-width: 960px) {
    #tokyo {
        position: relative;
    }
    .banner_unregistered.sp {
        background-color: #FBDADA;
        position: absolute;
        right: -24px;
        min-width: 19rem;
        height: 100%;
        /*margin: 0 24px;*/
        font-size: 0.75rem;
        font-weight: bold;
        overflow: hidden;
    }
    .banner_unregistered.sp p {
        position: absolute;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: fit-content;
        min-height: 1.5625rem;
        margin: -30px 0;
        color: #AF2C2C;
        text-decoration: underline #AF2C2C;
        -webkit-text-decoration: underline #AF2C2C;
    }
}

/*-----  focus ----- */
/*入力部品*/
#industry:focus,
#only-comment:focus,
#period-start:focus,
#period-end:focus,
#freeword:focus,
.like input:focus{
    outline:solid 2px #454545 !important;
    outline-offset:2px;
}

/*button*/
.reply_btn:focus-visible,
.btn_himitsu:focus-visible,
.btn_public:focus-visible,
.like_btn:focus-visible,
.like_btn_on:focus-visible,
.new_content_btn:focus-visible,
.new_comment_btn:focus-visible,
.edit_btn:focus-visible,
.delete_btn:focus-visible{
    outline:solid 2px #454545;
    outline-offset:2px;
}

.copyBtn > button:focus-visible{
    outline:solid 2px #454545;
    outline-offset:2px;
}
button.delete_btn:focus-visible {
    outline:solid 2px #D13737;
    border-radius: 5px;
}

/* faq */
.faq .faq_label:focus-visible,
#faq .faq_label:focus-visible{
    outline:solid 2px #454545;
    outline-offset:2px;
}

/* 下線付きリンク */
a.underline {
    text-decoration: underline;
    color: #006563;
    -webkit-text-decoration: underline #006563;
    display: inline-block;
}

/*////////////////////////////////////////////////
一覧用ブロック
////////////////////////////////////////////////*/


/*-----左テーブル　右サムネイル + ボタン-----*/

/* pc */

@media (min-width: 961px) {
    .list_content_block,
    .list_content_block_catalog {
        margin: 6px 0 24px;
        border-top: 1px solid #717171;
        display: flex;
        flex-direction: row;
    }
    .list_content_block .content_info {
        width: calc(100% - 213px);
    }
    .list_content_block>.content_info {
        display: flex;
        flex-direction: column;
    }
    .list_content_block .addElements {
        position: relative;
        display: flex;
        flex-direction: column;
        height: 100%;
        flex-basis: 213px;
        margin-top: 24px;
    }
    .list_content_block .addElements .content_detail {
        margin-top: 12px;
    }
    .list_content_block .addElements .content_detail a.btn {
        display: block;
        width: 213px;
        font-size: 1.1rem;
        font-weight: bold;
        padding: 0;
        background-color: #bce2e8;
        padding: 1rem 0.75rem 1rem 0;
        text-align: center;
    }
    .addElements .content_detail {
        text-align: right;
    }
}

.list_content_block a,
.list_content_block_catalog a {
    text-decoration: underline;
    color: #006563;
    -webkit-text-decoration: underline #006563;
    display: inline-block;
}

.content_info img {
    /*margin: 30px 20px 30px 0;*/
    margin: 0;
}

.content_info table {
    border-spacing: 0 6px;
    margin-top: 14px;
    padding-right: 6px;
}

.content_info th {
    width: 100px;
    background-color: #224D77;
    color: white;
    font-weight: initial;
    line-break: anywhere;
    text-align: center;
}

.content_info td {
    text-align: left;
    line-height: 2rem;
    padding: 0 12px;
    line-break: anywhere;
}

.content_info td.bg {
    display: flex;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 500;
    padding-left: 20px;
    align-content: center;
    flex-direction: row;
    justify-content: flex-start;
}

.content_info td.sm {
    font-size: 1rem;
    font-weight: 500;
}

.content_info td p {
    height: 100%;
    padding: 0;
    margin: 0;
}

.content_detail {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* 最終更新者 */
.content_info td.bg:has(.update_account_name){
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.content_info td.bg p.update_account_name{
    width: 340px;
    max-width: 100%;
    margin-left: 24px;
    overflow-wrap: anywhere;
}

@media (max-width: 960px) {
    .content_info td.bg:has(.update_account_name){
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    .content_info td.bg p.update_account_name{
        width: 100%;
        margin-left: 0;
    }
}

/*--- データ検索用 レイアウト調整---*/
/*ボタンサイズ分調整*/
#catalog .content_info{
   width: calc(100% - 117px);
}

.content_info table.catalog {
    display: block;
    border-collapse: separate;
    border-spacing: 5px;
    width: 100%;
}

.content_info table.catalog th {
    width: 160px;
    background-color: #224D77;
    color: white;
    font-weight: initial;
    line-break: anywhere;
    text-align: center;
}

@media (max-width: 960px) {
    .content_info table.catalog th {
        width: 100px;
        background-color: #224D77;
        color: white;
        font-weight: initial;
        line-break: anywhere;
        text-align: center;
    }
    .content_info table.catalog {
        margin-bottom: 16px;
    }
    .content_info table.catalog td.bg {
        padding-left: 8px;
    }
}


/*さらに詳細な検索をする*/

#connectlinkArea {
    width: 100%;
    max-width: 1000px;
    height: fit-content;
    text-align: right;
    margin: 0 auto;
    margin-top: -12px;
    padding: 0;
}

.connectlink {
    display: flex;
    justify-content: flex-end;
}

.connectlink a {
    display: block;
    font-weight: bold;
    text-decoration: underline;
    color: #006563;
    -webkit-text-decoration: underline #006563;
    position: relative;
}

#connectlinkArea .round_arrow {
    width: 28px;
    height: 28px;
    padding: 2px 7px;
    border-radius: 16px;
    border: 1px solid #017D79;
    background-color: white;
    margin-left: 12px;
}

@media (max-width: 960px) {
    #connectlinkArea {
        width: 100%;
        text-align: center;
        padding: 0 16px;
        margin-bottom: 16px;
    }
    .connectlink {
        display: flex;
    }
}


/*--- 会員一覧用 レイアウト調整---*/

#member_list .list_content_block,
#mypage_casestudy .list_content_block,
.list_content_block_catalog {
    border-top: 1px solid #717171;
}

#member_list .list_content_block:last-child,
#mypage_casestudy .list_content_block:last-child,
.list_content_block_catalog:last-child {
    padding-bottom: 24px;
}

@media (max-width: 960px) {
    .list_content_block_catalog:last-child {
        padding-bottom: 0;
    }
}


/*会員一覧のリスト内ブロック*/

@media (max-width: 960px) {
    .inner {
        width: 100%;
    }
    .content_detail a.btn {
        display: block;
        padding: 1.2rem 0;
    }
    .list_content_block:last-child,
    .list_content_block_catalog:last-child {
        border-bottom: none !important;
        margin-bottom:40px;
    }
}

@media (min-width: 961px) {
    .list_content_block,
    .list_content_block_catalog {
        display: flex;
    }
    .content_detail {
        text-align: right;
    }
    .content_detail a.btn {
        padding: 1rem 5rem;
    }
    .list_content_block .content_info {
        width: calc(100% - 213px)
    }
    .btnAreabottom {
        width: 100%;
        margin: 20px 0;
    }
}

.list_content_block,
.list_content_block.lines-2:nth-child(1){
    border-top: 1px solid #717171;
    position: relative;
    margin-bottom: 14px;
}

.list_content_block:last-child,
.list_content_block_catalog:last-child {
    border-bottom: 1px solid #717171;
}


/*new icon*/

.addElements {
    position: relative;
}

.list_content_block .new_badge {
    position: absolute;
    top: -12px;
    left: 0;
    width: 55px;
    height: 52px;
}

.list_content_block .addElements {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

@media (max-width: 960px) {
    #list_count p.new_icon_text {
        padding-bottom: 16px;
    }
    .list_content_block .new_badge {
        left: calc(50% - 106px);
    }
    .list_content_block .addElements {
        display: flex;
        flex-direction: column;
        height: auto;
        flex-basis: 0;
        margin: 24px 0;
        justify-content: center;
        align-items: center;
    }
    .content_detail {
        width: 100%;
        position: relative;
    }
}

.addElements .like_btn,
.addElements .like_btn_on {
    margin: 24px auto;
    right: 0;
}


/*-----左テーブル　右サムネイル + ボタン + 編集ボタン-----*/

@media (min-width: 961px) {
    .list_content_block.lines-2 {
        flex-wrap: wrap;
    }
}


/*////////////////////////////////////////////////
テキスト省略
////////////////////////////////////////////////*/


/* タイトル */

td .myutlilize_title {
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* 詳細 */

td .details {
    -webkit-line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/*データプレビュー_タイトル*/

td .date_name {
    -webkit-line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/*データプレビュー_概要*/

.preview_table td .details {
    -webkit-line-clamp: 6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/*登録済みカタログ一覧_タイトル*/

td .catalog_name {
    -webkit-line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/*////////////////////////////////////////////////
カタログ検索ページ
////////////////////////////////////////////////*/


/*カタログ検索_概要*/

td p.details_catalog {
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search_form div.taglist {
    margin-top: 24px;
    margin-bottom: 24px;
}


/*カタログ検索_アコーディオンパーツ部分*/

.accordion-flush {
    background-color: transparent;
}

.accordion-item {
    overflow-wrap: break-word;
    background-color: transparent;
}

.accordion-button {
    font-size: 1.125rem;
    color: #006563 !important;
    font-weight: bold;
}

.accordion-button:focus{
    outline:solid 2px #454545;
    outline-offset: 0;
    border-radius: 3px !important;
}
.accordion-button:hover {
    opacity: 0.6;
    transition: 0.5s;
    background-color: transparent;
}

.accordion-button:hover {
    z-index: 3;
}

.accordion-flush .accordion-item {
    border-bottom: none !important;
}

.accordion-collapse:not(.collapsed) .accordion-body {
    padding-bottom: 16px;
}

.accordion-button.collapsed {
    border-bottom: solid 1px #aeaeae;
    padding: 6px 24px 10px 28px;
    background-color: transparent;
}

.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.accordion-flush .accordion-button:not(.collapsed) {
    box-shadow: none !important;
    border-bottom: solid 1px #aeaeae;
    padding: 6px 24px 10px 28px;
    background-color: transparent;
}


/*カタログ検索_アコーディオン読み込み*/

.accordion-load {
    opacity: 0;
    transition: opacity 0.01s;
}


/* checkboxカウント*/

.accordion-header {
    position: relative;
}

.accordion-header .tag-count {
    position: absolute;
    font-size: 1rem;
    color: #006563 !important;
    font-weight: bold;
    right: 60px;
    top: 15%;
    z-index: 1;
}

@media (max-width: 648px) {
    .accordion-header {
        display: flex;
        border-bottom: solid 1px #aeaeae;
        flex-direction: column;
        align-items: flex-start;
    }
    .accordion-button {
        width: 100%;
    }
    .accordion-button.collapsed,
    .accordion-flush .accordion-button:not(.collapsed) {
        border-bottom: none;
        padding: 3px 36px 12px 6px;
    }
    .accordion-header .tag-count {
        position: static;
        font-size: 0.9rem;
        padding-left: 6px;
    }
    .accordion-button::after {
        position: absolute;
        right: 0;
        top: 50%;
    }
    .accordion-collapse:not(.collapsed) .accordion-body {
        padding: 16px 8px;
    }
}


/*カタログ検索_Agentic AI_タグボタン*/

.tagbtn_wrap {
    display: inline-block;
    position: relative;
    margin-right: 4px;
    text-align: center;
}

.tagbtn_wrap input {
    opacity: 0;
    position: absolute;
    left: 0;
}

.tagbtn_wrap label {
    padding: 6px 20px 6px 22px;
    border-radius: 30px;
    background: #fff;
    display: inline-block;
    cursor: pointer;
    border: 1px solid #006563;
    color: #006563 !important;
    margin: 8px 0;
    font-size: 1rem !important;
    letter-spacing: 0.2rem;

}

.tagbtn_wrap label.disabled {
    background: #fff;
    border: 1px dashed #aeaeae;
    color: #aeaeae !important;
    cursor: default;
    pointer-events: none;
}

.tagbtn_wrap label:hover {
    opacity: 0.8;
    transition: .5s;
    color: #006563 !important;
}

.tagbtn_wrap:has(label.disabled) {
    cursor: default;
    pointer-events: none;
}

.tagbtn_wrap input:checked+label {
    background: #006563;
    color: #FFF !important;
}

.tagbtn_wrap input:hover+label {
    box-shadow: 0 0 4px #006563;
}

.tagbtn_wrap input:focus+label {
    outline:solid 2px #454545;
    outline-offset:2px;
}

@media (max-width: 960px) {
    #search_form form .tagbtn_wrap label {
        line-height: 1.25rem;
        text-indent: 0;
        padding-left: 1rem;
    }
}

/* 生成ページリンクボタン */
.addElements .linkbtn_ai{
    display: flex;
    width: 117px;
    height: 103px;
    text-align: center;
    background: url("../images/button_fukidasi_ai.png") center top / 100% no-repeat;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
}

.addElements .linkbtn_ai:hover{
    opacity: 0.6;
}

.addElements .linkbtn_ai a{
    display: block;
    padding-top: 38px;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.5rem;
    width: 100%;
    height: 100%;
}

@media (max-width: 960px) {
    .addElements .linkbtn_ai {
        margin: 0 auto;
        margin-bottom: 24px;
    }
}


/*////////////////////////////////////////////////
MDB form
////////////////////////////////////////////////*/

.select-option input[type=checkbox] {
    -webkit-appearance: none;
    appearance: none;
}
