/* base style reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

a {
  text-decoration: none;
  color: inherit;
}

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

textarea {
  resize: vertical;
}

/* layout */
body {
  font-family: Arial, sans-serif;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* header */
.header {
  background: #111;
  color: #fff;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.nav-list {
  display: flex;
  gap: 20px;
}

.nav a {
  color: #fff;
}

.wrap {
  flex-wrap: wrap;
}

.c_gap_2 {
  column-gap: 2rem;
}

/* main */

.logo_container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 7rem auto 12rem;
}

.logo_container img {
  width: 180px;
}

.overview_container {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  margin-bottom: 7rem;
}

.overview_container .overview_item:first-child {
  /* flex-grow: 1; */
  padding-left: 6rem;
}

.overview_container .overview_item:last-child {
  width: 30%;
}

.overview_title {
  color: #041541;
  font-size: 3.05rem;
  margin-bottom: 2.5rem;
}

.overview_content {
  font-size: 0.95rem;
  line-height: 2rem;
  margin-bottom: 1.5rem;
}

.overview_tag_en {
  color: #4db7e2;
  font-size: 0.75rem;
  line-height: 2rem;
  margin-bottom: 2rem;
}

.overview_content_jp {
  color: #4db7e2;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.store_title {
  background: #041541 url("../img/wave.png") repeat center top;
  color: #7e6b4b;
  /* background: #ffffff;
  color: #041541; */
  padding: 6rem 1rem 2rem;
  /* font-size: 1.25rem;
  font-weight: 600; */
}

.store_title span {
  font-size: 0.75rem;
}

.store_container {
  display: flex;
  flex-wrap: wrap;
}

.store_container .store_item {
  flex: 25%;
}

.food_title {
  background: #041541 url("../img/wave.png") repeat center top;
  color: #7e6b4b;
  padding: 6rem 1rem 2rem;
}

.food_title span {
  font-size: 0.75rem;
}

.food_container {
  display: flex;
}

.food_container .food_item {
  flex: 50%;
}

.food_container .foon_sub_item {
  flex: 50%;
}

.food_menu_container {
  background: #041541;
  padding: 8rem 0;
}

.food_menu_block {
  border: 1px solid #7e6b4b;
  padding: 2rem;
  margin-bottom: 3rem;
}

.food_menu_title {
  color: #7e6b4b;
  font-size: 1.25rem;
  text-align: center;
  border-bottom: 1px solid #7e6b4b;
  margin-bottom: 2rem;
}

.food_menu_item {
  flex-grow: 1;
  color: #7e6b4b;
  font-size: 0.75rem;
}

.food_menu_item_title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.notice_container {
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin-bottom: 7rem; */
}

.notice_container .notice_item:first-child {
  width: 50%;
}

.notice_container .notice_item:last-child {
  flex-grow: 1;
  padding-left: 4rem;
}

.notice_title {
  /* background: #041541; */
  color: #7e6b4b;
  margin-bottom: 2.5rem;
}

.notice_title span {
  font-size: 0.75rem;
}

.access_container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
}

.access_container .access_item:first-child {
  width: 50%;
}

.access_container .access_item:last-child {
  flex-grow: 1;
  padding-left: 4rem;
}

.access_title {
  /* background: #041541; */
  color: #7e6b4b;
  margin-bottom: 2.5rem;
}

.access_title span {
  font-size: 0.75rem;
}

/* footer */
footer {
  background: #041541 url("../img/wave.png") repeat center top;
  color: #7e6b4b;
  padding: 40px 0;
  text-align: center;
  font-size: 0.75rem;
}

/* =========================
   Tablet
========================= */
@media (max-width: 1024px) {
  .overview_container {
    flex-direction: column;
    text-align: center;
  }

  .overview_container .overview_item:first-child {
    padding-left: 0;
    margin-top: 2rem;
  }

  .overview_container .overview_item:last-child {
    width: 60%;
  }

  .store_container .store_item {
    flex: 50%;
  }

  .food_container {
    flex-wrap: wrap;
  }

  .food_container .food_item,
  .food_container .foon_sub_item {
    flex: 100%;
  }

  .notice_container {
    flex-direction: column;
  }

  .notice_container .notice_item:first-child {
    width: 100%;
  }

  .notice_container .notice_item:last-child {
    padding-left: 0;
    margin-top: 2rem;
    text-align: center;
  }

  .access_container {
    flex-direction: column;
  }

  .access_container .access_item:first-child {
    width: 100%;
  }

  .access_container .access_item:last-child {
    padding-left: 0;
    margin-top: 2rem;
    text-align: center;
  }
}

/* =========================
   Mobile
========================= */
@media (max-width: 768px) {
  .logo_container {
    margin: 4rem auto 6rem;
  }

  .overview_title {
    font-size: 2rem;
  }

  .overview_content {
    font-size: 0.9rem;
  }

  .store_container .store_item {
    flex: 100%;
  }

  .food_menu_container {
    padding: 4rem 0;
  }

  .food_container {
    flex-direction: column;
  }

  .food_menu_item {
    flex: 100%;
    margin-bottom: 2rem;
  }

  .food_menu_block {
    padding: 1.5rem;
  }
}

/* =========================
   Small Mobile
========================= */
@media (max-width: 480px) {
  .overview_title {
    font-size: 1.6rem;
  }

  .overview_content {
    line-height: 1.7rem;
  }

  .food_title {
    padding: 3rem 1rem 1rem;
  }

  .store_title {
    padding: 3rem 1rem 1rem;
  }

  footer {
    padding: 20px 0;
  }
}
