@charset "UTF-8";
.main {
  scroll-behavior: smooth !important;
}

.menu_sec01 h2 {
  color: #9d202e;
}

.button004 {
  bottom: 10%;
  right: 0;
  left: 0;
  margin: 0 auto;
}

.button004 a {
  background: #9d202e;
  border-radius: 50px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 1rem auto;
  max-width: 300px;
  padding: 5px 25px;
  color: #fff;
  border: 2px solid #9d202e;
  transition: 0.3s ease-in-out;
  font-weight: 700;
  text-align: center;
}

.button004 a:hover {
  background: #fff;
  color: #9d202e;
}

.button004 a:after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}

.button004 a:hover:after {
  border-color: #9d202e;
}


/* フードメニュー */
#menu_sec02 {
  padding-top: 1rem;
  padding-bottom: 4rem;
}

#menu_sec02 h2 {
  line-height: 0.7;
  color: #37645b;
}

#menu_sec02 h2 span {
  color: #443731;
}

.food_midashi {
  background-color: #37645b;
  margin-top: 1.5rem;
}

.food_midashi p {
  color: #fff;
  font-size: 2.0rem;
  text-align: center;
  padding: 8px 0;
}

.menu {
  margin-top: 1em;
}

.menu li {
  margin-left: 1em;
  text-indent: -1em;
  color: #443731;
  font-weight: 700;
  font-size: 1.4rem;
}

.menu li::before {
  content: "●";
  color: #37645b;
}

#menu_sec02 .f_menu p {
  margin-top: 0.5rem;
  line-height: 1.4;
}


/* 限定メニュー */
.tab-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 0 5px;
  /* max-width: 500px; */
  max-width: 740px;
  margin-top: 2rem;
}

.tab-2>label {
  flex: 1 1;
  order: -1;
  opacity: .5;
  min-width: 70px;
  padding: .6em 1em;
  border-radius: 5px 5px 0 0;
  background-color: #dd8d74;
  color: #fff;
  font-size: .9em;
  text-align: center;
  cursor: pointer;
}

.tab-2>label:hover {
  opacity: .8;
}

.tab-2 input {
  display: none;
}

.tab-2>div {
  display: none;
  width: 100%;
  padding: 1.5em 1em;
  background-color: #fff;
}

.tab-2 label:has(:checked) {
  opacity: 1;
}

.tab-2 label:has(:checked)+div {
  display: block;
}

/* ドルチェメニュー */
#menu_sec03 {
  background-color: #efd5ce;
  padding-top: 1rem;
  padding-bottom: 4rem;
}

#menu_sec03 h2 {
  line-height: 0.7;
  color: #b9594d;
}

#menu_sec03 h2 span {
  color: #443731;
}

#menu_sec03 .f_menu p {
  margin-top: 0.5rem;
  line-height: 1.4;
}

/* ドリンクメニュー */
#menu_sec04 h2 {
  line-height: 0.7;
  color: #37645b;
}

#menu_sec04 h2 span {
  color: #443731;
}

#menu_sec03 .menu li::before {
  color: #b9594d;
}

#menu_sec04 .inner {
  display: flex;
  justify-content: space-between;
}

.box-017 {
  max-width: 650px;
  margin: 2rem auto 0;
  padding: .5em 1.5em 1em;
  border-top: 5px solid #37645b;
  border-radius: 3px;
  box-shadow: 0 2px 3px rgb(0 0 0 / 20%);
  background-color: #ffffff;
}

.box-017>div {
  margin-bottom: .5em;
  color: #37645b;
  font-weight: 600;
  font-size: 1.05em;
}

.box-017>p {
  margin: 0;
  color: #333;
}

/* 下層ページアンカーリンク用のスクロール補正 */
#menu_sec02,
#menu_sec03,
#menu_sec04 {
  /* 固定ヘッダーの高さ + 余裕分を指定 */
  scroll-margin-top: 100px;
}