@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

.clearable-input {
  position: relative;
}

.clearable-input input {
  width: 100%;
  padding-right: 28px; /* × の分の余白 */
  box-sizing: border-box;
}

.clearable-input .clear-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #999;
  cursor: pointer;
  user-select: none;
  display: none;
}

.clearable-input .clear-btn:hover {
  color: #333;
}




/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}



/*やました*/
<!--
.contractor-table th {
  background-color: #f9f9f9;
  padding: 8px;
  border: 1px solid #ccc;
  width: 200px;
  text-align: left;
}

.contractor-table td {
  padding: 8px;
  border: 1px solid #ccc;
}

.contractor-entry {
  margin-bottom: 40px;
}
-->
/*やました*/

/*TOP入札新着情報*/
.simple-bid-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.simple-bid-list li {
    padding: 12px 0;
    border-bottom: 1px solid #ddd; /* 線が不要ならこの行を消してください */
    display: flex;
    align-items: flex-start;
}
.simple-bid-list .bid-date {
    font-size: 0.9em;
    color: #666;
    width: 100px; /* 日付の幅を固定して揃える */
    flex-shrink: 0;
}
.simple-bid-list .bid-title {
    text-decoration: none;
    color: #333;
    line-height: 1.4;
}
.simple-bid-list .bid-title:hover {
    text-decoration: underline;
    color: #0073aa; /* ホバー時の色（お好みで） */
}