@charset "UTF-8";
body {
  background-color: lightgray;
}
body .btn-menu-bar {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  display: none;
  opacity: 1;
  background-color: skyblue;
  opacity: 0.5;
  width: 30%;
  height: 100%;
}
body .btn-menu-bar .upper li {
  width: 50%;
  border-top: 1px solid white;
  margin: 30px;
}
body .btn-menu-bar .lower li {
  width: 50%;
  border-top: 1px solid white;
  margin: 30px;
}
body .btn-menu-bar.show {
  display: block;
}

.logo {
  display: none;
  position: fixed;
  top: 25px;
  left: 30px;
  z-index: 40;
}
.logo img {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.logo a {
  display: block;
}

.btn {
  position: fixed;
  z-index: 40;
  top: 10px;
  right: 10px;
  width: 50px;
  margin: 15px;
  padding: 7.5px 0;
  cursor: pointer;
  display: none;
  /* span (1)番目の要素に適用 */
  /* span (2)番目の要素に適用 */
  /* span (3)番目の要素に適用 */
}
.btn span {
  display: block;
  background: white;
  text-align: center;
  height: 3px;
  width: 50%;
  margin: 5px 12px;
  transition: 0.8s;
}
.btn .span:nth-of-type(1) {
  top: 15px;
}
.btn span:nth-of-type(2) {
  top: 23px;
}
.btn span:nth-of-type(3) {
  top: 31px;
}

.btn-menu-bar {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  background-color: pink;
}
.btn-menu-bar .upper li {
  width: 20%;
  border-top: 1px solid black;
  margin: 30px;
}
.btn-menu-bar .lower li {
  width: 20%;
  border-top: 1px solid white;
  margin: 30px;
}

.btn-menu-bar.show {
  display: block;
}

.btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.btn.active span:nth-child(2) {
  opacity: 0;
}

.btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.access {
  margin-bottom: 50px;
  position: relative;
  z-index: 20;
}
.access .inner {
  margin: 0 auto;
  padding: 50px 0;
  width: 90%;
  height: 1000px;
  color: black;
}
.access .inner .access-title {
  text-align: center;
  padding: 30px;
}
.access .inner .access-title .m-title {
  font-size: 3.5rem;
  -webkit-text-decoration: underline 0.5px;
          text-decoration: underline 0.5px;
}
.access .inner .access-title .s-title {
  font-size: 1.5rem;
  -webkit-text-decoration: underline 0.1px;
          text-decoration: underline 0.1px;
}
.access .inner .news-wrapper {
  margin: 30px 10px 60px;
}
.access .inner .news-wrapper .news-text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 0 100px;
}
.access .inner .news-wrapper .news-text .menu-ingre {
  text-align: center;
}
.access .inner .news-wrapper .news-text .menu-list {
  width: 25%;
  display: flex;
  flex-wrap: wrap;
  margin: 30px 0;
  line-height: 30px;
}
.access .inner .news-wrapper .news-text .menu-list dt {
  width: 70%;
  border-bottom: dotted 1px #ccc;
  padding: 6px 0;
}
.access .inner .news-wrapper .news-text .menu-list dd {
  width: 30%;
  border-bottom: dotted 1px #ccc;
  padding: 10px 0;
  text-align: right;
  font-size: 18px;
  font-weight: 700;
}
.access .inner .news-wrapper .news-text .menu-list dd .mini {
  font-size: 10px;
}
.access .inner .news-wrapper .news-text .content-title {
  margin-top: 20px;
}
.access .inner .news-wrapper .news-text .content-list {
  width: 55%;
  padding: 20px 0 50px;
  line-height: 80px;
}
.access .inner .news-wrapper .news-text .content-list .content-item {
  border-bottom: dotted 1px #ccc;
  padding: 10px 0;
  margin-left: 20px;
}
.access .inner .news-wrapper .news-text .content-list #que {
  line-height: 30px;
}

.bg {
  background: url("/images/menu_03.jpg") center no-repeat !important;
  opacity: 0.5;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  z-index: 10;
}

.side-btn {
  border: solid 1px white;
  position: fixed;
  right: -144px;
  bottom: 200px;
  transform: rotate(-90deg) translate(60px);
  transition: 0.6s;
  z-index: 30;
}
.side-btn a {
  width: 165px;
  display: inline-block;
  font-size: 0.875rem;
  padding: 15px 0;
  text-align: center;
}
.side-btn a:last-of-type {
  border-left: solid 1px #fff;
}

