* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: #ffffff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    color: #000;
    line-height: 1.0;
}
.sororam-wrap {
    width: 100%;
    min-height: 100vh;
    padding: 75px 30px 75px 110px;
}
p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.01em;
}
.link-text {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.italic { font-style: italic; }
.bold { font-weight: bold; }
.logo-row { 
    margin-bottom: 75px; 
}
.main-logo-svg {
    display: block;
    width: 170px;
    height: auto;
    fill: #000;
}
.header-container {
    position: fixed !important;
    top: 30px !important;
    left: 30px !important;
    background-color: transparent;
    padding: 0 !important;
    z-index: 1000;
}
.row-1 { margin-bottom: 15px; }
.row-2 { margin-bottom: 155px; }
.row-3 { margin-bottom: 15px; }
.row-4 { margin-bottom: 0; }
.row-4.product-name { 
    margin-bottom: 15px; 
    font-weight: bold; 
}
.row-33 { 
    font-size: 12px; 
    margin-bottom: 5px; 
    line-height: 1.4; 
}
.row-address-1 { 
    font-size: 12px; 
    margin-bottom: 5px; 
}
.row-address-2 { 
    font-size: 12px; 
}
.image-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    column-gap: 5px;
    row-gap: 10px;
    padding: 30px 0;
    margin-top: 75px;
    position: relative;
    z-index: 2;
}
.image-grid .image-box {
    flex: 0 0 calc((100% - 10px) / 3);
}
.image-grid .image-box:nth-child(1) { margin-left: 0; }
.image-grid .image-box:nth-child(3) { margin-left: calc((100% - 10px) / 3 + 5px); }
.image-grid .image-box:nth-child(5) { margin-left: calc(2 * ((100% - 10px) / 3 + 5px)); }
.image-grid-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    column-gap: 5px;
    row-gap: 10px;
    padding: 30px 0;
    margin-top: 75px;
    margin-left: auto;
    margin-right: 0;
    width: calc((100% - 10px) * 2 / 3 + 5px);
    position: relative;
    z-index: 2;
}
.image-grid-1 .image-box {
    flex: 0 0 calc(50% - 2.5px);
}
.image-box {
    background-color: #ffffff;
    overflow: hidden;
    display: block;
    height: auto;
}
.product-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.product-info {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    color: #333;
    line-height: 1.2;
    background-color: #ffffff;
}
.product-info .name {
    font-size: 12px;
    font-weight: 400;
}
.product-info .price {
    font-weight: 400;
}
@media (max-width: 768px) {
    .sororam-wrap { padding: 20px 0; }
    
    .header-container { 
        top: 20px !important;
        left: 20px !important;
        padding: 0 !important;
    }
    
    .logo-row { margin-bottom: 50px; }
    .row-2 { margin-bottom: 80px; }
    .main-logo-svg { width: 150px; }

    .image-grid {
        justify-content: flex-start;
        column-gap: 5px;
        row-gap: 10px;
        padding: 0;
        margin: 0;
        width: 100%;
    }
    
    .image-grid .image-box {
        flex: 0 0 calc(50% - 2.5px);
    }
    
    .image-grid .image-box:nth-child(1),
    .image-grid .image-box:nth-child(3),
    .image-grid .image-box:nth-child(5) {
        margin-left: 0;
    }
    
    .image-grid-1 {
        justify-content: flex-end;
        column-gap: 5px;
        row-gap: 10px;
        padding: 0;
        margin: 40px 0 0 0;
        width: 100%;
    }
    
    .image-grid-1 .image-box {
        flex: 0 0 calc(50% - 2.5px);
    }
    
    .product-info {
        font-size: 12px;
        padding: 8px 5px;
    }
}