html {
    height: 100%;
}

@media screen and (max-device-width: 768px) {
    #bgvid {
        display: none;
    }
}


@media screen and (max-device-width: 768px) {
    body::before {
        guri2 display: block;
        position: fixed;
        top: 0;
        left: -1px;
        z-index: -1;
        width: 100%;
        background-position: 50%;
        background-size: contain;


    }

}





.fixed-top {
    transform: translate3d(0, 0, 0);
}

@charset "utf-8";

/* ======================== */
/* ▼共通装飾(兼モバイル用) */
/* ======================== */

/*
.card-img-top {
height: 100%;
width: 100%;
}
 */






/*--------------フォント-----------------*/

html {
    font-size: 1rem;
}

@media screen and (max-width: 768px) {
    html {
        font-size: 0.8rem;

    }
}


span {
    white-space: nowrap;
    display: inline-block;
}






/*--------------ジャンボトロン-----------------*/
.jumbotron--coffee {
    background: url(images/hed.jpg) center no-repeat;
    background-size: 100% auto;
}


/* .row の左右のネガティブマージンを0にする */
.row--nopadding {
    margin-left: 2;
    margin-right: 2;

}

@media screen and (max-width: 768px) {
    .row--nopadding {
        margin-left: 0;
        margin-right: 0;
    }
}

/* .row--nopadding の中にあるカラムの左右のパディングを0にする */
.row--nopadding > [class*="col-"] {
    padding-left: 2;
    padding-right: 2;
}

@media screen and (max-width: 768px) {
    .row--nopadding > [class*="col-"] {
        padding-left: 0;
        padding-right: 0;
    }
}

/* .row--nopadding の中にあるカラムの左右のパディングを5pxにする */
.row--nopadding2 > [class*="col-"] {
    padding-left: 5px;
    padding-right: 5px;
}

/* .row の左右のネガティブマージンを0にする */
.row--nopadding2 {
    margin-left: 5px;
    margin-right: 5px;
}

@media screen and (max-width: 768px) {
    .row--nopadding3 > [class*="col-"] {
        padding-left: 5px;
        padding-right: 5px;
    }
}



/* .fixedtop 固定  */







.nav-wrapper {
    background-color: rgba(255, 255, 255, .8);

    //    border-top: 1px solid $color-red;
    @media screen and (min-width:1024px) {
        //        position: fixed;
        border-bottom: 1px solid $color-blue;
    }
}

.nav-wrapper-active {
    background-color: rgba(255, 255, 255, .9);
    height: 36px;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 9;
    border-bottom: 1px solid $color-blue;
    box-shadow: 2px 2px 4px gray;
}

.nav {
    @media screen and (max-width: 767px) {
        position: fixed;
        top: 0;
        right: 0;
        height: 100%;
        width: 300px;
        margin-right: -300px;
        background-color: $color-light-gray;
        z-index: 100;
        border-left: 1px solid $color-blue;
    }

    @media screen and (min-width: 768px) {
        position: relative;
        margin: 0 auto !important;
        width: auto;

    }

    @media screen and (min-width: 1024px) {
        width: 980px;
    }
}

.clone-nav {
    background-color: rgba(255, 255, 255, .8);
    position: fixed;
    top: 40px;
    left: 0;
    z-index: 9;
    width: 100%;
    transition: .3s;
    transform: translateY(-100%);
}

.is-show {
    transform: translateY(0);
}

.top-nav {
    background-color: rgba(255, 255, 255, .8);
    height: 0px;
    width: 100%;
    //    position: relative;
    z-index: 9;

    @media screen and (min-width: 768px) {
        height: 38px;
        top: 0px;
        border-top: 1px solid $color-blue;
        border-bottom: 1px solid $color-blue;
    }
}


/* .footer 固定  */






.navbar-brand--m {
    width: 50%;

}


@media screen and (max-width: 768px) {
    .navbar img {
        max-width: 100%;
        height: auto;
    }

    .navbar-brand {
        max-width: 80%;
        height: auto;
    }
}

.navbar {
    font-size: 16px;
}



/*ページ内リンク */
div.anchor {
    display: block;
    padding-top: 70px;
    margin-top: -70px;
}


/*崩れ直し */
* {
    min-height: 0.01px;
}




