    body {
        font-size: 16px;
        font-family: 'Roboto', sans-serif;
    }
    .ck-editor__editable_inline {
        min-height: 400px !important;
    }
    .trix-content h1 {
        font-size: 1.5rem;
    }
    .header {
  display: flex;
  justify-content: space-between;
  background: #FFFFFF;
  padding: 5px;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.badge-danger {
  color: #fff;
  background-color: #e3342f;
}

.fa-asterisk {
  color: #1E90FF;
}

.header .logo {
  /*padding-left: 170px;*/
  /*padding-left: 70px;*/
  font-size: 20px;
}

.header .logo a {
  color: #000000;
  text-decoration: none;
}

.nav-button {
  display: none;
}

.nav a {
  /*color: #000;*/
  text-decoration: none;
  font-size: 16px;
  /*color: #448aff;*/
  color: #000000;
}

.nav li {
  display: inline-block;
  /*margin: 0 10px;*/
}

.pagination {
  display: flex;
  justify-content: center;  
}

.pagination li {
  margin: 3px 3px;
  padding: 2px 2px;
  /*font-weight: bold;*/
  font-size: 1.2rem;
}

.nav-wrap.open {
  display: block;
}

.nav-wrap.close {
  display: none;
}

.doubleline {
  /*background-image:url(画像のURL);
     background-repeat:repeat-x;
     background-position: center;*/
  -webkit-text-decoration: line-through double white;
          text-decoration: line-through double white;
}

#full_reservation {
  color: red;
  font-weight: bold;
}

.dropdown-menu a i {
  color: #1E90FF;
}

.ecal_menu a i {
  color: #8A2BE2;
}

.title_cafe {
  text-align: left;
}

.title_cafe h3 {
  position: relative;
  padding: 0.25em 0;
}

.title_cafe h3:after {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(to right, #8A2BE2, transparent);
}

@media screen and (min-width: 481px) {
  .nav-wrap {
    display: block !important;
    padding: 5px 5px;
  }
}

.content {
  padding: 20px;
}
#ecal_ptcom {
    border:0;
    overflow-y: auto;
    width: 80%;
    height: 650px;
}

@media screen and (max-width: 768px) {
  .header .logo {
    padding-left: 15px;
    font-size: 18px;
  }
  #ecal_ptcom {  
    width: 90%;
    height: 450px;
  }
}

@media screen and (max-width: 480px) {
  .header .logo {
    padding-left: 10px;
    font-size: 18px;
  }

  .nav-button {
    display: block;
    cursor: pointer;
  }

  .pts_hamberger {
    padding: 15px;
  }

  .nav-wrap {
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    /*height: 100%;*/
  }

  .nav-wrap .nav {
    height: 100%;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .nav-wrap li {
    display: block;
    text-align: left;
    margin: 1em 2em;
    width: 100%;
  }

  .nav-wrap li a {
    color: #fff;
    font-size: 18px;
  }

  /*メニューボタンのエフェクト*/

  .nav-button,
  .nav-button span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
  }

  .nav-button {
    z-index: 20;
    position: relative;
    /*width: 40px;
    height: 36px;*/
    width: 38px;
    height: 30px;
  }

  .nav-button span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #666666;
    border-radius: 4px;
  }

  .nav-button span:nth-of-type(1) {
    top: 0;
  }

  .nav-button span:nth-of-type(2) {
    /*top: 16px;*/
    top: 13px;
  }

  .nav-button span:nth-of-type(3) {
    bottom: 0;
  }

  .nav-button.active span {
    background-color: #FFFFFF;
  }

  .nav-button.active span:nth-of-type(1) {
    /*-webkit-transform: translateY(16px) rotate(-45deg);
    transform: translateY(16px) rotate(-45deg);*/
    transform: translateY(13px) rotate(-45deg);
  }

  .nav-button.active span:nth-of-type(2) {
    opacity: 0;
  }

  .nav-button.active span:nth-of-type(3) {
    /*-webkit-transform: translateY(-16px) rotate(45deg);
    transform: translateY(-16px) rotate(45deg);*/
    transform: translateY(-13px) rotate(45deg);
  }
  #ecal_ptcom {
    width: 100%;
    height: 380px;
  }
}

.gnav {
    display: flex;
    height: 2rem;
    margin: 0 auto;
    width: auto;
    /*width: 1000px;*/
}
.gnav > li {/*親階層のみ幅を25%にする*/
    width: auto;
}
/*全てのリスト・リンク共通*/
.gnav li {
    list-style: none;
    position: relative;
}
.gnav li a {
    background: #001b34;
    border-right: 1px solid #eee;
    color: #fff;
    display: block;
    height: 2rem;
    line-height: 2rem;
    text-align: center;
    text-decoration: none;
    width: 100%;
}

/*子階層以降共通*/
.gnav li li {
    height: 0;
    overflow: hidden;
    transition: .5s;
}
.gnav li li a {
    border-top: 1px solid #eee;
}
.gnav li:hover > ul > li {
    height: 2rem;
    overflow: visible;
}


/* bottom navigator  */
.bottom-sticky-nav {
    display: none;
}
@media (max-width: 720px) {
  .bottom-sticky-nav {
  height: 53px;
  position: fixed;
  display: block;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  background: #ffffff;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  }
  .bottom-sticky-nav ul {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  }
  .bottom-sticky-nav ul li {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  }
  .bottom-sticky-nav ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px;
    height: 53px;
    color: #00587a;
    text-decoration: none;
  }
  .bottom-sticky-nav ul li a:hover,
  .bottom-sticky-nav ul li a:focus {
  text-decoration: none;
  }
  .bottom-sticky-nav ul li a.is-active {
  background: #00587a;
  color: #ffffff;
  }
  .bottom-sticky-nav ul li a i {
  font-size: 18px;
  }
  .bottom-sticky-nav ul li a span {
  font-size: 13px;
  font-weight: bold;
  line-height: 1.2;
  }
  #cafe_footer {
    margin-bottom: 53px;
  }
  /*.go-top.show {  
    bottom : 64px!important;
  }*/
}
