@charset "UTF-8";
body {
  margin: 1.5em;
  font-family: "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: rgb(88, 88, 88);
}

a {
  text-decoration: none;
  font-size: 1.3rem;
}

.hero-img {
  background: no-repeat url("../assets/staff2.jpg");
  background-size: contain;
  background-position: center center;
  height: 40vh;
  border-radius: 0.8em;
}

nav {
  position: fixed;
  right: 0;
  top: 0;
  background: white;
  height: 100vh;
  width: 50%;
  z-index: 999;
  transform: translateX(100%);
  transition: 0.5s ease-in-out;
}
nav ul {
  list-style-type: none;
  padding: 0;
  margin-top: 8em;
}
nav ul a {
  color: black;
  padding: 0.75em 2em;
  display: block;
}
nav ul a:hover {
  background: rgb(216, 233, 238);
}
nav .close {
  float: right;
  margin: 2em;
  width: 2.5em;
}

header {
  display: flex;
  justify-content: space-between;
}
header svg {
  cursor: pointer;
}

.menu {
  display: inline-block;
  width: 3em;
  margin-top: -0.6em;
}

a.logo {
  width: 8em;
}
a.logo svg {
  fill: #031471;
  width: 100%;
  margin-left: -0.2em;
}

h1 {
  font-size: 2rem;
  margin-top: 1em;
  line-height: 2rem;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 0.4em;
  line-height: normal;
}

p,
li {
  font-size: 1.2rem;
}

.subhead {
  font-size: 1.3rem;
}

section.hero {
  margin-bottom: 1em;
}

section.icons {
  display: flex;
  justify-content: end;
  margin-bottom: 1em;
}
section.icons .instagram {
  display: none;
}
section.icons .twitter {
  width: 2.4em;
  fill: #031471;
  padding-left: 1em;
}

.gallery {
  overflow: auto;
  scroll-snap-type: x mandatory;
  display: flex;
  gap: 1em;
  margin-bottom: 1em;
}
.gallery .card {
  width: 340px;
  height: 500px;
  border-radius: 0.8em;
  background-color: #b9d9eb;
  scroll-snap-align: start;
  flex: none;
}
.gallery .card .content {
  align-items: end;
  background: #ffffff;
  border-radius: 1em;
  padding: 0.2em 1em;
  margin: 1em;
}
.gallery .card .title {
  font-weight: bold;
  font-size: 1.25rem;
  margin: 0;
}
.gallery .card .desc {
  margin: 0;
  line-height: 1.5rem;
}
.gallery .card .card-image {
  width: 100%;
  height: 340px;
  border-radius: 0.8em;
}
.gallery .card .card1 {
  background: url(/assets/osashimi.jpg);
}
.gallery .card .card2 {
  background: url(/assets/fry.jpg);
}
.gallery .card .card3 {
  background: url(/assets/yakizakana.jpg);
}

.more-info img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 500px;
  border-radius: 0.8em;
}
.more-info .title {
  font-weight: bold;
  font-size: 1.25rem;
}
.more-info .desc {
  line-height: 1.5rem;
}

.store-info {
  background-color: #f0f8ff;
  border-radius: 0.8em;
}
.store-info ul {
  padding-left: 1.8em;
  padding-bottom: 1em;
}

.access ul {
  list-style-type: none;
  padding-left: 0.4em;
}
.access .storefront {
  background: no-repeat url(/assets/kanban.jpg);
  background-size: cover;
  height: 20em;
  margin-bottom: 1em;
  border-radius: 0.8em;
}

.open-nav {
  transform: translateX(0);
}

.map {
  position: relative;
  padding-bottom: 50%;
  width: 100%;
  height: 0;
  overflow: hidden;
  border-radius: 0.8em;
  margin-bottom: 2em;
}

.map iframe,
.map object,
.map embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

footer {
  display: flex;
  justify-content: center;
}

@media only screen and (min-width: 680px) {
  body {
    margin: 1.5em 5em;
  }
}
@media only screen and (min-width: 920px) {
  .menu {
    display: none;
  }
  nav {
    transform: translate(0);
    position: unset;
    display: block;
    width: auto;
    height: auto;
    background: none;
  }
  nav svg.close {
    display: none;
  }
  nav ul {
    display: flex;
    margin: 0;
  }
  nav ul a {
    color: rgb(88, 88, 88);
    padding: 0.5em 1.5em;
    font-size: 0.9rem;
  }
  nav ul a:hover {
    background: none;
    text-decoration: underline;
  }
  .hero-img {
    left: unset;
    width: 100%;
    height: 50em;
    background-size: cover;
    margin-bottom: 2em;
  }
  .feature {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 3em;
    margin-bottom: 3em;
    justify-content: space-evenly;
  }
  .feature img {
    width: 25em;
  }
  .feature .content {
    width: 25em;
  }
  .feature.left {
    grid-template-areas: "left right";
  }
  .feature.left img {
    grid-area: left;
  }
  .feature.left .content {
    text-align: left;
    width: 25em;
    justify-self: left;
  }
  .storefront {
    width: 500px;
    height: 400px;
  }
}
@media only screen and (min-width: 1200px) {
  .wrapper {
    width: 1200px;
    margin: 0 auto;
  }
  .feature {
    gap: 0;
  }
}/*# sourceMappingURL=main.css.map */