@charset "UTF-8";

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 10px;
}

#store h1 {
  font-size: 48px;
}

#store h2 {
  font-size: 42px;
  text-align: left;
}

#store p {
  font-size: 24px;
}

table {
  width: 100%;
  max-width: 1000px;
  font-size: 16px;
  /*border: #aaaaaa solid 1px;*/
  border-collapse: collapse;
  margin: 0 auto;
}

tr, td, th {
  border: #aaaaaa solid 1px;
  border-collapse: collapse;
  background-color: white;
  font-size: 24px;
}


table tr {
  height: 64px;
}

table th {
  background: #eee;
  /*width: 200px;*/
  max-width: 200px;
  padding: 8px;
}

table td {
  text-align: left;
  padding: 8px;
}

#store .messageContainer {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

#store .messageContainer .image {
  width: 28%;
}

#store .messageContainer .text {
  width: 68%;
  text-align: left;
}

.salonMessage tr {
  border: none;
}

.salonMessage th {
  width: 30%;
  border: none;
  background: none;
}

.salonMessage td {
  text-align: left;
  vertical-align: top;
  width: 70%;
  border: none;
  font-size: 24px;
}

.salonMessage th img {
  width: 100%;
}

ul#storeImages {
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  margin: 0 auto;
}

ul#storeImages li {
  width: calc(100% / 3);
  height: calc(100% / 3);
  /*width: 30vw;*/
  /*height: 30vw;*/
  margin: 0.5vw 0;
}

ul#storeImages li img {
  width: calc(100% - 1vw);
  height: 30vw;
  max-height: 318px;
  /*height: 100%;*/
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

.borderGray {
  max-width: 1000px;
  margin: 0 auto;
  border: #aaa solid 1px;
}

#kuchikomi, #access {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

iframe {
  width: 100%;
  height: 50vw;
}

@media screen and (max-width: 600px) {
  #store h1 {
    font-size: 10vw;
  }
  #store h2 {
    font-size: 7.7vw;
    text-align: left;
  }
  tr, td, th, #store p {
    font-size: 5.6vw;
  }
  #store .messageContainer {
    flex-direction: column;
  }
  #store .messageContainer .image,
  #store .messageContainer .text {
    width: 100%;
  }
}

#menuButton {
    display: none;
}

@media all and (-ms-high-contrast: none) {
  ul#storeImages li {
    width: calc(100% / 3 - 1px);
    height: calc(100% / 3 - 1px);

  }
}