@charset "UTF-8";

* {
    font-family: "Noto Sans JP", sans-serif;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

#goods .mobile-content {
  overflow-y: auto;
  height: 100vh;
}

.sub-font-size {
    font-size: 16px;
}

.goods-main {
    max-width: 100%;
    margin: 0 auto;
}

.goods-arrangement {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-left: 20px;
    margin-right: 20px;
}

.goods-item {
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}


.goods-item:hover {
    opacity: 0.9;
}

.goods-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    border-radius: 5px 5px 0 0;
}

.goods-item h3 {
    padding: 5px 15px 5px;
    font-size: 14px;
    text-align: center;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 0;
}

.goods-item .size {
    text-align: center;
    font-size: 12px;
    padding-bottom: 5px;
    color: #215F7C;
    margin: 0;
}

.goods-item .price {
    padding: 5px 15px 5px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 10px;
}

.notice {
    text-align: center;
    font-size: 16px;
    padding: 20px;
    margin: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
}

.notice .orange-color {
    color: #E6522A;
    font-weight: bold;
    font-size: 28px;
}

.sticker {
    border-top: #002C49 1px solid;
}