
/* header */


.l-header {

  height: 86px;
  position: fixed;
  transition: all 0.3s;
  z-index: 10;
  width: 100%;
}

.header-inner{
  width: 90%;
  padding: 0 60px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;

}
@media screen and (max-width: 768px) {
  .l-header {
    height: 64px;
  
  }
  .header-inner{
    
    padding: 0 0px;
} 
}
.l-header.is-active {
  height: 64px;
  align-items: center;
  background-color: #070707;
}
@media screen and (max-width: 768px) {
  .l-header__logo {
    width: 120px;
    display: flex;
    align-items: center;
  }
}



.l-header .humburgermenu__btn,.humburgermenu{
  display: none;
}

/* スクロールダウン */
/*スクロールダウン全体の場所*/
.scrolldown1{
  /*描画位置※位置は適宜調整してください*/
position:absolute;
right:2%;
bottom:150px;
}

/*Scrollテキストの描写*/
.scrolldown1 span{
  /*描画位置*/
position: absolute;
left:-10px;
top: -55px;
  /*テキストの形状*/
color: #FFFFFF;
font-size: 0.7rem;
letter-spacing: 0.05em;
-ms-writing-mode: tb-rl;
-webkit-writing-mode: vertical-rl;
writing-mode: vertical-rl;
display: inline-block;
}

/* 線の描写 */
.scrolldown1::after{
content: "";
  /*描画位置*/
position: absolute;
top: -100px;
  /*線の形状*/
width: 1px;
height: 80px;
background:#ffffff;
  /*線の動き1.4秒かけて動く。永遠にループ*/
animation: pathmove 1.4s ease-in-out infinite;
opacity:0;
display: inline-block;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
0%{
  height:0;
  top:0;
  opacity: 0;
}
30%{
  height:80px;
  opacity: 1;
}
100%{
  height:0;
  top:50px;
  opacity: 0;
}
}

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

 .l-header .humburgermenu__btn,.humburgermenu{
    display: block;
  }
  .header__item,.header__item__btn{
    display: none;
  }
  .humburgermenu__btn{
    display: inline-block;
    position: fixed;
    right: 50px;
    z-index: 1;
    width: 50px;
    height: 40px;
    border-radius: 5px;
    top: 10px;
  }

  .humburgermenu .show{
    display: block;
}
  
  
  /*ボタン内側*/
  .humburgermenu__btn span {
    display: inline-block;
    transition: all 0.4s; /*アニメーションの設定*/
    position: absolute;
    left: 50px;
    height: 2px;
    border-radius: 5px;
    background: rgb(253, 251, 251);
    width: 45%;
  }
  
  .humburgermenu__btn span:nth-of-type(1) {
    top: 13px;
  }
  
  .humburgermenu__btn span:nth-of-type(2) {
    top: 19px;
  }
  
  .humburgermenu__btn span:nth-of-type(3) {
    top: 25px;
  }
  
  .humburgermenu__btn span:nth-of-type(3)::after {
    content: ""; /*3つ目の要素のafterにMenu表示を指定*/
    position: absolute;
    top: 5px;
    left: -2px;
    color: #cccccccc;
    font-size: 0.6rem;
    text-transform: uppercase;
  }
  
  /*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/
  .humburgermenu__btn.active span:nth-of-type(1) {
    top: 14px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  
  .humburgermenu__btn.active span:nth-of-type(2) {
    opacity: 0;
  }
  
  .humburgermenu__btn.active span:nth-of-type(3) {
    top: 26px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
  
  .humburgermenu__btn.active span:nth-of-type(3)::after {
    content: "Close"; /*3つ目の要素のafterにClose表示を指定*/
    transform: translateY(0) rotate(-45deg);
    top: 5px;
    left: 4px;
  }

  .humburgermenu {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
   background: linear-gradient(to left, #161a1e, #293844);
    text-align: center;
    display: none;
    z-index: -1;
    color: #ffffff;
    
  }

  .humburgermenu__list{
     display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 16px;
    font-weight: bold;
   
  }

  .menu__item{
    padding: 10px;
  }

   .humburgermenu__list a{
      color: #ffffff;
   }


/*Scrollテキストの描写*/
.scrolldown1 span{

left:-25px;
top: -55px;

}

/* 線の描写 */
.scrolldown1::after{

  top: -100px;
  left:-15px;

  }

}


