@charset "utf-8";
/* CSS Document */
.hheader-bottom li {
    list-style: none;
}

.header-bottom a {
    text-decoration: none;
    color: #000; /* リンクの色 */
}

.header-wrap {
  display: flex;
  align-items: center; /* 項目を中央揃えに */
  justify-content: space-between; /* スペースを均等に分配 */
}

.header-bottom_logo {
  flex: 1; /* ロゴに柔軟なスペースを与える */
  margin: 7px 0 0 20px;
}

.header-bottom_search {
  display: flex;
  font-size: 13px;
  flex: 3; /* 検索フォームにより大きなスペースを与える */
  position: relative; /* サジェストボックスの位置の基準点 */
}

.header-bottom_search input[type="text"] {
  width: 100%;
  height: 2.5em;
  padding: 0 10px;
  font-size: 13px;
  line-height: 2.5;
  color: #000;
  border: 1px solid #feecec;
  border-radius: 3px;
}

.header-bottom_search input[type=image] {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 15px;
    height: 15px;
}

.header-bottom_search input[type="text"]:focus {
  outline: none; /* 外側のアウトラインを消す */
}

.header-bottom_searchBtns, .header-bottom_defaultBtns {
  display: flex;
  font-size: 13px;
  list-style: none; /* リストのスタイルをリセット */
  padding: 0; /* パディングをリセット */
  margin: 0 16px; /* 両リストの間に適切なスペースを提供 */
}

.header-bottom_searchBtn, .header-bottom_defaultBtn {
  display: flex;
  align-items: center; /* ボタン内のテキストとアイコンを中央揃え */
  margin-right: 10px; /* ボタン間のスペース */
}

.header-bottom_search {
    margin: 0 0 0 35px;
}

.header-bottom_defaultBtns {
    width: 285px;
    margin-left: 50px;
}

.header-bottom_defaultBtn img {
  margin-right: 5px; /* アイコンとテキストの間のスペース */
}

.header-bottom_defaultBtn {
  position: relative; /* 絶対位置指定の基準点とする */
}

.header-bottom_defaultBtn span{
  margin:0 6px; 
}

.cartNum_wrap {
    position: absolute;
    top: -10px;
    left: -10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    background: #E25B33;
    border-radius: 50%;
}

#cartNum {
    width: 100%;
    height: auto;
    padding-top: 1px;
    font-size: 9px;
}

.fa-solid {
    font-size: 20px; /* または希望するサイズに */
}

/* arrowの定義 */
.header-bottom_searchBtn::after {
    position: relative;
    top: -1px;
    display: inline-block;
    width: 12px;
    height: 7px;
    margin-left: 5px;
    content: "";
    background: url(../img/common/header_arrow_01.png) no-repeat;
    background-size: 12px 7px;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.header-bottom_searchBtn.active::after {
    /* クリックされたときの矢印の向きを上にするなどの変更 */
    transform: rotate(180deg); /* 例：矢印を180度回転させる */
}

/* ホバー時 */
.header-bottom_searchBtn:hover {
    text-decoration: underline; /* ホバー時にテキストの下に線を引く */
}