/*--------------フェード-----------------*/
.fadein {
    opacity: 0;
    transform: translate(0, 50px);
    transition: all 300ms;
}

.fadein.scrollin {
    opacity: 1;
    transform: translate(0, 0);
}

/*--------------colsukima-----------------*/

.no-gutters {
    margin: 0;
    padding: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
    margin: 0;
    padding: 0;
}

/*--------------モーダル-----------------*/
.modal-middle {
    //モーダルウィンドウの縦表示位置を調整
    margin: 5% auto;
}

.modal-img_footer {
    //表示予定のテキストとボタンを中央揃え
    padding: .5em;
    text-align: center;
}



/*--------------navカスタム -----------------*/

.navbar-custom {
    background-color: #6E7070;
}

/* change the brand and text color */
.navbar-custom .navbar-brand,
.navbar-custom .navbar-text {
    color: rgba(255, 255, 255, .8);
}

/* change the link color */
.navbar-custom .navbar-nav .nav-link {
    color: #ffffff;
}

/* change the color of active or hovered links */
.navbar-custom .nav-item.active .nav-link,
.navbar-custom .nav-item:hover .nav-link {
    color: #dcdcdc;
}

/* for dropdown only - change the color of droodown */
.navbar-custom .dropdown-menu {
    background-color: #dcdcdc;
}

.navbar-custom .dropdown-item {
    color: #dcdcdc
}

.navbar-custom .dropdown-item:hover,
.navbar-custom .dropdown-item:focus {
    color: #dcdcdc;
    background-color: rgba(255, 255, 255, .5);
}







/*サンプルコードの縦横幅の設定画像スライダーには関係なし*/
body {}

.auto {
    margin: auto;
}




/*追加*/

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family:  "Mochiy Pop One", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #6e6e6e;
}


h6 {
    margin: 0;
}

.MyClass01 {
    /*カクカク見出し*/
    padding: 0.4em 0.5em;
    /*文字の上下 左右の余白*/
    color: #494949;
    /*文字色*/
    background: #f4f4f4;
    /*背景色*/
    border-left: solid 5px #7db4e6;
    /*左線*/
    border-bottom: solid 3px #d7d7d7;
    /*下線*/
}


.MyClass02 {
    /*二重線*/
    padding-bottom: .5em;
    border-bottom: 3px double #ccc;
}



/*カラム調整*/

.o-3column .col-6 {
    padding: 0 5px;
}


/*フォントサイズ*/

.font-small {
    font-size: 0.9rem;
    color: #1F1007;
}


.font-large {
    font-size: 1.1rem;
}


/*画像クリック不可*/
img {
    pointer-events: none;
}




#sectiontop {
    padding: 2rem 0;
    background: url(img/);
    background-position: center center;
    background-repeat: repeat;
    background-attachment: fixed;
   
}


#section1 {
    padding: 3rem 0;
    background: url(img/bg04.jpg);
    background-position: center center;
    background-repeat: repeat-x;
    background-size: contain;
    color: #444444;
}

#section2a {
    padding: 3rem 0;
    background-image:  url(img/727376.jpg);
    background-position: center center;
    background-repeat: repeat-x;
    background-size: contain;
 
}
#section2b {
    padding: 3rem 0;
    background-image:  url(img/727376b.jpg);
    background-position: center center;
    background-repeat: repeat-x;
    background-size: contain;

}

#section2c {
    padding: 3rem 0;
    background-image:  url(img/727376g.jpg);
    background-position: center center;
    background-repeat: repeat-x;
    background-size: contain;
  
}


#section3 {
    padding: 2rem 0;
    background: url(img/bg04.jpg);
    background-position: center center;
    background-repeat: repeat-x;
    background-size: contain;

}