@media (max-width: 599px) {
  body {
    background-color: lightgrey;
  }
  body .btn-menu-bar {
    position: fixed;
    z-index: 30;
    top: 0;
    right: 0;
    display: none;
    opacity: 1;
    background-color: skyblue;
    opacity: 0.5;
    width: 50%;
    height: 100%;
  }
  body .btn-menu-bar .upper li {
    width: 50%;
    border-top: 1px solid white;
    margin: 30px;
  }
  body .btn-menu-bar .lower li {
    width: 50%;
    border-top: 1px solid white;
    margin: 30px;
  }
  body .btn-menu-bar.show {
    display: block;
  }
  .logo {
    display: none;
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 40;
  }
  .logo img {
    width: 35px;
    height: 35px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 50%;
  }
  .logo a {
    display: block;
  }
  .btn {
    position: fixed;
    z-index: 40;
    top: 0px;
    right: 0px;
    width: 50px;
    margin: 1px;
    padding: 7.5px 0;
    display: block;
    cursor: pointer;
    display: none;
    /* span (1)番目の要素に適用 */
    /* span (2)番目の要素に適用 */
    /* span (3)番目の要素に適用 */
  }
  .btn span {
    display: block;
    background: white;
    text-align: center;
    height: px;
    width: 50%;
    margin: 5px 12px;
    transition: 0.8s;
  }
  .btn .span:nth-of-type(1) {
    top: 15px;
  }
  .btn span:nth-of-type(2) {
    top: 23px;
  }
  .btn span:nth-of-type(3) {
    top: 31px;
  }
  .btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .btn.active span:nth-child(2) {
    opacity: 0;
  }
  .btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  .btn-menu-bar {
    display: none;
    opacity: 1;
    background-color: skyblue;
    width: 100%;
    height: 100%;
  }
  .btn-menu-bar .upper li {
    width: 20%;
    border-top: 1px solid white;
    margin: 30px;
  }
  .btn-menu-bar .lower li {
    width: 20%;
    border-top: 1px solid white;
    margin: 30px;
  }
  .btn-menu-bar.show {
    display: block;
  }
  .access {
    margin-bottom: 50px;
    position: relative;
    z-index: 20;
  }
  .access .inner {
    margin: 0 auto;
    padding: 50px 0;
    width: 80%;
    height: 1000px;
    color: black;
  }
  .access .inner .access-title {
    text-align: center;
    padding: 30px;
  }
  .access .inner .access-title .m-title {
    font-size: 2rem;
    -webkit-text-decoration: underline 0.5px;
            text-decoration: underline 0.5px;
  }
  .access .inner .access-title .s-title {
    font-size: 1.5rem;
    -webkit-text-decoration: underline 0.1px;
            text-decoration: underline 0.1px;
  }
  .access .inner .news-wrapper {
    margin: 30px 10px 60px;
  }
  .access .inner .news-wrapper .news-text {
    display: block;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .access .inner .news-wrapper .news-text .menu-ingre {
    text-align: center;
  }
  .access .inner .news-wrapper .news-text .menu-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: 30px 0;
    line-height: 30px;
  }
  .access .inner .news-wrapper .news-text .menu-list dt {
    width: 70%;
    border-bottom: dotted 1px #ccc;
    padding: 6px 0;
  }
  .access .inner .news-wrapper .news-text .menu-list dd {
    width: 30%;
    border-bottom: dotted 1px #ccc;
    padding: 10px 0;
    text-align: right;
    font-size: 18px;
    font-weight: 700;
  }
  .access .inner .news-wrapper .news-text .menu-list dd .mini {
    font-size: 10px;
  }
  .access .inner .news-wrapper .news-text .content-title {
    margin-top: 20px;
  }
  .access .inner .news-wrapper .news-text .content-list {
    width: 100%;
    padding: 20px 0 50px;
    line-height: 30px;
  }
  .access .inner .news-wrapper .news-text .content-list .content-item {
    border-bottom: dotted 1px #ccc;
    padding: 10px 0;
    margin-left: 0px;
  }
  .access .inner .news-wrapper .news-text .content-list #que {
    line-height: 30px;
  }
  .bg {
    background: url("/images/menu_03.jpg") center no-repeat !important;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    z-index: 10;
  }
  .side-btn {
    border: solid 1px white;
    position: fixed;
    right: -150px;
    bottom: 200px;
    transform: rotate(-90deg) translate(60px);
    transition: 0.6s;
    z-index: 30;
  }
  .side-btn a {
    width: 165px;
    display: inline-block;
    font-size: 0.875rem;
    padding: 15px 0;
    text-align: center;
  }
  .side-btn a:last-of-type {
    border-left: solid 1px #fff;
  }
}/*# sourceMappingURL=avocado.css.map */