/* global-nav hover */
/*==================================================
　5-3-3 左から右に線が伸びる（下部）
===================================*/
.p-global-nav__item .p-global-nav__link{
  /*線の基点とするためrelativeを指定*/
position: relative;
}

.p-global-nav__item .p-global-nav__link:hover{
color:#FFFFFF;
}

.p-global-nav__item .p-global-nav__link::after {
  content: '';
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: 0;
  left: 10%;
  /*線の形状*/
  width: 80%;
  height: 2px;
  background:#FFFFFF;
  /*アニメーションの指定*/
  transition: all .3s;
  transform: scale(0, 1);/*X方向0、Y方向1*/
  transform-origin: left top;/*左上基点*/
}

/*現在地とhoverの設定*/
.p-global-nav__item .p-global-nav__link:hover:after{
  transform: scale(1, 1);/*X方向にスケール拡大*/
}

/* top */
.top{
  background-image:url(./image/top-img.png) ;
  height: 90vh;
  background-size: contain; 
  background-repeat: no-repeat;
  text-align: center;
  background-attachment: fixed;
  background-position: center;

}

@media screen and (max-width: 768px) {
  .top{
  
    background-attachment: scroll;
   
  }
}

/* .top{

  background-image:url(./image/black-bg.png),url(./image/section1.png);
  height: 100vh;
  background-size: cover,cover; 
  text-align: center;
  background-attachment: fixed,fixed;
  background-position: center, center;
} */

.top__text .neontext {
  color:#ffffff;
  font-size: 3.5rem;
  -webkit-text-stroke: 0.07rem #0515a7;
  text-stroke: 0.07rem #0515a7;
  font-weight: 700;
  text-shadow: 0 0 1rem #0515a7,0px 0px 2rem #0515a7;

}

.top__text{
  white-space: nowrap;
  max-width: 1024px;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 50px;
  font-weight: 700;
  color: #FFFFFF;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
/* 
.top__btn{
  position: absolute;
  top: 70%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 220px;
} */


@media screen and (max-width: 768px) {
  .top__text .neontext {
    color:#ffffff;
    font-size: 2.5rem;
    -webkit-text-stroke: 0.07rem #0515a7;
    text-stroke: 0.07rem #0515a7;
    font-weight: 700;
    text-shadow: 0 0 1rem #0515a7,0px 0px 2rem #0515a7;
  
  }

.top__text{
  white-space: nowrap;
  max-width: 1024px;
  position: absolute;
  top: 50%;
  left: 50%;
  color: #FFFFFF;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: left;
  line-height: 45px;
}



}


/* fw */


.first-view{
  position: relative;
  background-image:url(./image/first-view.jpg);
  height: 70vh;
  background-size: cover; 
  text-align: center;
  background-attachment: fixed;
  background-position: center;
  z-index: 1;  

}
@media screen and (max-width: 768px) {
  .first-view{
  
    background-attachment: scroll;
   
  }
}


/* 料金表 */

.flavor{
  border-bottom: 1px solid #eee;
  
}

.patarn2 p{
  margin-bottom: 30px;
}

#shisha{
  text-align: center;
}

.value{
  padding: 50px 0;
  max-width: 1110px;
  margin: 0 auto;
}
table {
  border-collapse: collapse;
  width: 100%;
  box-shadow: 0 0 15px -6px #00000073;
}

table th,
table td {

  border-bottom: 1px solid #eee;
}
table thead th {
    font-size: .85em;
    padding: 1em;
}

