@charset "utf-8";
/* tasting */
.heading-with-accent {
    margin-top: -12px;
    border: 2px solid #007a3e;
    padding: 10px;
    background-color: #fff;
    box-shadow: 1px 2px 6px rgb(0 0 0 / 50%);
}
.wrapp-heading-text {
    text-align: center;
    display: block;
    margin: auto;
    border: 1px solid #007a3e;
    border-radius: 8px;
    font-size: 24px;
    color: #007a3e;
    position: relative;
    background-color: #fff;
}
.wrapp-heading-text > span {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #007a3e;
    border: 2px solid #fff;
}
.wrapp-heading-text .left {
    left: -2px;
    top: -2px;
}
.wrapp-heading-text .left-bottom {
    left: -2px;
    bottom: -2px;
}
.wrapp-heading-text .right {
    right: -2px;
    top: -2px;
}
.wrapp-heading-text .right-bottom {
    right: -2px;
    bottom: -2px;
}
#tasting .inner-tasting {
    max-width: 1000px;
    display: block;
    margin: 35px auto 0 auto;
}
#tasting .inner-tasting ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}
#tasting .inner-tasting ul li {
    width: 23.5%;
    margin: 0 2% 35px 0;
}
#tasting .inner-tasting ul li:nth-child(4n) {
    margin-right: 0;
}
#tasting .inner-tasting ul li .image-area {
    min-height: 150px;
    margin-bottom: 5px;
}
#tasting .inner-tasting ul li .image-area img,
#tasting .inner-tasting ul li .image-area video {
    width: 100%;
    box-shadow: 1px 1px 6px rgb(0 0 0 / 25%);
    aspect-ratio: 5 / 7;
}
#tasting .inner-tasting ul li .image-area img {
    object-fit: cover;
}
#tasting .inner-tasting ul li .information-area {
    padding: 8px;
    border: solid 1px #ccc;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, .5);
}
#tasting .inner-tasting ul li .information-area span {
    display: block;
}
.wrapp-btn {
    text-align: center;
    margin-top: 50px;
}
.wrapp-btn a {
    display: inline-block;
    font-weight: bold;
    width: 90%;
    max-width: 500px;
    font-size: 18px;
}
@media only screen and (max-width: 767px) {
    #tasting .inner-tasting ul li {
        width: 48%;
        margin-right: 4%;
    }
    #tasting .inner-tasting ul li:nth-child(even) {
        margin-right: 0;
    }
}