* {
	box-sizing: border-box; /* 各要素の大きさをpaddingとか込みにしない（100pxにpadding10pxだと110pxになる） */
}

body {
    font-family: "Times New Roman", "Yu Mincho", "Meiryo", sans-serif; /* ページのフォント指定（英語, 日本語第一候補, 日本語第二候補, それでもダメだったときのフォント群） */
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    color: #000000; /* 文字の色 */
    font-size: 100%;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

.leftnavi {
    width: 240px;
}

.left_search {
    position: relative;
    width: 240px;
    height: 40px;
    margin-bottom: 40px;
}
.left_search input[type="text"] {
    background-color: #FFF;
    border: solid 1px #000000;
    padding: 12px 20px 12px 50px;
    width: 100%;
}
.left_search input[type="image"] {
    position: absolute;
    top: 7px;
    left: 10px;
    width: 30px;
    height: 30px;
}
.left_search input {
    border-radius: 21px;
}

.left_menu {
    margin-bottom: 40px;
}

.menu_btn {
    margin-bottom: 20px;
}
.menu_btn a {
    color: rgb(0, 92, 35);
    position: relative;
    display: block;
    padding: 14px 0;
    text-align: center;
    border: solid 1px rgb(0, 92, 35);
    background-color: #FFF;
    font-size: 1.4rem;
    font-weight: bolder;
}

.menu_btn_wrap {
    display: flex;
    align-items: center;
    margin-left: 10px;
}
.menu_btn_wrap span {
   flex: 1;
}
.menu_btn_wrap span img {
    width: 100%;
}
.menu_btn_wrap p {
    flex: 3;
    text-align: center;
}
.menu_btn_wrap strong {
    flex: 1;
}

.left_category, .left_price {
    text-align: center;
    margin-bottom: 40px;
}
.left_category h3, .left_price h3 {
    padding: 10px;
    margin: 0;
    background-color: rgb(0, 92, 35);
    color: #FFF;
    font-size: 1.4rem;
}
.left_category ul li a, .left_price ul li a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    display: block;
}
.left_category ul li a:hover, .left_price ul li a:hover, .menu_btn a:hover {
    background: rgb(149, 229, 180);
    transition: all 0.5s;
}
.left_category li img, .left_price li img {
    border-radius: 50%;
    overflow: hidden;
    filter: drop-shadow(1px 3px 3px rgba(0, 0, 0, 0.4));
}

.underline {
    border-bottom: dotted 2px black;
}
