/* ----------------------------------- CSS RESET---------------------------------------- */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;900&display=swap");

/* ---------------------------------------WRITTEN CSS ----------------------------------- */

body {
  height: 100%;
  margin: 0 auto;
  font-family: "Noto Serif JP", serif;
}

h3 {
  font-size: 25px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 40px;
  background-color: maroon;
  color: white;
  max-width: 900px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.menu-images {
  margin-top: 0;
}

.drink-menu-nav ul li a,
.drink-page-drink-nav ul li a {
  text-decoration: none;
  color: black;
  font-weight: 900;
  font-size: 14px;
}

.drink-page-drink-nav {
  width: 90vw;
}

.drink-page-drink-nav ul {
  width: 90vw;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.drink-page-drink-nav ul li {
  display: inline-block;
  border: 1px solid black;
  border-radius: 5px;
  width: 37vw;
  text-align: center;
  margin-right: 2vw;
  margin-bottom: 10px;
  padding: 8px;
}

.drink-page-drink-nav ul li a {
  font-size: 14px;
}

.menu-img {
  margin-top: 30px;
}

/* ------------------------------------TABLET----------------------------------------------- */

@media screen and (min-width: 768px) and (max-width: 1024px) {
  /* --------------------------ITEM MENU --------------------------- */
  .drink-page-drink-nav {
    width: 700px;
  }
  .drink-page-drink-nav ul {
    width: 700px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .drink-page-drink-nav ul li {
    display: inline-block;
    border: 1px solid black;
    border-radius: 5px;
    width: 120px;
    text-align: center;
    margin-right: 14px;
    padding: 10px;
  }
  /*  */
  .menu-img {
    margin-top: 20px;
  }
}

@media screen and (min-width: 1025px) {
  /* --------------------------ITEM MENU --------------------------- */
  .drink-page-drink-nav {
    width: 1000px;
  }
  .drink-page-drink-nav ul {
    width: 800px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .drink-page-drink-nav ul li {
    display: inline-block;
    border: 1px solid black;
    border-radius: 5px;
    width: 100px;
    text-align: center;
    margin-right: 15px;
    padding: 10px;
  }
  .menu-img {
    margin-top: 20px;
  }
}
