main .header {
    padding-bottom: 0;

}

main h1 {
    padding: 0;
    margin-top: 0;
    margin-bottom: .5em;
    font-size: min(1.8em, 6.4vw);
}

main h2 {
    font-size: min(1.1em, 4.6vw);
}

p.place{
    font-size: min(1em, 4.2vw);
}

.sub-dash {
    display: inline-block;
    font-size: 1.2em;
    margin-top: 0;
    margin-bottom: 1.5em;
    font-weight: normal;
    text-align: center;

}

.sub-dash::before,
.sub-dash::after {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1px;
    background-color: #222;
    margin: .25em .5em;
}

.co-wrp .inner {
    padding: min(60px, 15vw) min(20px, 5vw) 0;
}

.item-wrp {
    margin: 3em auto 0;
    display: grid;
    grid-template-areas:
    'bar_stool bar_stool bar_stool'
    'rug stool bench';
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

@media screen and (max-width:740px) {
    .item-wrp {
        grid-template-areas:
        'bar_stool rug'
        'stool bench';
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
}

.item-wrp li {
    /* background-color: #ccc; */
    position: relative;
}

.item-wrp li.bar_stool {
    grid-area: bar_stool;
}

.item-wrp li.bench {
    grid-area: bench;
}

.item-wrp li.rug {
    grid-area: rug;
}

.item-wrp li.stool {
    grid-area: stool;
}

.item-wrp li img {
    width: 100%;
    aspect-ratio: 1/1.6;
    object-fit: cover;
    position: relative;
    z-index: 0;
}

.item-wrp li.bar_stool img {
    aspect-ratio: 1/.4;
}

@media screen and (max-width:740px) {
    .item-wrp li img {
        aspect-ratio: 1/1.5 !important;
        object-position: center bottom;
    }
}

.item-wrp li .meta-wrp {
    width: 100%;
    position: absolute;
    left: 0;
    top: 15%;
    z-index: 1;
}

@media screen and (min-width:740.1px) {
    .item-wrp li.bar_stool .meta-wrp {
        width: fit-content;
        left: 25%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
}

@media screen and (max-width:740px) {
    .item-wrp li .meta-wrp {
        top: 10%;
    }
}


.item-wrp li p {
    color: #fff;
    font-size: min(1.4em, 4.4vw);
    line-height: 1.6;
}

@media screen and (max-width:740px) {
    .item-wrp li p {
        text-shadow: 0 1px 3px rgba(69, 67, 70, 1);
    }
}

.item-wrp li p .jp {
    display: block;
    margin: 0 auto;
    font-size: .85em;
}

.item-wrp li p.size {
    display: block;
    margin: .5em auto 0;
    font-size: .9em;
    font-size: min(.9em, 3vw);
}

.co-wrp .btn {
    padding: 1.25em 1.5em 1.25em 2.5em;
    margin: 4em auto 0;
    font-size: min(1em, 4vw);
}