@charset "utf-8";
/*ハンバーガーメニュー js制御*/
.scroll-prevent{
    overflow: hidden;
}

.is-blur{
    filter: blur(15px);
    opacity: 50%;
    backdrop-filter: none !important;
}

.mask{
    display: none;
    transition: all .5s;
}

@media (1024px < width) {
    .mask.is-open{
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        cursor: pointer;
        z-index: 2;
    }
}

/*セクション , 見出し*/
.main_area{
    margin: 0 0 calc(150px - clamp(3.125rem, 1.484rem + 7.5vw, 5rem));
}

@media (1024px < width) {
    .main_area{
        margin: 0 0 calc(150px - 80px);
    }
}

/* SVG */
.stroke-1, .stroke-2{
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.stroke-2, .stroke-fill-2{
    stroke-width: 2px;
}

.stroke-1, .stroke-fill-1{
    stroke-width: 1px;
}

.stroke-wh{
    stroke: #fff;
}

.stroke-gl{
    stroke: #807878;
}

.fill-wh, .fill-gl{
    stroke-width: 0px;
}

.fill-wh{
    fill: #fff;
}

.fill-gl{
    fill: #807878;
}

.stroke-fill{
    fill: #fff;
    stroke: #807878;
    stroke-linecap: round;
    stroke-linejoin: round;
}