@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap');
#customer_header {
  font-size: 16px;
  line-height: 1.8;
  font-family: "Noto Serif JP", serif;
  padding-top: 80px;
}
#customer_header a:hover {
  text-decoration: none;
}
/* jumbotron */
.customer_jumbotron {
  color: #fff;
  background-color: transparent;
  text-align: center;
  background-image: url(../img/reservation_hero_bg.png);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 30vw;
}
.customer_title {
  letter-spacing: .1em;
  font-size: 30px;
  margin: 0;
  color: #333333;
  background-color: rgba(255, 255, 255, 0.8);
  width: 6em;
  height: 6em;
  border-radius: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: .1em;
}
.customer_title > span {
  font-size: 55%;
  margin-bottom: 0.5em;
  letter-spacing: .05em; }

/**** customer_nav ****/
.customer_container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.customer_toggler {
  border: none;
  padding: 4px 12px;
  font-size: 20px;
  line-height: 1;
  background-color: transparent;
  border-radius: 0;
}
.customer_toggler_icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='%23333333' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
#customer_nav {
  background-color: #f4ece2;
  padding-top: 0;
  padding-bottom: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.customer_brand {
  padding-top: 8px;
  padding-bottom: 8px;
  margin-right: 16px;
}
.customer_brand img {
  max-width: 100%;
  height: auto;
}
#customer_menu {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
#customer_menu > li {
  margin-right: 16px;
  margin-left: 16px;
}
#customer_menu > li > a {
  font-weight: 700;
  color: #333;
  display: block;
  padding: 8px;
}
#customer_menu > li > a:hover {
  color: #27497c;
}
.customer_buttons {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.customer_buttons li {
  flex: 0 0 auto;
}
.customer_buttons li > a {
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6px 24px;
  font-weight: 700;
  border: 1px solid transparent;
}
.customer_buttons li:not(:last-child) {
  border-right: 1px solid #fff;
}
.customer_buttons li > a i {
  margin-right: 4px;
}
.customer_btn_tel {
  background-color: #27497c;
  border-color: #27497c;
}
.customer_btn_tel > span {
  display: block;
}
.customer_btn_tel > span:first-child {
  font-size: .75em;
  font-weight: normal;
}
.customer_btn_reserve {
  background-color: #e18c84;
  border-color: #e18c84;
}
@media only screen and (min-width: 992px) {
  .customer_toggler, .customer_tel {
    display: none;
  }
  #customer_dropdown.collapse {
    display: flex !important;
    padding-left: 0;
    padding-right: 0;
  }
  #customer_menu {
    display: flex;
    align-items: center;
  }
  #customer_menu > li > a {
    position: relative;
  }
  #customer_menu > li > a:after {
    content: '';
    width: 75%;
    height: 2px;
    background-color: rgba(39, 73, 124, 0.75);
    display: block;
    position: absolute;
    bottom: 0;
    left: 12.5%;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .15s;
  }
  #customer_menu > li > a:hover:after {
    transform: scale(1, 1);
  }
}
@media only screen and (max-width: 991px) {
  .customer_container {
    align-items: center;
  }
  #customer_dropdown.navbar-collapse.collapse {
    width: 100%;
    flex-basis: 100%;
    flex-grow: 1;
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 0;
    padding-right: 0;
  }
  #customer_dropdown.navbar-collapse.collapse:not(.in) {
    display: none !important;
  }
  .customer_brand {
    padding-top: 15px;
    padding-bottom: 15px;
    width: 55%;
  }
  .customer_brand img {
    height: 50px;
    width: auto;
  }
  .customer_tel {
    display: inline-block;
    color: #333;
  }
  .customer_buttons {
    padding-top: 32px;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .customer_jumbotron {
    padding: 64px 32px;
  }
  .customer_title {
    width: 120px;
    height: 120px;
    font-size: 23.8px;
  }
}
@media only screen and (max-width: 991px) {
  .customer_jumbotron {
    padding: 32px 16px;
  }
}