﻿  .search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 30px 0px 30px;
    background-color: #f9d94c; /* 背景の黄色 */
  }

  .search-box {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
  }

  .search-input {
    padding: 10px 10px;
    font-size: 16px;
    border: 3px solid #000;
    border-right: none;
    outline: none;
    width: 100%;
    background-color: #fff;
    border-radius: 10px 0 0 10px; /* 左上と左下だけ丸くする */
  }

  .search-button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 0 15px;
    font-size: 20px;
    cursor: pointer;
    width: 100px;
  }

  .search-button:hover {
    opacity: 0.8;
  }