table tbody th {
  text-align: left;
  padding: 28px 30px;
}
.txt{
   text-align: left;
 
}
.price{
  text-align: right;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  table{
   width: 90%;
    margin: 0 auto;
  }

  table tbody th {
    text-align: left;
    padding: 8px 10px;
  }
  
  /* table th, table td {
   display: block;
} */
#shisha{
  width: 90%;
  margin: 0 auto;
}

}
.section3{
  max-width: 1110px;
  margin: 0 auto;
}

.works {
  margin: 139px auto;
}

.work-item {
  display: flex;
  gap: 100px;
  margin-top: 45px;
}

.work-item.reverse {
  flex-direction: row-reverse;
}

.work-image {
  width: 53%;
  min-width: 300px;
}

.work-image img {
  text-align: center;
  height: auto;
  width: 100%;
}

.work-text {
  width: 52%;

  margin-right: auto;
  font-weight: var(--bo--font-weight);
}
.work-text .work-title {
  font-size: 45px;
  margin-bottom: 10px;
  color: var(--main-color);
  text-align: left;
  font-weight: var(--bo--font-weight);
}



.work-list {
  margin-top: 60px;
}

.work-skill {
  font-weight: var(--re--font-weight);
  display: flex;
  align-items: center;
  color: var(--main-color);
  margin-right: auto;
  font-weight: var(--re--font-weight);
}

.work-desc {
  margin-top: 1rem;
  text-align: center;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

/* tb */
@media screen and (max-width: 1024px) {
  .work-title {
    font-size: 32px;
    margin: 30px 0px 20px 0px;
  }
  .work-list .work-item .item3 {
    padding-top: 40px;
  }
  .work-text {
    padding: 0px;
  }
  .work-item {
    display: flex;
    gap: 10px;
    margin-top: 45px;
  }
}
@media screen and (max-width: 768px) {
  .section3 {
    padding: 0px 20px;
  }

  .work-skill {
    font-size: 15px;
    margin: 20px 0px 105px 0px;
    width: 100%;
    margin-right: auto;
  }
  .work-list {
    padding-left: 0px;
  }
  .work-item {
    display: block;
  }
  .work-text {
    width: 100%;
    padding: 0px;
  }
  .work-text .work-title {
    font-size: 30px;
  }
  .work-image {
    width: 90%;
    margin: 0 auto;
  }
  .works {
    margin: 60px 0px 60px 0px;
  }
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  .work-list .work-item .item3 {
    padding-top: 0px;
  }
}





/* company */


.bg_pattern {
  background-color: #120E19;;
  z-index: -1;
}
.Polka_v2 {
  background: linear-gradient(309deg, rgba(21, 14, 36, 0.2), rgba(35, 49, 90, 0.2));
  /* background-image:  radial-gradient(#f7e5b0 2px, transparent 2px), radial-gradient(#fae9b6 2px,#120E19 2px); */
  background-size: 40px 40px;
  background-position: 0 0,20px 20px;
}
.section1{

    padding: 100px 0;
    max-width: 1110px;
    margin: 0 auto;
    
}

.section1 .cmn__btn{
  text-align: center;
}

.message__underline{
  background: linear-gradient(transparent 90%, #778899 0%);
  max-width: 666px;
}

.service__top{
  font-weight: 400;
  text-align: left;
  padding-top: 20px;
  position: relative;
  z-index: 1;
}
.concept-1{

  position: relative;
  z-index: 1;
}

.concept-1::after{
  content: url(./image/after1.png);
  right: 0;
  position: absolute;
  z-index: -1;
  bottom: -80px;
}

.concept-2{
  position: relative;
  z-index: 1;
}

.concept-2::after{
  content: url(./image/after2.png);
  right: 0;
  position: absolute;
  z-index: -1;
  bottom: -80px;
}

@media screen and (max-width: 768px) {
  .service__top{
    font-size: 12px;
    font-weight: 500;
    text-align: left;
    padding: 30px 0px;
    margin: 0 auto;
  }

  .concept-1::after{
    content: url(./image/after1-sp.png);
    right: 0;
    position: absolute;
    z-index: -1;
    bottom: -40px;
  }
  
  .concept-2::after{
    content: url(./image/after2-p.png);
    left: 0;
    position: absolute;
    z-index: -1;
    bottom: -40px;
  }
  
}

.company__dream{
  text-align: center;
  font-size: 15px;
  font-weight: 300;
  padding: 40px 0px;
}



/* recruit */

.section5{
  padding: 50px 0;
  max-width: 1110px;
  margin: 0 auto;
  display: flex;
  justify-content: center;

}

.recruit__title{
  background: linear-gradient(309deg, rgba(21, 14, 36, 0.2), rgba(35, 49, 90, 0.2));
    /* background-image: radial-gradient(#f7e5b0 2px, transparent 2px), radial-gradient(#fae9b6 2px,#120E19 2px); */
    background-size: 40px 40px;
    background-position: 0 0,20px 20px;
  width: 60%;
  text-align: center;
  padding: 50px 0px;
  
}

.section5 .recruit__text{
  padding: 20px 0px 0px 0px;
  font-size: 1.2rem;
}
.section5 .recruit__text--phone a{
  font-size: 12px;
  color: #333333!important;
}

.p-recruit__reverse {
  flex-direction: row-reverse;
  

}

.works__img--l img{
  width: 100%;
}


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

    max-width: 1110px;
    margin: 0 auto;
    display: block;
    justify-content: center;
    padding: 50px 10px 10px 10px;
    
  
  }


  .recruit__title {
    width: 100%;
}


.works__img--l img{
  width: 100%;
}


}