@media screen and (max-width: 768px) {

    #sectiontop {
        padding: 2rem 0;
        background: url(img/);
        background-position: center center;
        background-repeat: repeat;
        background-attachment: fixed;
       
    }
    
    #section0 {
        background-color: #fff;
    }
    
    #section1 {
        padding: 3rem 0;
        background: url(img/bg04.jpg);
        background-position: center center;
        background-repeat: repeat-x;
        background-size: cover;
        color: #444444;
    }
    
    #section2a {
        padding: 3rem 0;
        background-image:  url(img/727376.jpg);
        background-position: center center;
        background-repeat: repeat-x;
        background-size: cover;
     
    }
    #section2b {
        padding: 3rem 0;
        background-image:  url(img/727376b.jpg);
        background-position: center center;
        background-repeat: repeat-x;
        background-size: cover;
    
    }
    
    #section2c {
        padding: 3rem 0;
        background-image:  url(img/727376g.jpg);
        background-position: center center;
        background-repeat: repeat-x;
        background-size: cover;
      
    }
    
    
    #section3 {
        padding: 2rem 0;
        background: url(img/bg04.jpg);
        background-position: center center;
        background-repeat: repeat-x;
        background-size: cover;
    
    }
    
}

/*
section:after {
    content: "";
    background-repeat: no-repeat;
    display: block;
    height: 100px;
    position: absolute;
    width: 100%;
}
#section1:after {
    background: url("separate1.svg");
}
#section2:after {
    background: url("separate2.svg");
}
#section3:after {
    background: url("separate3.svg");
}
#section4:after {
    background: url("separate2.svg");
}
#section5:after {
    background: url("separate3.svg");
}
#section6:after {
    background: url("separate2.svg");
}
#section7:after {
    background: url("separate3.svg");
}
*/

/*上TOP*/
.callout {
    padding: 20rem 0;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, .0)), to(rgba(255, 255, 255, .0))), url(img/top-main.png);
    background: linear-gradient(90deg, rgba(255, 255, 255, .0) 0, rgba(255, 255, 255, .0) 100%), url(img/top-main.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover
}

img.logo001 {
    margin: 0px auto;
    width: 600px;
}

/*余白消し*/
#wrap {
    overflow: hidden;
}



hr.hw {
    background-color: #ffffff;
}






/*メニュー*/
.menuPrice {
    width: 90%;
    margin: 0 auto 10px;
    color: #686868;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.menuLeft,
.menuRight {
    flex: 0 1 auto;
}

.centerLine {
    padding: 5px 15px;
    flex-grow: 2;
}

.centerLine hr {
    border-width: 1px 0px 0px 0px;
    border-style: dotted;
    border-color: #673b15;
}

.price_tax {
    font-size: 80%;
}

@media only screen and (max-width:479px) {
    h1 {
        font-size: 200%;
        margin: 0 0 50px 0;
    }

    .menuPrice {
        width: 100%;
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px dotted #673b15;
        flex-direction: column;
    }

    .centerLine hr {
        display: none;
    }
}

/*電話番号*/

@media(min-width: 768px) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}


.btn-tel {
    position: relative;
    display: block;
    border-radius: 50px;
    color: white;
    font-weight: bold;
    text-align: center;
    background: #651900;
    padding: 5px 0;
    margin: auto;
    max-width: 250px;
}

.btn-tel::after {
    content: "";
    background: url(img/telephone.svg) no-repeat center;
    background-size: contain;
    width: 24px;
    height: 24px;
    position: absolute;
    top: calc(50% - 12px);
    left: 15px;
}

.btn-tel2 {
    position: relative;
    display: block;
    border-radius: 50px;
    color: white;
    font-weight: bold;
    text-align: center;
    background: #00653e;
    padding: 5px 0;
    margin: auto;
    max-width: 250px;
}

.btn-tel2::after {
    content: "";
    background-size: contain;
    width: 24px;
    height: 24px;
    position: absolute;
    top: calc(50% - 12px);
    left: 15px;
}

/*読み込み*/

#animation{
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding:0 0 0 0;
}
dt{
  text-align: center;
  font-size: 18px;
  margin-bottom: 6px;
}

.loading {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #3f3f3f
}


.loading__img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/*カート*/
.box{
    margin:  5px;              /* 周りの余白指定 */
  float: left;
    width: 100%;
}

.boxContainer{
        display: flex;
    justify-content: space-between;
  
    max-width: 100%;
}

/*TOP画像*/
.no-gutters {
    margin:0;
    padding:0;
  }
   
  .no-gutters　> .col,
  .no-gutters　> [class*="col-"] {
    margin:0;
    padding:0;
  }



  .nav-link {
    display: block;
    padding: .0rem 0rem;
}