/* ----------------------------------- 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 ----------------------------------- */

.tenpo-pc {
  display: none;
}

.tenpo-mobile {
  display: block;
}

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

main h1 {
  font-size: 9vw;
  font-weight: 900;
  text-align: center;
  margin-top: 8%;
  margin-bottom: 10%;
}

.top-map {
  width: 100vw;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  /* margin-bottom: 40px; */
}

.map {
  width: 90vw;
  height: 70vw;
  order: 2;
}

.restaurant-locations {
  width: 80vw;
  height: 40vw;
  height: fit-content;
  order: 1;
  margin-bottom: 30px;
}

.map iframe {
  width: 90vw;
  height: 70vw;
}

.restaurant-locations ul {
  height: 40vw;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.restaurant-locations ul li {
  display: inline-block;
  width: fit-content;
  margin-bottom: 10px;
}

.restaurant-locations ul li a {
  display: block;
  text-decoration: none;
  border: 1px solid black;
  width: 18vw;
  height: 3vw;
  padding: 2vw 10vw;
  padding-top: 3vw;
  color: black;
  font-weight: 900;
  border-radius: 5px;
  text-align: center;
  font-size: 3vw;
}

.restaurant-locations ul li:last-child a {
  padding: 2.4vw 9vw;
  width: fit-content;
}

/* ------------------------STORE INFO -----------------------------------------------*/

.store-location-information {
  height: auto;
  margin-top: 20px;
  width: 100vw;
}

.store-location-info-container {
  width: 90vw;
  margin: 0 auto;
}

.store-location-info-container p {
  font-size: 4vw;
}

.store-info-image {
  width: 90vw;
  /* margin-bottom: 30px; */
}

/* .store-info-image-container {
    width: 500px;
} */

.store-info-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.store-info-text h2 {
  font-weight: 900;
  font-size: 4.5vw;
  margin-bottom: 10%;
  margin-top: 10%;
}

.store-info-text h3 {
  font-size: 4vw;
  line-height: 1.5;
}

.store-info-text p {
  line-height: 1.5;
}

.store-info-text-address,
.store-info-text-days,
.store-info-text-pay {
  margin-bottom: 30px;
}

.store-info-add-day-pay {
  width: 80vw;
  line-height: 1.5;
}

.store-info-map,
.store-info-map iframe {
  width: 90vw;
  height: 40vw;
}

.store-info-map {
  margin-bottom: 30px;
  margin-top: 10px;
}

.text-margin {
  margin-left: 45px;
}

.store-img-main {
  width: 90vw;
  height: 90vw;
  object-fit: cover;
}

.store-img {
  width: 11.8vw;
  height: 11.8vw;
  margin-right: 4px;
  margin-bottom: 4px;
  object-fit: cover;
}

.store-info-image-bottom {
  width: auto;
}

.store-info-image-top {
  padding-bottom: 20px;
}

.tenpo-mobile .store-info-text {
  margin-top: 20px;
}

.store-link {
  background-color: maroon;
  width: 50vw;
  height: 10vw;
  margin: 0 auto;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.store-link a {
  text-decoration: none;
  color: white;
  font-size: 4vw;
}

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

@media screen and (min-width: 768px) and (max-width: 1024px) {
  main h1 {
    font-size: 5vw;
  }
  .tenpo-pc {
    display: none;
  }
  .tenpo-mobile {
    display: block;
  }
  .restaurant-locations ul {
    height: 40vw;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  .store-info-text h3 {
    font-size: 4vw;
  }
  .store-link {
    background-color: maroon;
    width: 400px;
    height: 90px;
    margin: 0 auto;
    border-radius: 5px;
  }
  .store-link a {
    font-size: 30px;
  }
  .restaurant-locations ul li:last-child a {
    width: fit-content;
  }
}

/* -------------------------------PC  and (max-width: 1920px)----------------------------------------------------- */

@media screen and (min-width: 1025px) {
  .top-map {
    width: 1000px;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    margin: 0 auto;
  }
  .map iframe {
    width: 650px;
    height: 300px;
  }
  main h1 {
    font-size: 42px;
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .map {
    width: 650px;
    height: 360px;
    order: 1;
    margin-right: 60px;
  }
  .restaurant-locations {
    width: 200px;
    height: 360px;
    order: 2;
    margin-bottom: 0;
  }
  .restaurant-locations ul {
    height: 270px;
    width: fit-content;
  }
  .restaurant-locations ul li {
    margin-bottom: 8px;
  }
  .restaurant-locations ul li a {
    font-size: 15px;
    width: 150px;
    height: 20px;
    padding: 0 40px;
    padding-top: 14px;
    padding-bottom: 8px;
  }
  .restaurant-locations ul li:last-child a {
    width: 150px;
    padding: 0 40px;
    padding-top: 14px;
    padding-bottom: 6px;
  }
  .map iframe {
    width: 650px;
    height: 360px;
  }
  /* ------------------------STORE INFO -----------------------------------------------*/
  .store-location-information {
    height: auto;
    margin: 0 auto;
    margin-top: 20px;
    width: 100vw;
    margin-bottom: 80px;
  }
  .store-location-info-container {
    width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 60px;
  }
  .store-location-info-container p {
    font-size: 40px;
  }
  .store-img-main {
    width: 500px;
    height: 500px;
    object-fit: cover;
  }
  .store-img {
    width: 76px;
    height: 76px;
    margin-right: 4px;
    margin-bottom: 4px;
    object-fit: cover;
  }
  .store-info-image-bottom {
    width: auto;
  }
  .store-info-image-top {
    padding-bottom: 20px;
  }
  .tenpo-mobile {
    display: none !important;
  }
  .tenpo-pc {
    display: block;
    /* margin-left: 30px; */
  }
  .store-info-text {
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* padding-left: 3vw; */
  }
  .store-info-text h2 {
    font-weight: 900;
    font-size: 16px;
    margin-bottom: 20px;
    margin-top: 10px;
  }
  .store-info-text h3 {
    font-size: 16px;
  }
  .store-info-text p {
    line-height: normal;
    font-size: 16px;
  }
  .store-info-add-day-pay {
    width: 480px;
  }
  .store-info-text-address,
  .store-info-text-days,
  .store-info-text-pay {
    margin-bottom: 20px;
  }
  .store-info-map,
  .store-info-map iframe {
    width: 480px;
    height: 260px;
    /* padding-left: 15px; */
  }
  .store-info-map {
    margin-bottom: 0px;
    margin-top: 20px;
  }
  .text-margin-pc {
    margin-left: 75px;
  }
  .text-margin-pc-small {
    margin-left: 45px;
  }
  .store-link {
    background-color: maroon;
    width: 400px;
    height: 60px;
    margin: 0 auto;
    border-radius: 5px;
    margin-top: 40px;
  }
  .store-link a {
    font-size: 23px;
  }
}