/* contact */
.contact__messege{
  padding: 30px 0px;
}

#section6{
  text-align: center;
  background-color:#F7F7F7;
  padding: 80px 0px;
}


/* footer */

.footer{
    
   padding: 0px 0px 100px 0px;
   margin: 0 auto;

}
.l-footer__nav .p-global-nav__list{
  justify-content: center;
}

.copyright {
    margin-top: 22px;
    text-align: center;
    color: #FFFFFF;
    font-size: 10px;
}





.c-heading-primary--white{
  color: #FFFFFF;
  display: block;
  height: 44px;
  font-size: 36px;
}

.c-heading-primary__sub{
display: block;
font-size: 14px;
}




.header__inner{
  display: flex;
  align-items: center;
  z-index: 10;
  justify-content: space-between;
}




@media screen and (max-width: 768px) {
  .p-global-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    display: flex;
    visibility: hidden;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease;
    opacity: 0;
    background-image: linear-gradient(135deg, #7633a4, #250d65);
  }
  .p-global-nav.is-show {
    visibility: visible;
    opacity: 1;
  }
}
.p-global-nav__list {
  display: flex;
  padding-left: 30px;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .p-global-nav__list {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 0;
  }
}
.p-global-nav__item {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 960px) {
  .p-global-nav__item {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 768px) {
  .p-global-nav__item {
    margin-bottom: 20px;
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-global-nav__item:not(:last-child) {
  margin-right: 25px;
}
@media screen and (max-width: 768px) {
  .p-global-nav__item:not(:last-child) {
    margin-right: 0;
  }
}
.p-global-nav__link {
  position: relative;
  display: inline-block;
  color: #fff;
}
.p-global-nav__link::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  display: block;
  width: 0;
  height: 1px;
  content: "";
  transition: width 0.3s;
  background-color: #fff;
}


/* works-lowpage */


.l__works__wrapper1,.l__works__wrapper2{
  display: flex;
  gap: 30px;
}


#l__works--page{

  max-width: 1110px;
  margin: 0 auto;
}


.l__works__wrapper1 .works__image{
  width: 30%;
  padding-bottom: 28px;
}

.l__works__wrapper1 .l__works__text{
  font-size: 16px;
  font-weight: 400;
  font-family:'Montserrat';
  text-align: center;
  padding-top: 12px;
}
.l__works__wrapper2 .l__works__text{
  font-size: 16px;
  font-weight: 400;
  font-family:'Montserrat';
  text-align: center;
  padding-top: 12px;
}
.l__works__wrapper2 .works__image{
  width: 30%;
}
.l__works__wrapper2 img{
  width: 100%;
}
.l__works__wrapper1 img{
  width: 100%;
}

.l__works__wrapper2 .l__works__text{
  font-size: 16px;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .l__works__wrapper1,.l__works__wrapper2{
    display: block;
  }

  .l__works__wrapper2 .works__image{
    width: 90%;
    padding-bottom: 80px;
    margin: 0 auto;
  }
  .l__works__wrapper1 .works__image{
    width: 90%;
    padding-bottom: 80px;
    margin: 0 auto;
  }

  
  
}


/* recruit-lowpage */

.adress{
  text-align: center;
}

#l__recruit--page .l__recruittop__text h3{
 font-size: 32px;
 font-weight: 300;
}
#l__recruit--page .l__recruittop__text h1{
 font-size: 72px;
 font-weight: bold;
}

