/* 全頁共通CSS */

*{
    margin: 0;
    padding: 0;
}
*,
*::before, *::after{
    box-sizing: inherit;
}
body{
    box-sizing: border-box;
    background-color: #fef5e6;
    color: #4f294a;
    font-family: "fot-tsukuardgothic-std", sans-serif;
    font-weight: bold;
    font-style: normal;
    font-size: clamp(1.125rem, 0.014rem + 2.31vw, 1.75rem); /* 18~28px */
    line-height: 1.8;
    overflow-x: hidden!important;
    -webkit-text-size-adjust: 100%;
}
body.active{
    width: 100%;
    touch-action: none;
    -webkit-overflow-scrolling: none;
    overflow: hidden!important;
    overscroll-behavior: none;    
}
img{
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
a {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    cursor: pointer;
    word-wrap:break-word;
    text-decoration: none;
    transition: 0.3s;
}
*:focus {
    outline: none;
}

/*--------------------------------------------------------
    ヘッダー
--------------------------------------------------------*/
/* コンテナ */
.ly_header{
    aspect-ratio: 1 / 1;
    margin: 30px auto;
    position: relative;
    width: 100%;
}
@media (min-width:768px){
    .ly_header{
        aspect-ratio: 24 / 13;
        margin: 0 auto;
        max-width: 1700px;
    }
}

/* h1 カバー部分 */
.bl_mainCover{
    aspect-ratio: 1 / 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.bl_mainCover::after{
    background-image: url("../img/img_parts02.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    content: '';
    display: block;
    position: absolute;
    left: 5%;
    bottom: -20%;
    width: 80px;
    height: 80px;
}
.bl_mainCover .pc{
    display: none;
}
@media (min-width:768px){
    .bl_mainCover{
        aspect-ratio: 24 / 13;
    }
    .bl_mainCover::after{
        left: 3%;
        bottom: -20%;
        width: 150px;
        height: 150px;
    }
    .bl_mainCover .sp{
        display: none;
    }
    .bl_mainCover .pc{
        display: block;
    }
}
@media (min-width:1024px){
    .bl_mainCover::after{
        width: 200px;
        height: 200px;
    }
}
@media (min-width:1200px){
    .bl_mainCover::after{
        width: 250px;
        height: 250px;
    }
}

/* スライダー */
.bl_sliderCont > *{
    aspect-ratio: 1 / 1!important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.bl_slider{
    margin: 0 auto!important;
    width: 92%;
}
.bl_slider .pc{
    display: none;
}
@media (min-width:768px){
    .bl_sliderCont > *{
        aspect-ratio: 24 / 13!important;
    }
    .bl_slider .sp{
        display: none;
    }
    .bl_slider .pc{
        display: block;
    }
}

/*--------------------------------------------------------
    共通
--------------------------------------------------------*/
/*========== コンテナ ==========*/
.bl_cont{
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}
.bl_cont p+p{
    margin-top: 20px;
}
@media (min-width:768px){
    .bl_cont{
        padding: 0 30px;
    }
}
@media (min-width:1650px){
    .bl_cont{
        padding: 0;
    }
}

/*========== 見出し ==========*/
.bl_cont h2{
    color: #ce9300;
    display: inline-block;
    font-size: clamp(1.5rem, 0.167rem + 2.78vw, 2.25rem); /* 24~36px */
    margin-bottom: 20px;
    position: relative;
    line-height: 1.8;
}
.bl_cont h2::after{
    background-image: url("../img/icon_head.png");
    background-position: center;
    background-repeat: repeat-x;
    background-size: contain;
    content: '';
    display: block;
    margin-top: 10px;
    width: 100%;
    height: 6px;
}

/*========== リスト ==========*/
.bl_cont ul{
    margin: 5px auto;
    list-style: none;
}
.bl_cont li{
    padding-left: 20px;
    position: relative;
}
.bl_cont li::before{
    content: '・';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}
.bl_cont li+li{
    margin-top: 5px;
}

/*========== ボタン ==========*/
.el_btn{
    border-radius: 60px;
    color: #fff;
    display: block;
    font-size: clamp(1.25rem, 0.361rem + 1.85vw, 1.75rem); /* 20~28px */
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
    margin: 0 auto;
    padding: 20px 0;
    max-width: 420px;
    line-height: 1.2;
}
*+.el_btn{
    margin-top: 30px;
}
.bl_cont .el_btn{
    background-color: #4f294a;
}
.bl_cont .el_btn:hover{
    background-color: #ce9300;
}

/*========== yassoのロゴ ==========*/
.el_yasso{
    display: inline-block;
    margin-right: 5px;
    width: 80px;
    vertical-align: -18px;
}
@media (min-width:1024px){
    .el_yasso{
        width: 100px;
    }
}

/*--------------------------------------------------------
    about
--------------------------------------------------------*/
.about{
    text-align: center;
    padding: 80px 0 60px;
    position: relative;
    z-index: 10;
}
.about::before,
.about::after{
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    display: block;
    position: absolute;
    width: 120px;
    height: 120px;
    z-index: -1;
}
.about::before{
    background-image: url("../img/img_about02.png");
    top: 0%;
    right: 2%;
}
.about::after{
    background-image: url("../img/img_about01.png");
    bottom: -15%;
    left: 2%;
}
.about .bl_cont{
    margin: 0 auto;
}
@media (min-width:768px){
    .about{
        padding: 40px 0;
    }
    .about::before,
    .about::after{
        width: 150px;
        height: 150px;
    }
    .about::before{
        top: -10%;
        right: 2%;
    }
    .about::after{
        bottom: -40%;
        left: 2%;
    }
}
@media (min-width:1200px){
    .about{
        padding: 120px 0;
    }
    .about::before,
    .about::after{
        width: 250px;
        height: 250px;
    }
    .about::before{
        top: -5%;
        right: 2%;
    }
    .about::after{
        bottom: -25%;
        left: 2%;
    }
}
@media (min-width:1600px){
    .about::before,
    .about::after{
        width: 350px;
        height: 350px;
    }
    .about::before{
        top: 0%;
    }
    .about::after{
        bottom: 0%;
    }
}

/*--------------------------------------------------------
    bg
--------------------------------------------------------*/
.bl_bgCont{
    margin: 60px auto;
    position: relative;
    width: 100%;
    height: 300px;
}
.about+.bl_bgCont{
    margin-top: 0;
}
.bl_bgCont::before,
.bl_bgCont::after{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    content: '';
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 50px;
}
.bl_bgCont::before{
    background-image: url("../img/img_bg-top.png");
    top: -1px;
}
.bl_bgCont::after{
    background-image: url("../img/img_bg-bottom.png");
    bottom: -1px;
}
.bl_bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 230px;
    clip-path: inset(0); /* 切り抜き */
    z-index: -1;
}
.bl_imgFixed{
    background-size: cover;
    position: fixed; /* 背景を固定 */
    top: 0;
    width: 100%;
    height: 100%;
}
.no01 .bl_imgFixed{
    background-image: url("../img/img_bg01.jpg");
    background-position: center;
}
.no02 .bl_imgFixed{
    background-image: url("../img/img_bg02.jpg");
    background-position: 30%;
}
@media (min-width:768px){
    .bl_bgCont{
        height: 350px;
    }
}
@media (min-width:1200px){
    .bl_bgCont{
        height: 500px;
    }
}

/*--------------------------------------------------------
    intro
--------------------------------------------------------*/
/* コンテナ */
.intro .bl_flexCont{
    position: relative;
}
.intro .bl_flexCont:first-of-type::before,
.intro .bl_flexCont:last-of-type::after{
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    content: '';
    display: block;
    position: absolute;
    width: 100px;
    height: 100px;
    z-index: 50;
}
.intro .bl_flexCont:first-of-type::before{
    background-image: url("../img/img_parts02.png");
    top: -15%;
    right: 2%;
}
.intro .bl_flexCont:last-of-type::after{
    background-image: url("../img/img_parts01.png");
    bottom: -15%;
    left: 2%;
}
@media (min-width:768px){
    .intro .bl_flexCont:first-of-type::before{
        top: -40%;
    }
    .intro .bl_flexCont:last-of-type::after{
        bottom: -30%;
    }
}
@media (min-width:1024px){
    .intro .bl_flexCont:first-of-type::before,
    .intro .bl_flexCont:last-of-type::after{
        width: 150px;
        height: 150px;
    }
    .intro .bl_flexCont:first-of-type::before{
        top: -40%;
    }
}
@media (min-width:1200px){
    .intro .bl_flexCont:first-of-type::before{
        top: -30%;
    }
    .intro .bl_flexCont:last-of-type::after{
        bottom: -25%;
    }
}
@media (min-width:1400px){
    .intro .bl_flexCont:first-of-type::before{
        top: -20%;
    }
    .intro .bl_flexCont:last-of-type::after{
        bottom: -20%;
    }
}

/* flex */
.intro .bl_flexCont{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.intro .bl_flexCont+.bl_flexCont{
    margin-top: 80px;
}
.intro .bl_flexCol{
    width: 100%;
}
.intro .bl_flexCol+.bl_flexCol{
    margin-top: 30px;
}
@media (min-width:768px){
    .intro .bl_flexCol+.bl_flexCol{
        margin-top: 0;
    }
    .intro .bl_flexCont .bl_flexCol:first-of-type{
        max-width: 750px;
        width: 55%;
    }
    .intro .bl_flexCont .bl_flexCol:last-of-type{
        max-width: 850px;
        width: 40%;
    }
    .intro .bl_flexCont:first-of-type .bl_flexCol:first-of-type{
        order: 2;
    }
    .intro .bl_flexCont:first-of-type .bl_flexCol:last-of-type{
        order: 1;
    }
}
@media (min-width:1200px){
    .intro .bl_flexCont .bl_flexCol:first-of-type,
    .intro .bl_flexCont .bl_flexCol:last-of-type{
        width: 48%;
    }
}

/*--------------------------------------------------------
    imo
--------------------------------------------------------*/
.imo{
    position: relative;
}
.imo::before{
    background-image: url("../img/img_parts03.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    display: block;
    position: absolute;
    top: -10%;
    right: 5%;
    width: 80px;
    height: 80px;
}
.imo .bl_flexCont{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.imo .bl_flexCont+.bl_flexCont{
    margin-top: 80px;
}
.imo .bl_flexCol{
    width: 100%;
}
.imo .bl_flexCol+.bl_flexCol{
    margin-top: 30px;
}
@media (min-width:768px){
    .imo{
        margin-top: 120px;
    }
    .imo::before{
        top: -20%;
        right: auto;
        left: 20%;
        width: 100px;
        height: 100px;
    }
    .imo .bl_flexCont{
        justify-content: flex-end;
        position: relative;
    }
    .imo .bl_flexCol+.bl_flexCol{
        margin-top: 0;
    }
    .imo .bl_flexCont .bl_flexCol:first-of-type{
        max-width: 850px;
        width: 55%;
        order: 2;
    }
    .imo .bl_flexCont .bl_flexCol:last-of-type{
        position: absolute;
        top: 50%;
        left: -20%;
        transform: translateY(-50%);
        max-width: 980px;
        width: 62%;
        z-index: -1;
        order: 1;
    }
    .imo .bl_flexCont .bl_flexCol br{
        display: none;
    }
    .imo .bl_flexCont .bl_flexCol br.tb{
        display: block;
    }
}
@media (min-width:1200px){
    .imo .bl_flexCont .bl_flexCol:last-of-type{
        width: 60%;
        left: -18%;
    }
    .imo .bl_flexCont .bl_flexCol br{
        display: block;
    }
}
@media (min-width:1500px){
    .imo{
        margin: 160px auto;
    }
}
@media (min-width:1800px){
    .imo .bl_flexCont .bl_flexCol:last-of-type{
        width: 65%;
    }
}

/*--------------------------------------------------------
    eat
--------------------------------------------------------*/
.eat{
    text-align: center;
    margin: 80px auto 0;
    max-width: 1300px;
}
@media (min-width:1024px){
    .eat{
        margin-top: 120px;
    }
}
@media (min-width:1350px){
    .eat{
        padding: 0;
    }
}
@media (min-width:1400px){
    .eat{
        margin-top: 160px;
    }
}
@media (min-width:1600px){
    .eat{
        margin-top: 200px;
    }
}
@media (min-width:1900px){
    .eat{
        margin-top: 240px;
    }
}

/* flex */
.eat .bl_flexCont{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    text-align: left;
    margin-top: 20px;
}
.eat .bl_flexCol{
    font-size: clamp(1.125rem, 0.458rem + 1.39vw, 1.5rem); /* 18~24px */
    padding-top: 20px;
    position: relative;
    width: 100%;
}
.eat .bl_flexCol::before{
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    display: block;
    position: absolute;
    top: 20px;
    left: 0;
    width: 50px;
    height: 50px;
}
.eat .bl_flexCol:nth-child(1)::before{
    background-image: url("../img/icon_no01.png");
}
.eat .bl_flexCol:nth-child(2)::before{
    background-image: url("../img/icon_no02.png");
}
.eat .bl_flexCol:nth-child(3)::before{
    background-image: url("../img/icon_no03.png");
}
.eat .bl_flexCol+.bl_flexCol{
    border-top: 1px dotted #999;
    margin-top: 40px;
    padding-top: 40px;
}
.eat .bl_flexCol figure{
    margin-bottom: 20px;
}
.eat .bl_flexCol dl{
    margin-top: 10px;
}
.eat .bl_flexCol dt{
    color: #ce9300;
}
.eat .bl_flexCol dt::before,
.eat .bl_flexCol dt::after{
    color: #ce9300;
    display: inline-block;
}
.eat .bl_flexCol dt::before{
    content: '【';
}
.eat .bl_flexCol dt::after{
    content: '】';
}
@media (min-width:768px){
    .eat .bl_flexCol{
        padding-top: 20px;
        width: 45%;
    }
    .eat .bl_flexCol+.bl_flexCol{
        border-top: 0;
        margin-top: 0;
        padding-top: 20px;
    }
    .eat .bl_flexCol:nth-child(n+3){
        margin-top: 40px;
    }
    .eat .bl_flexCol::before{
        top: 0;
    }
}
@media (min-width:1200px){
    .eat .bl_flexCol{
        width: 30%;
    }
    .eat .bl_flexCol:nth-child(n+3){
        margin-top: 0;
    }
    .eat .bl_flexCol::before{
        width: 60px;
        height: 60px;
    }
}

/*--------------------------------------------------------
    shop
--------------------------------------------------------*/
.shop{
    text-align: center;
    margin: 40px auto 80px;
    position: relative;
}
@media (min-width:768px){
    .shop{
        margin: 80px auto 120px;
    }
}
@media (min-width:1024px){
    .shop{
        padding: 80px 0;
    }
}
@media (min-width:1200px){
    .shop{
        padding: 120px 0;
    }
}
@media (min-width:1400px){
    .shop{
        margin: 120px auto;
    }
}

/* 画像 */
.shop::before,
.shop::after{
    aspect-ratio: 5 / 4;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    display: block;
    margin: 0 auto;
    width: 95%;
    height: 100%;
}
.shop::before{
    background-image: url("../img/img_shop-before-sp.png");
    margin-bottom: 40px;
}
.shop::after{
    background-image: url("../img/img_shop-after-sp.png");
    margin-top: 40px;
}
@media (min-width:768px){
    .shop::before,
    .shop::after{
        aspect-ratio: 11 / 20;
        margin: 0 auto;
        position: absolute;
        top: 0;
        max-width: 550px;
        max-height: 1000px;
        width: 20%;
        height: 100%;
    }
    .shop::before{
        background-image: url("../img/img_shop-before-pc.png");
        margin-bottom: 0;
        left: 1%;
    }
    .shop::after{
        background-image: url("../img/img_shop-after-pc.png");
        margin-top: 0;
        right: 1%;
    }
}
@media (min-width:1200px){
    .shop::before,
    .shop::after{
        width: 25%;
    }
    .shop::before{
        left: 2%;
    }
    .shop::after{
        right: 2%;
    }
}
@media (min-width:1400px){
    .shop::before,
    .shop::after{
        width: 30%;
    }
}

/*--------------------------------------------------------
    ページトップボタン・ショップボタン
--------------------------------------------------------*/
/* コンテナ */
.bl_bottomMenu{
    display: none;
    padding: 10px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 900;
}
.bl_bottomMenu .bl_inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
@media (min-width:768px){
    .bl_bottomMenu{
        padding: 0;
        bottom: 20px;
    }
    .bl_bottomMenu .bl_inner{
        justify-content: center;
    }
}

/* ショップボタン */
.el_cartBtn{
    background-color: #ce9300;
    border-radius: 60px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-size: 18px;
    transition: 0.3s;
    width: calc( 100% - 140px );
    height: 60px;
}
.el_cartBtn::before{
    background-image: url("../img/icon_cart.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    content: '';
    display: block;
    margin-right: 10px;
    width: 30px;
    height: 30px;
}
.el_cartBtn:hover{
    opacity: 0.7;
}
@media (min-width:768px){
    .el_cartBtn{
        font-size: 30px;
        width: 500px;
        height: 80px;
    }
    .el_cartBtn::before{
        width: 40px;
        height: 40px;
    }
}

/* ページトップボタン */
.el_pageTop{
    margin: auto;
    text-align: center;
    text-decoration: none;
    width: 120px;
    height: 72px;
}
.el_pageTop a{
    background-image: url("../img/img_pagetop.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: block;
    text-decoration: none;
    transition: 0.3s;
    width: 100%;
    height: 100%;
}
.el_pageTop a:hover{
    opacity: 0.5;
}
@media (min-width:768px){
    .el_pageTop{
        position: fixed;
        right: 20px;
        bottom: 20px;
    }
}

/*--------------------------------------------------------
    フッター
--------------------------------------------------------*/
.ly_footer{
    background-color: #4f294a;
    margin-top: 50px;
    padding: 20px 20px 100px;
    position: relative;
    z-index: 30;
}
.ly_footer::before{
    background-image: url("../img/img_footerBg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    content: '';
    display: block;
    width: 100%;
    height: 50px;
    position: absolute;
    top: -49px;
    left: 0;
}
.ly_footer p,
.ly_footer .el_tel{
    color: #fff;
    font-size: 16px;
    text-align: center;
}
.ly_footer a:hover{
    opacity: 0.5;
}
.ly_footer .el_footerLogo{
    display: block;
    margin: 0 auto;
    max-width: 320px;
}
.ly_footer .bl_flexCont{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    margin: 30px auto;
}
.ly_footer .el_btn{
    background-color: #fff;
    color: #000;
    font-size: clamp(1.125rem, 0.903rem + 0.46vw, 1.25rem); /* 18~20px */
    width: 100%;
}
.ly_footer .el_btn+.el_btn{
    margin-top: 20px;
}
.ly_footer .el_btn:hover{
    opacity: 0.7;
}
.ly_footer .el_btn.twoline{
    max-width: 450px;
}
.ly_footer .el_tel{
    display: block;
}
@media (min-width:768px){
    .ly_footer{
        padding-bottom: 120px;
    }
    .ly_footer .bl_flexCont{
        justify-content: center;
    }
    .ly_footer .el_btn{
        margin: 0;
    }
    .ly_footer .el_btn+.el_btn{
        margin-top: 0;
        margin-left: 20px;
    }
    .ly_footer .el_btn br{
        display: none;
    }
    .ly_footer .el_tel{
        display: inline-block;
    }
}

/* コピーライト */
.ly_footer .el_copyright{
    font-size: 14px;
    margin-top: 30px;
    text-align: center;
}

/*--------------------------------------------------------
    ヘルパー
--------------------------------------------------------*/
/* clear fix  */
.clear::before, .clear::after,
.hp_clearFix::before,
.hp_clearFix::after{
    content: "";
    display: table;
    table-layout: fixed;
}
.clear::after,
.hp_clearFix::after{
    clear: both;
}

/* フォントサイズ */
.hp_fzXS{
    font-size: 12px!important;
}
.hp_fzSm{
    font-size: 14px!important;
}
.hp_fzMd{
    font-size: 18px!important;
}
.hp_fzLg{
    font-size: 24px!important;
}
.hp_fzXL{
    font-size: 32px!important;
}
.hp_fzXXL{
    font-size: 40px!important;
}
.hp_fzXXXL{
    font-size: 50px!important;
}
.hp_fz20{
    font-size: 20px!important;
}

/* フォントウェイト */
.hp_fwBold{
    font-weight: bold!important;
}

/* フォントカラー */
.hp_fcWhite{
    color: #fff!important;
    font-weight: bold;
}
.hp_fcYellow{
    color: #ce9300!important;
    font-weight: bold;
}

/* 上マージン */
.hp_mt1rem{
    margin-top: 1rem !important;
}
.hp_mt2rem{
    margin-top: 2rem !important;
}
.hp_mt3rem{
    margin-top: 3rem !important;
}
.hp_mt4rem{
    margin-top: 4rem !important;
}
.hp_mt5rem{
    margin-top: 5rem !important;
}
.hp_mt6rem{
    margin-top: 6rem !important;
}
.hp_mt7rem{
    margin-top: 7rem !important;
}
.hp_mt8rem{
    margin-top: 8rem !important;
}
.hp_mt9rem{
    margin-top: 9rem !important;
}
.hp_mt10rem{
    margin-top: 10rem !important;
}
.hp_mt0{
    margin-top: 0!important;
}

/* 下マージン*/
.hp_mb1rem{
    margin-bottom: 1rem !important;
}
.hp_mb2rem{
    margin-bottom: 2rem !important;
}
.hp_mb3rem{
    margin-bottom: 3rem !important;
}
.hp_mb4rem{
    margin-bottom: 4rem !important;
}
.hp_mb5rem{
    margin-bottom: 5rem !important;
}
.hp_mb6rem{
    margin-bottom: 6rem !important;
}
.hp_mb7rem{
    margin-bottom: 7rem !important;
}
.hp_mb8rem{
    margin-bottom: 8rem !important;
}
.hp_mb9rem{
    margin-bottom: 9rem !important;
}
.hp_mb10rem{
    margin-bottom: 10rem !important;
}
.hp_mb0{
    margin-bottom: 0 !important;
}

/* マージンなし */
.hp_mNone{
    margin: 0!important;
}

/* スペーサー */
.bl_spacer{
    margin: 120px auto;
    width: 100%;
}

/* 文章の揃え */
.hp_txtCenter{
    text-align: center !important;
}
.hp_txtLeft{
    text-align: left !important;
}
.hp_txtRight{
    text-align: right !important;
}

/* 表示 */
.hp_pcOnly{
    display: none;
}
@media (min-width:768px){
    .hp_spOnly{
        display: none;
    }
    .hp_pcOnly{
        display: block;
    }
}
@media (min-width:1024px){
    .hp_none{
        display: none;
    }
}