html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overscroll-behavior-x: none;
}

body {
    color: #4A3B32;
    overflow-x: hidden;
    overscroll-behavior-x: none;
    position: relative;
    /* テキスト選択禁止 */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* 画像のコピー・ドラッグ禁止 */
img {
    pointer-events: none;
    -webkit-touch-callout: none;
}


/* ハンバーガーメニューの背景を確実に表示 */
#mobile-menu {
    background-color: #ffffff !important;
}

#mobile-menu div {
    background-color: #ffffff !important;
}

/* 角丸三角形バッジ */
.badge-triangle {
    width: 78px;
    height: 72px;
    clip-path: path("M 39 5 C 42 0 48 1 51 8 L 72 57 C 76 65 72 72 64 72 L 14 72 C 6 72 2 65 6 57 L 27 8 C 30 1 36 0 39 5 Z");
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 14px;
    font-size: 11px;
    font-weight: 900;
    line-height: 1.3;
    text-align: center;
}
