body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    padding: 10px;
}

.header {
    padding: 5px;
    background-color: #fff;
    border: 1px solid #ccc;
    font-size: 14px;
    margin-bottom: 10px;
}

.container {
    text-align: left;
    background-color: rgb(246, 253, 255);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
}

h2 {
    padding-left: 10px;
    background-color:lemonchiffon;
    color: black;
    font-size: 30px; /* フォントサイズを大きくする */
    letter-spacing: 4px; /* 文字の間隔を広げる */
    margin-bottom: 0px; /* マージンを0に設定 */
}

h3 {
    position: relative; /* 親要素にposition: relative;を設定 */
    padding-left: 30px; /* アイコンのスペースを確保 */
    background-color:lemonchiffon;
    color: black;
    margin-top: 0px; /* マージンを0に設定 */
    margin-bottom: 10px;
}
h3:before {
    font-family: "Font Awesome 5 Free";
    content: "\f041";
    display: inline-block;
    line-height: 40px;
    position: absolute;
    padding: 0em;
    color: white;
    background: #ff6363;
    font-weight: 900;
    width: 40px;
    text-align: center;
    height: 40px;
    line-height: 40px;
    left: -1.00em;
    top: 40%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 50%;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.29);
  }

.search-container {
    position: relative;
    width: 100%;
}

input[type="text"] {
    width: calc(100% - 22px);
    padding: 10px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    padding-right: 30px; /* アイコンのスペースを確保 */
}

.search-icon {
    position: absolute;
    right: 50px;
    top: -100%;
    transform: translateY(-50%);
    color: #2c61ff;
    font-size: 25px; /* アイコンのサイズを20pxに設定 */
}

.btn {
    border-radius: 30px;
    background-color: aquamarine;
    padding: 3px 10px;
    text-decoration: none;
    color:rgb(33, 33, 33);
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, color 0.3s;
}

.btn:hover {
    background-color: rgb(75, 183, 178); /* ホバー時の背景色 */
    color: rgb(0, 0, 0); /* ホバー時の文字色 */

}

@media (max-width: 600px) {
    .container {
        padding: 10px;
    }

    .btn {
        padding: 5px;
    }
}