/* ---common--- */

.scroll-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    gap: .7rem;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE.Edge */
}

.scroll-container::-webkit-scrollbar {
    display: none;
    /* Chrome */
}

.scroll-container:first-of-type {
    padding-left: 1rem;
}

.scroll-container:last-of-type {
    padding-right: 2rem;
}

/* ---information--- */

#information {
    margin: 10px 0;
}

#information ul {
    padding: .5rem 1rem;
    background-color: var(--W);
    color: var(--BK);
    font-size: .8rem;
    text-align: center;
}

#information ul li a {
    text-align: left;
    display: flex;
    padding: 3px;
}

#information ul li a time {
    width: 65px;
    text-align: right;
    color: var(--deepBL);
    padding: 2px 0 0 0;
    font-size: .8rem;
    display: block;
    margin: 0 1em 0 0;
}

/* ---banner--- */

#banner {
    margin: 1.8rem 1rem;
}

#banner ul li {
    margin: 0 0 .5rem;
}

#banner ul li a img {
    margin: 0 auto;
    display: block;
    width: 100%;
    border-radius: var(--b-r);
}

.toService {
    font-weight: bold;
    letter-spacing: .05rem;
}

/* ---カテゴリメニュー--- */
#menu {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
    background: transparent;
}

.menu-item {
    flex: 0 0 22%;
    background: #fff;
    border-radius: var(--b-r);
    box-shadow: var(--shadow);
    aspect-ratio: 1 / 1;
    font-size: .7rem;
    line-height: 1.2em;
    text-align: center;
}

.menu-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.menu-item img {
    width: 64%;
    height: auto;
    object-fit: contain;
}

/* ---商品カード--- */

#product h2 {
    font-weight: bold;
    margin: 1rem 0 1rem 1rem;
}

.product-card {
    flex: 0 0 38%;
    max-width: 180px;
    aspect-ratio: 1 / 1;
    background: white;
    border-radius: var(--b-r);
    box-shadow: var(--shadow);
    padding-bottom: .5rem;
    margin-bottom: .5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-image-box {
    width: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-info {
    padding: .5rem;
}

.card-name {
    font-size: .75rem;
    font-weight: bold;
    line-height: 1.2em;
    letter-spacing: -.05em;
}

.card-price {
    font-size: .75rem;
    color: var(--deepBL);
    font-weight: bold;
    font-weight: normal;
}