/*設定ファイルの読み込み*/
@import url('hakkoueki-root.css');

/* ================================
 Reset
================================ */
body, div, span, h1, h2, h3, p, a, ul, li, img {
    border: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    list-style-type: none;
}

/* ================================
 common
================================ */
#top, #recipe-page {
    font-family:"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック",
    "Yu Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    color: var(--neutral);
    font-size: var(--font-size-base);
    line-height: 1.6;
}

/*IE11の表示対策*/
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    #top, #recipe-page {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, Noto Sans, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    }
}

h1,h2,h3 {
    line-height: 1.4;
    font-feature-settings: 'palt';
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.mb16 {margin-bottom: 16px!important;}
.mb32 {margin-bottom: 32px!important;}

img {
    width: 100%;
    height: auto;
    display: block;
}
p {
    margin-bottom:  16px;
    line-height: 1.6;
}

a {
    color: var(--neutral);
    transition: all .3s;
}

a:hover {
    opacity: 0.8;
}

.logo_wrapper a:hover {
    opacity: 1;
}

.bold {
    font-weight: bold;
}

.red {
    color: var(--primary);
}

.no_pc {
    display: none;
}
.no_sp {
    display: block;
}

@media screen and (max-width: 767px) {
    .no_pc {
        display: block;
    }
    .no_sp {
        display: none;
    }
}

/* ================================
 Outline
================================ */
.product-hero-header {
    width: 100%;
}

.container {
    width: var(--container);
    max-width: var(--content-with);
    padding: 0 24px;
    margin: 0 auto 64px;
}

@media screen and (max-width: 1023px) {
    .container {
        width: 97%;
    }
}

@media screen and (max-width: 767px) {
    .container {
        width: 100%;
        padding: 0 32px;
    }
}

/* ================================
　スクロールしたらふわっと表示させる表示
================================ */
.scroll_up {
    transition: 0.8s ease-in-out;
    transform: translateY(30px);
    opacity: 0;
}

.scroll_up.on {
    transform: translateY(0);
    opacity: 1;
}

/* ================================
　回遊ナビゲーション
================================ */
.m-navLink {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    gap: 1.5rem;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid;
}

.m-navLink a {
    display: inline-block;
    position: relative;
    padding-right: 12px;
    margin-bottom: 1rem;
    font-size: clamp(14px, 2.5vw, 16px);
    text-decoration: none;
    color: #000;
    border-bottom: 1px solid #000;
}

.m-navLink a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #000;
}

@media screen and (max-width: 767px) {
    .m-navLink a {
        margin-bottom: 0;
    }
}
