@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@700&display=swap');
/* 決まりごと
---------------------------------------------------------- */
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
/* html
---------------------------------------------------------- */
html {
  scroll-behavior: smooth;
}
a:hover img {
  opacity: 0.7;
}
body {
  container-type: inline-size;
}
/* コンテンツ
---------------------------------------------------------- */
/* ご当地背景 */
.bg_tentwenty {
  width: 100vw;
  padding: 1em 0;
  margin-inline: calc(50% - 50cqi);
  background-color: #fbfafc;
  background-image: url("data:image/svg+xml,%3Csvg width='50' height='18' viewBox='0 0 50 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 18c-2.43-1.824-4-4.73-4-8 0-4.418-3.582-8-8-8H0V0h20c5.523 0 10 4.477 10 10 0 4.418 3.582 8 8 8h20c4.418 0 8-3.582 8-8 0-5.523 4.477-10 10-10v2c-4.418 0-8 3.582-8 8 0 3.27-1.57 6.176-4 8H32zM64 0c-1.67 1.256-3.748 2-6 2H38c-2.252 0-4.33-.744-6-2h32z' fill='%23b5eeff' fill-opacity='0.34' fill-rule='evenodd'/%3E%3C/svg%3E");
}
/* ベース */
.New_Table900 {
  width: 960px;
  margin: 2em auto;
  padding: 2em 0;
  border-radius: 30px;
  background-color: #fff;
  box-sizing: border-box;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.09), 0 3px 8px rgba(0, 0, 0, 0.05);
}
/* メニュー
---------------------------------------------------------- */
.menu_container {
  width: 90%;
  margin: 1em auto 0;
  box-sizing: border-box;
}
.menu_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 10px;
}
.menu_box {
  width: 100%;
  height: auto;
}
.menu_bg_mall {
  position: relative;
  width: 100%;
  margin: 0 auto 20px;
}
.menu_bg_mall > img {
  display: block;
  width: 100%;
  height: auto;
}
.menu_btn_mall {
  position: absolute;
  left: 10%;
  top: 20%;
  width: 80%;
}
/* 購入するボタン
---------------------------------------------------------- */
.btn_yellow {
  width: 100%;
  display: inline-block;
  box-sizing: border-box;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: 5px solid #fff;
  background-color: #FFEA42;
  color: #000 !important;
  transition: color 0.3s;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1em 2em;
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.btn_yellow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #fff;
  transition: width 0.3s ease;
  z-index: -1;
}
.btn_yellow:hover {
  color: #fff;
}
.btn_yellow:hover::before {
  width: 100%;
}
/* コンテンツ_枠
---------------------------------------------------------- */
.main_two_grid,
.main_three_grid {
  display: grid;
  width: 100%;
}

.main_two_grid > div,
.main_three_grid > div {
  min-width: 0;
}

.main_two_grid img,
.main_three_grid img {
  display: block;
  width: 100%;
  height: auto;
}
.layout_two_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
}
.layout_btn_mall {
  width: 80%;
	margin: 0.5em auto 1em;
}