@charset "UTF-8";
.page-mv {
  position: relative;
  height: 350px;
  overflow: hidden;
}
.page-mv__bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.page-mv__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}
.page-mv__title {
  color: #fff;
  font-size: 48px;
  font-weight: bold;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
  padding-top: 50px;
}
@media (max-width: 768px) {
  .page-mv {
    height: 250px;
  }
  .page-mv__title {
    font-size: 28px;
  }
}

.section-ground-menu {
  background: #111;
  color: #fff;
  padding: 60px 0;
}
.section-ground-menu__inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.section-ground-menu__title {
  font-size: 32px;
  font-weight: bold;
  display: inline-block;
  position: relative;
  padding-left: 60px;
  text-align: center;
  margin-bottom: 50px;
}
.section-ground-menu__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 40px;
  background: url("../img/title_h2.png") no-repeat center/contain;
}
.section-ground-menu__item {
  margin-bottom: 40px;
}
.section-ground-menu__item-title {
  position: relative;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #fff;
}
.section-ground-menu__item-label {
  color: #f6c400;
  font-weight: 700;
  margin-right: 8px;
}
.section-ground-menu__item-price {
  font-size: 16px;
  color: #ddd;
  white-space: nowrap;
  text-align: right;
}
.section-ground-menu__item-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
}
@media (max-width: 768px) {
  .section-ground-menu__item-body {
    display: block;
  }
}
.section-ground-menu__item-img {
  flex: 0 0 47%;
}
.section-ground-menu__item-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
.section-ground-menu__item-text {
  flex: 1;
  font-size: 14px;
  line-height: 2;
  color: #eaeaea;
  text-align: left;
}
.section-ground-menu .menu-list {
  list-style: none;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 800px;
  text-align: left;
}
.section-ground-menu .menu-list .menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 6px;
}
.section-ground-menu .menu-list .menu-item .menu-item__name {
  display: block;
  flex: 0.7;
}
.section-ground-menu .topping-box {
  background: #fff;
  border-radius: 10px;
  padding: 30px 30px;
  position: relative;
  margin: 80px auto 0 auto;
  max-width: 900px;
}
.section-ground-menu .topping-box__ribbon {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .section-ground-menu .topping-box__ribbon {
    top: -20px;
    transform: translateX(-54%);
  }
}
.section-ground-menu .topping-box__title {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  --r: .8em;
  /* control the ribbon shape */
  padding-inline: calc(var(--r) + 2.3em);
  line-height: 1.8;
  clip-path: polygon(0 0, 100% 0, calc(100% - var(--r)) 50%, 100% 100%, 0 100%, var(--r) 50%);
  background: #933434;
  /* the main color */
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .section-ground-menu .topping-box__title {
    font-size: 22px;
    padding-inline: calc(var(--r) + 0.3em);
    width: 100%;
  }
}
.section-ground-menu .topping-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 60px;
       column-gap: 60px;
  row-gap: 8px;
  text-align: left;
}
.section-ground-menu .topping-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-family: "游明朝体", "Yu Mincho", serif;
  font-size: 16px;
  color: #2b1d13;
}
.section-ground-menu .topping-item__name {
  flex: 1;
}
.section-ground-menu .topping-item__dot {
  margin: 0 8px;
  letter-spacing: 2px;
}
.section-ground-menu .topping-item__price {
  white-space: nowrap;
  font-weight: bold;
}
@media (max-width: 768px) {
  .section-ground-menu .topping-list {
    grid-template-columns: 1fr;
    row-gap: 6px;
  }
  .section-ground-menu .topping-box {
    padding: 30px 20px;
  }
}

.section-column {
  padding: 0px 0;
}
.section-column__inner {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.section-column .column-card {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  align-items: flex-start;
}
.section-column .column-card a {
  display: flex;
  text-decoration: none;
  color: inherit;
  gap: 40px;
  transition: opacity 0.3s;
}
.section-column .column-card a:hover {
  opacity: 0.8;
}
.section-column .column-card__img {
  flex: 0 0 40%;
}
.section-column .column-card__img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
.section-column .column-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.section-column .column-card__title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.6;
}
.section-column .column-card__text {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}
.section-column .column-card__btn {
  display: inline-block;
  background: #111;
  color: #f4c73e;
  padding: 12px 30px;
  font-weight: bold;
  font-size: 14px;
  transition: background 0.3s;
  align-self: flex-end;
}
.section-column .column-card__btn:hover {
  background: #333;
}
@media (max-width: 768px) {
  .section-column .column-card {
    flex-direction: column;
  }
  .section-column .column-card a {
    flex-direction: column;
  }
  .section-column .column-card__img {
    width: 100%;
  }
}

.single-column {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 16px;
  color: #222;
}
.single-column h2 {
  font-size: 26px;
  color: #fff;
  background-color: #23170b;
  padding: 5px 10px;
  text-align: center;
  font-weight: bold;
}
.single-column h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 60px 0 20px;
  padding-left: 10px;
  border-left: 5px solid #23170b;
  /* トーンをH2に合わせる */
}
.single-column h4 {
  font-size: 18px;
  font-weight: bold;
  margin: 40px 0 15px;
  position: relative;
  padding-bottom: 5px;
  border-bottom: 1px solid #ccc;
}
.single-column p {
  margin-bottom: 1.6em;
}
.single-column ul,
.single-column ol {
  margin: 0 0 1.6em 1.8em;
  padding: 0;
}
.single-column ul li,
.single-column ol li {
  margin-bottom: 0.4em;
  line-height: 1.6;
}
.single-column ul li {
  list-style: disc;
}
.single-column ol li {
  list-style: decimal;
}
.single-column table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
  font-size: 15px;
}
.single-column table th,
.single-column table td {
  border: 1px solid #ddd;
  padding: 12px 15px;
  text-align: left;
}
.single-column table th {
  background: #23170b;
  color: #fff;
  font-weight: bold;
}
.single-column table tr:nth-child(even) {
  background: #f9f9f9;
}
.single-column img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
}
.single-column a {
  color: #23170b;
  text-decoration: underline;
  transition: opacity 0.3s;
}
.single-column a:hover {
  opacity: 0.7;
}
.single-column .single-column__thumb {
  margin: 0;
  padding: 0;
}
.single-column .single-column__thumb img {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
}

.breadcrumb {
  width: 90%;
  max-width: 1200px;
  margin: 20px auto;
  font-size: 14px;
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  color: #666;
  font-weight: 500;
  /* 区切り（›） */
}
.breadcrumb__item a {
  color: #5c2e23;
  text-decoration: none;
  transition: opacity 0.3s;
}
.breadcrumb__item a:hover {
  opacity: 0.7;
}
.breadcrumb__item::after {
  content: "›";
  margin: 0 10px;
  color: #999;
}
.breadcrumb__item:last-child {
  color: #000;
  font-weight: 700;
  pointer-events: none;
}
.breadcrumb__item:last-child::after {
  content: "";
}
@media (max-width: 768px) {
  .breadcrumb {
    font-size: 13px;
    margin: 15px auto 30px;
  }
  .breadcrumb__item::after {
    margin: 0 6px;
  }
}/*# sourceMappingURL=page.css.map */