@charset "UTF-8";
header {
  border-top: 7px solid #06044b;
}
header h1 {
  margin: 20px 0;
}
@media (max-width: 991px) {
  header h1 {
    margin: 10px 0;
  }
}

.contents-header {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contents-header {
    margin-top: 65px;
    padding: 50px;
  }
}
.contents-header h2 {
  color: white;
  font-family: "Roboto Slab", serif;
  font-size: 2.8648rem;
  font-weight: 500;
}

.en-menu {
  overflow-wrap: break-word;
}

/*ナビの余白変数*/
.en-nav {
  background: #f2f1ea;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 20px 0;
  -webkit-filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.1));
}
.en-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.en-nav li {
  font-family: "Roboto Slab", serif;
  font-weight: 300;
  font-size: 1.5rem;
  text-align: center;
  width: calc(20% - 10px);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.en-nav li a {
  background: #c85e27;
  border-radius: 5px;
  color: white;
  display: block;
  padding: 7px 0 5px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.en-nav li a:after {
  content: "\f0d7";
  display: block;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;
  margin-top: -3px;
}
.en-nav li a:hover {
  background: #960000;
}
@media screen and (max-width: 991px) {
  .en-nav {
    background: #c85e27;
    padding: 0;
  }
  .en-nav button {
    background: #c85e27;
    border: none;
    color: white;
    cursor: pointer;
    display: block;
    outline: none;
    padding: 10px 0;
    width: 100%;
  }
  .en-nav ul {
    border-top: 1px dotted rgba(255, 255, 255, 0.35);
    gap: 0px;
  }
  .en-nav li {
    border-bottom: 1px dotted rgba(255, 255, 255, 0.35);
    border-right: 1px dotted rgba(255, 255, 255, 0.35);
    margin: 0 !important;
    width: 50%;
  }
  .en-nav li:nth-of-type(even) {
    border-right: none;
  }
  .en-nav li:last-child {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
  .en-nav a {
    border-radius: 0 !important;
    padding: 10px 0 !important;
  }
  .en-nav a:after {
    content: none !important;
    margin: 0 !important;
  }
}

.en-menu-cat-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
@media screen and (max-width: 991px) {
  .en-menu-cat-fixed {
    top: 65px;
  }
}

.en-page h1 {
  color: white;
  font-family: "Roboto Slab", serif;
  font-size: 3.9268rem;
  font-weight: 400;
}

.en-menu .contents-header {
  background-image: url("../img/header/menu.jpg");
}

.en-drink .contents-header {
  background-image: url("../img/header/drink.jpg");
}

.en-comment {
  background: white;
  padding: 70px 0;
}

.en-notice {
  text-align: center;
}
.en-notice h2 {
  font-family: "Roboto Slab", serif;
  font-size: 2.427rem;
  font-weight: 400;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .en-notice h2 {
    position: relative;
    display: inline-block;
    padding: 0 55px;
  }
  .en-notice h2::before, .en-notice h2::after {
    content: "";
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 50px;
    height: 1px;
    background-color: black;
  }
  .en-notice h2::before {
    left: -10px;
  }
  .en-notice h2::after {
    right: -10px;
  }
}
@media (max-width: 991px) {
  .en-notice h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
  }
  .en-notice h2::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -15px;
    display: inline-block;
    width: 100px;
    height: 1px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: black;
    border-radius: 1px;
  }
}

.en-attn .en-attn-box {
  border: 3px solid #c85e27;
  border-radius: 10px;
  color: #c85e27;
  font-weight: 500;
  padding: 30px;
}
.en-attn ul {
  list-style: none;
  padding: 0;
}
.en-attn ul li {
  padding-left: 10px;
  padding-right: 10px;
  border-bottom: 1px dotted #c85e27;
}
.en-attn ul li:before {
  color: #c85e27 !important;
}

.en-menu-list {
  background-image: url("../img/common/menu-list-bg.png");
  background-position: top center;
  background-repeat: repeat-x;
  padding: 50px 0;
  text-align: center;
}
.en-menu-list .en-menu-list-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.en-menu-list .en-menu-list-cat {
  margin: auto;
}
.en-menu-list .en-menu-list-box {
  background: white;
  margin-bottom: 30px;
  padding: 5px;
}
.en-menu-list h2 {
  color: black;
  font-family: "Roboto Slab", serif;
  font-size: 2.8648rem;
  font-weight: 400;
  position: relative;
  display: inline-block;
  margin-bottom: 80px;
}
.en-menu-list h2::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  display: inline-block;
  width: 50px;
  height: 1px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: black;
  border-radius: 1px;
}
.en-menu-list h2 i {
  display: block;
  margin-bottom: 10px;
}
.en-menu-list h3 {
  color: #c85e27;
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  margin: 10px 0;
}
.en-menu-list ul {
  margin: 0 15px;
}
.en-menu-list .en-menu-list-kana {
  border-bottom: 2px dotted rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.5);
  font-size: 1.2rem;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.en-menu-list .en-menu-list-price {
  color: #960000;
  font-family: "Roboto Slab", serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.en-menu-list .en-menu-list-other {
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 10px;
}
.en-menu-list .en-menu-list-box2 {
  text-align: left;
}
.en-menu-list .en-menu-list-box2 .en-menu-list-photo {
  margin-bottom: 0;
}
.en-menu-list .en-menu-list-box2 h3 {
  margin: 0 0 10px 0;
}
.en-menu-list .en-menu-list-box2 ul {
  margin: 0 15px 0 0;
}
.en-menu-list .en-menu-list-box2 ul ul {
  border-bottom: 2px dotted rgba(0, 0, 0, 0.1);
  margin: 0 0 10px 0;
  padding-bottom: 10px;
}
.en-menu-list .en-menu-list-box2 ul ul li {
  background: rgba(200, 94, 39, 0.1);
  border: 1px solid white;
  color: #c85e27;
  font-size: 1.2rem;
  padding: 2px 7px;
}

.en-footer-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
.en-footer-nav a {
  background: #06044b;
  color: white;
  display: block;
  font-family: "Roboto Slab", serif;
  font-size: 2.073rem;
  font-weight: 300;
  padding: 20px 0;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.en-footer-nav a:hover {
  background: #c85e27;
}
.en-footer-nav a:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(0);
          transform: translateY(-50%) translateX(0);
}
.en-footer-nav .en-footer-nav-food a {
  border-right: 1px dotted white;
}
.en-footer-nav .en-footer-nav-food a:before {
  content: "\f2e7";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  left: 20px;
}
.en-footer-nav .en-footer-nav-drink a:before {
  content: "\ea60";
  font-family: "Material Icons Outlined";
  font-size: 2.8648rem;
  right: 20px;
}
@media (max-width: 767px) {
  .en-footer-nav a {
    font-size: 1.5rem;
    padding: 10px 0;
  }
  .en-footer-nav .en-footer-nav-drink a:before {
    font-size: 2.073rem;
  }
}

.en-footer-info {
  background-image: url("../img/common/footer-bg.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  padding: 80px 0;
}
.en-footer-info h2 {
  font-family: "Roboto Slab", serif;
  font-size: 2.8648rem;
  font-weight: 500;
}
.en-footer-info h2 span {
  font-size: 1.2rem;
}
.en-footer-info ul {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding: 20px 0;
  margin: 20px 0;
}
.en-footer-info .en-footer-tel {
  font-family: "Roboto Slab", serif;
  font-size: 3.9268rem;
}
.en-footer-info .en-footer-tel i {
  font-size: 2.073rem;
  vertical-align: middle;
}
@media (max-width: 575px) {
  .en-footer-info .en-footer-tel {
    font-size: 2.427rem;
  }
  .en-footer-info .en-footer-tel i {
    font-size: 1.5rem;
  }
}

.en-footer-other {
  background: #06044b;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
}
.en-footer-other .en-footer-jp {
  padding: 40px 0;
}
.en-footer-other .en-footer-jp h2 {
  font-family: "Roboto Slab", serif;
  font-weight: 300;
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
}
.en-footer-other .en-footer-jp h2::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20px;
  display: inline-block;
  width: 50px;
  height: 1px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 1px;
}
.en-footer-other .en-footer-jp ul li {
  border-right: dotted 1px rgba(255, 255, 255, 0.25);
  font-size: 1.2rem;
  margin: 0 15px 15px 0;
  padding-right: 15px;
}
.en-footer-other .en-footer-jp ul li:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}
.en-footer-other .en-footer-jp ul a {
  color: rgba(255, 255, 255, 0.75);
}
.en-footer-other .en-footer-copy {
  background: rgba(0, 0, 0, 0.4);
  color: rgba(255, 255, 255, 0.25);
  font-size: 1.2rem;
  padding: 10px;
}