body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.item {
    margin: 10px;
    padding: 20px;
    text-align: left;
    width:200px;
}

/* add by sasano 20231031 */
.content {
    width: 95%;
    margin: 0 auto;
}
.area {
    width: 100%;
    margin: auto;
    flex-wrap: wrap;
    display: flex;
}
 
.tab_class {
    width: calc(100%/3);
    height: 50px;
    background-color: darkgrey;
    line-height: 50px;
    font-size: 15px;
    text-align: center;
    display: block;
    float: left;
    order: -1;
}
 
input[name="tab_name"] {
    display: none;
}
 
input:checked + .tab_class {
    background-color: cadetblue;
    color: aliceblue;
}
 
.content_class {
    display: none;
    width: 100%;
}
 
input:checked + .tab_class + .content_class {
    display: block;
}
/* add by sasano 20231031 END */


@media screen and (max-width:700px) {
    .item {
        margin: 10px;
        padding: 20px;
        text-align: left;
        width:100%;
    }
}

.shop {
    font-size: 30px;
    font-weight: bold;
    padding: 10px 30px;
    margin: auto;
    text-align:center;
    border-radius: 10px;
    color:#FFF;
    background: #7e2626;
  }

img {
    width: 100%;
	height: auto;
}

a {
    color: white;
    text-decoration:none;
}

a:hover {
    color: rgb(126, 126, 126);
    text-decoration:none;
}

ul {
    list-style-type: none;
    padding: 0;
    overflow: hidden;
    background-color: #333;
    text-align:center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

li {
    float: left;
}

li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration:none;
}

li a:hover {
    background-color: #111;
}