#l__recruit--page .l__recruit__text{
font-size: 16px;
font-weight: 400;
color: #120E19;
text-align: center;
padding: 35px 0px;
}



.recruit__heading{
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}



.c-table01 th,td{
  padding: 28px 30px;
}



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

  .drink-list th{
    width: 40%;
  }
  #l__recruit--page{
    padding-top: 40px;
  }

  #l__recruit--page .l__recruittop__text h3{
    font-size: 18px;
    font-weight: 300;
  
   }
   #l__recruit--page .l__recruittop__text h1{
    font-size: 48px;
    font-weight: bold;
    line-height: 50px;
   }

   .p-job-list__detail{

    padding: 20px 10px;
   }

   .p-job-list__table{

    padding-bottom: 40px;
   
   }

   
.c-heading-secondary{
  padding: 75px 0px 27px 0px;
  font-size: 24px;
}



.recruit__heading{
 
  font-size: 16px;
}

.p-job-list,.l-inner{
  width: 100%;

}

.c-table01 th,td{
  padding: 10px 0px 10px 20px
}

}
  

.company__dream .l__company__text{
  font-size: 15px;
  font-weight: 300;
}


.p-job-list__table{

  max-width: 1110px;
  margin: 0 auto;
  padding-bottom: 60px;
}

.p-job-list__table td{
  max-width: 800px;
  padding-left: 5rem;
  text-align: left;
}

.p-job-list__table th{
  min-width: 100px;
  text-align: left;
}


.p-job-list__table .c-table01{
width: 100%;
}


.p-job-list{
  margin: 40px auto;

}

.map{
  max-width: 1110px;
  margin: 0 auto;
}
.map iframe{
  max-width: 1110px;
  margin: 0 auto;
}


/* 予約のバー */
/*リンクの形状*/
#page-top a{
  display: flex;
  justify-content:center;
  align-items:center;
  background:#130001;
  border-radius: 5px;
  width: 200px;
  height: 60px;
  color: #fff;
  text-align: center;
  text-transform: uppercase; 
  text-decoration: none;
  font-size:0.6rem;
  transition:all 0.3s;
  font-size: 1.3rem;
  font-weight: 700;

}

.tel{
  border: 5px solid #05095a;
  border-radius: 5px;
  
}

.line{
  border: 5px solid #00b900;
  border-radius: 5px;

}

#page-top a:hover{
  background: #777;
}


.reserve{
  display: flex;
  gap: 2rem;
  background-color: #070707;
  width: 100%;
  justify-content: center;
  align-items: center;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 0;
  bottom:0;
  /* z-index: 2; */
    /*はじめは非表示*/
  /* opacity: 0; */
  /* transform: translateY(100px); */
 
}

