.page_main_img {
    width: 100%;
    margin: 0 auto;
    height: 600px;
}

.h1_title {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 0;
    line-height: 1.8;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    flex-wrap: wrap;
    flex-direction: column;
}

.h1_title::before,
.h1_title::after {
    display: none;
}

@media screen and (max-width: 768px) {
    .page_main_img {
        height: 350px;
    }

    .h1_title {
        height: 230px;
        font-size: 2.2rem;
    }
}

.content_min {
    max-width: 850px;
    min-width: 850px;
}
@media screen and (max-width: 768px) {
.content_min {
    width: 90%;
    padding: 20px 5%;
    min-width: 90%;
}
}

.content_min .h-number {
  margin: 25px 0 0;
}

.content_min .h-number:before {
    counter-increment: no +2;
    content: "#" counter(no, decimal-leading-zero);
    color: rgb(255, 255, 255);
    background-color: rgb(0, 0, 0);
    font-weight: bold;
    width: 70px;
    height: 70px;
    text-align: center;
    display: block;
    line-height: 70px;
    position: relative;
    left: 0px;
    top: 0px;
    bottom: 0px;
    font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", 游ゴシック, YuGothic, "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS Pゴシック", Helvetica, Arial, Verdana, sans-serif;
    margin: auto;
}


/*おすすめ商品*/

.content_story_optimal_vinegar ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.content_story_optimal_vinegar ul li {
    box-sizing: border-box;
    width: 50%;
    padding: 60px;
    margin-bottom: 25px;
    margin: auto;
}

.content_story_optimal_vinegar ul li h3 {
    text-align: center;
    position: relative;
    font-size: 2rem;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", sans-serif;
    margin: 30px 0;
}

.content_story_optimal_vinegar ul li h3::after {
    content: '';
    display: block;
    width: 100px;
    height: 1px;
    background-color: #707070;
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    margin: auto;
}

@media screen and (max-width: 768px) {
    .content_story_optimal_vinegar ul li {
        width: 100%;
        padding: 0;
    }

    .content_story_optimal_vinegar ul li h3 {
        margin: 15px 0;
    }


}