/*　上に上がる動き　*/

#page-top.UpMove{
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 1;
  transform: translateY(0);
  }
  to {
    opacity: 1;
  transform: translateY(100px);
  }
}




#footer{
  position: relative;
  z-index: 2;
}



/*tabの形状*/
.tab{
	display: flex;
	flex-wrap: wrap;
  justify-content: center;
}

.tab li a{
	display: block;
	background:#0f0f0f;
	margin:0 2px;
	padding:10px 20px;

}
/*liにactiveクラスがついた時の形状*/
.tab li.active a{
	background:#383737;
}


.menu-wrapper .shisha-titile::after{
  content: "+tax10%";
  color: #FFFFFF!important;
  font-size: 0.8rem;
  font-weight: 300;
  display: inline-block;
  width: 50px;
  -webkit-text-stroke:0.00rem #ffffff

}
.menu-wrapper .drink-titile::after{
  content: "+tax10%";
  color: #FFFFFF!important;
  font-size: 0.8rem;
  font-weight: 300;
  display: inline-block;
  width: 50px;
  -webkit-text-stroke:0.00rem #ffffff

}
.menu-wrapper .cbd-titile::after{
  content: "+tax10%";
  color: #FFFFFF!important;
  font-size: 0.8rem;
  font-weight: 300;
  display: inline-block;
  width: 50px;
  -webkit-text-stroke:0.00rem #ffffff

}

.menu-wrapper{

  max-width: 800px;
  margin: 0 auto;
}


.menu-wrapper h3{
  text-align: center;
  padding: 10px 0px;
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 30px;
}

.charge .system-text{
  width: 95%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .area {
    padding:0px;
  }

  #page-top a{
    display: flex;
    justify-content:center;
    align-items:center;
    background:#130001;
    border-radius: 5px;
    width: 140px;
    height: 60px;
    color: #fff;
    text-align: center;
    text-transform: uppercase; 
    text-decoration: none;
    font-size:1.1rem;
    transition:all 0.3s;
  
  }
.drink-list{
  padding: 0.5em 0px;
  color: #ffffff;
  border-bottom: solid #ffffff 1px;/*下のボーダー*/
}
 
  .system-list{
  
    padding: 0.5em 0px;
    color: #ffffff;
    border-top: solid #ffffff 1px;/*上のボーダー*/
    border-bottom: solid #ffffff 1px;/*下のボーダー*/
 
  }

}


.system-list{
  line-height: 1.5;
  color: #ffffff;
  border-top: solid #ffffff 1px;/*上のボーダー*/
  border-bottom: solid #ffffff 1px;/*下のボーダー*/
 
}

.drink-list{
  line-height: 1.5;
  color: #ffffff;

  border-bottom: solid #ffffff 1px;/*下のボーダー*/
 
}

.drink-list .system-text{
  text-align: center;
}

.system-text{

  padding: 0.5em 0;
  
}

.option{

  border-bottom: solid #ffffff 1px;
  font-weight: 600;
  padding: 20px 0px 10px 0px;
  font-size: 1.1rem;

}

.cbc-list th{
  padding: 0px 50px;

}

#drink{
  text-align: center;
}

.flavor h4{
  font-weight: 600;
  padding: 20px 0px 10px 0px;
  font-size: 1.1rem;

  }


.drink-list h4{
font-weight: 600;
padding-top: 10px;
font-size: 1.1rem;
text-align: center;
border-top: solid #ffffff 1px;
}

@media screen and (max-width: 768px) {
  .cbc-list th{
    padding: 0px 0px;
  
  }

  .drink-list h4{
    font-size: 0.9rem;
    }

  #drink{
    width: 90%;
    margin: 0 auto;
  }

  #cbd{
   
    width: 90%;
    margin: 0 auto;
}
  #system{
   
    width: 90%;
    margin: 0 auto;
}

}