@charset "UTF-8";
@media (min-width: 897px) {
  a:hover {
    text-decoration: none;
    opacity: 0.7;
    transition: 0.3s;
  }
  .sp {
    display: none !important;
  }
}
@media (max-width: 896px) {
  .pc {
    display: none !important;
  }
}
@media (max-width: 896px) {
  .row {
    padding-inline: 10px;
  }
}

.flex {
  display: flex;
}

span {
  line-height: 1;
}

.headline__title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.35;
  text-align: center;
  padding-top: 100px;
}
@media (min-width: 897px) {
  .headline__title {
    font-size: 3.6rem;
  }
}
.headline__text {
  margin-top: 30px;
  text-align: center;
}
@media (min-width: 897px) {
  .headline__text {
    font-size: 2.2rem;
  }
}

/*============================
パンくず
============================*/
.to-top {
  cursor: pointer;
  transition: opacity 0.3s ease-out;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: fixed;
  bottom: 10%;
  right: 1.5%;
  width: 56px;
  height: 44px;
  z-index: 10;
}
.to-top.show {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 897px) {
  .to-top:hover {
    opacity: 0.7;
    transition: 0.3s;
  }
}

/*__ header _______________________*/
.site-header {
  position: fixed;
  z-index: 999;
  width: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.2);
}
@media (max-width: 896px) {
  .site-header {
    height: 50px;
  }
}
.site-header .masthead {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .masthead .brand-wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 896px) {
  .site-header .masthead .brand-wrap {
    padding-top: 5px;
    padding-left: 5px;
  }
}
.site-header .masthead .brand__title {
  font-size: 1.8rem;
  line-height: 1.15;
  position: relative;
  z-index: 2;
  padding-left: 5px;
  font-weight: bold;
}
@media (max-width: 896px) {
  .site-header .masthead .brand__title {
    font-size: 1.3rem;
  }
}
.site-header .masthead .brand-logo {
  width: 200px;
  position: relative;
  z-index: 2;
  display: block;
  line-height: 1;
}
@media (max-width: 896px) {
  .site-header .masthead .brand-logo {
    max-width: 180px;
  }
}

.globalnav-list {
  display: flex;
  align-items: center;
  text-align: center;
}
@media (min-width: 897px) {
  .globalnav-list {
    gap: 5px;
  }
}
.globalnav__item {
  word-break: auto-phrase;
}
@media (max-width: 896px) {
  .globalnav__item {
    width: 100%;
  }
}
.globalnav__item a {
  line-height: 1;
}
@media (min-width: 897px) {
  .globalnav__item a {
    padding: 9px 11px;
    color: #282828;
    font-weight: bold;
    border-radius: 3px;
    margin-top: 12px;
    margin-bottom: 12px;
    display: block;
  }
}
@media (max-width: 896px) {
  .globalnav__item a {
    color: #282828;
    padding-top: 25px;
    padding-bottom: 25px;
    display: block;
    text-align: center;
  }
}
@media (max-width: 896px) {
  .globalnav-list {
    flex-direction: column;
    margin-top: 60px;
  }
  .globalnav-inner {
    position: fixed;
    top: -100%;
    width: 100%;
    background-color: #fff;
    transition: 0.3s;
    z-index: 1;
  }
}
.globalnav .solid-button {
  font-size: 1.8rem;
}
.globalnav__button {
  background-color: #dbdbdb;
  color: #fff;
  font-weight: bold;
  display: inline-block;
  line-height: 1;
  padding: 10px;
}

@media (max-width: 896px) {
  .nav-button {
    display: block;
    position: fixed;
    cursor: pointer;
    z-index: 2;
    padding: 8px 15px 10px;
    top: 0;
    right: 0;
  }
  .nav-bar {
    display: block;
    width: 32px;
    height: 1px;
    margin: 8px 0;
    background-color: #282828;
    transition: 0.3s;
  }
  #nav-toggle:checked + .nav-button .nav-bar:nth-of-type(1) {
    transform: rotate(45deg) translate(7px, 3px);
  }
  #nav-toggle:checked + .nav-button .nav-bar:nth-of-type(2) {
    opacity: 0;
  }
  #nav-toggle:checked + .nav-button .nav-bar:nth-of-type(3) {
    transform: rotate(-45deg) translate(10px, -7px);
  }
  /* メニュートグルのスタイル */
  #nav-toggle {
    display: none;
  }
  /* メニュートグルがチェックされた場合のメニューの表示アニメーション */
  #nav-toggle:checked ~ .globalnav-inner {
    top: 0;
    left: 0;
    height: fit-content;
    transition: 0.3s;
  }
}
/*============================
#footer
============================*/
.site-footer {
  background-color: #282828;
  margin-top: 50px;
}

.footer {
  padding: 20px 0;
  position: relative;
}
.footer__copy {
  font-size: 1.1rem;
  text-align: center;
  display: block;
  color: #fff;
}

.swiper__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 250px;
  z-index: 2;
}

.section-swiper {
  position: relative;
  margin-top: 50px;
}
@media (min-width: 897px) {
  .section-swiper {
    margin-top: 49px;
  }
}
.section-swiper .swiper-pagination {
  bottom: -40px !important;
}
.section-swiper .swiper-pagination-bullet {
  background-color: #dbdbdb;
}
.section-swiper .swiper-pagination-bullet-active {
  background-color: #FF4040;
}
.section-swiper .swiper-button-next,
.section-swiper .swiper-button-prev {
  color: #fff;
}

.particul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
@media (max-width: 896px) {
  .particul {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
  }
}
.particul .text01 {
  position: relative;
  background-color: #FF4040;
  color: #fff;
}
@media (max-width: 896px) {
  .particul .text01 {
    padding: 12px 20px;
  }
}
.particul .text02 {
  position: relative;
  background-color: #282828;
  color: #fff;
}
.particul .pic02 img {
  object-fit: cover;
  height: 100%;
}
@media (max-width: 896px) {
  .particul .pic02 {
    grid-area: 3/1/4/2;
  }
  .particul .text02 {
    grid-area: 4/1/5/2;
    padding: 12px 20px;
  }
}
.particul__text {
  font-size: 2.8rem;
  position: absolute;
  top: 50%;
}
@media (min-width: 897px) {
  .particul__text {
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 896px) {
  .particul__text {
    transform: translateY(-50%);
  }
}
.particul__text span {
  color: #FF4040;
}
.particul__text .big {
  font-size: 180%;
}

.cupon-wrap {
  border: #dbdbdb 1px solid;
  padding: 30px 40px;
  width: fit-content;
  margin-inline: auto;
  position: relative;
  margin-top: 50px;
}
.cupon__title {
  font-size: 3.6rem;
  line-height: 1.25;
  font-weight: bold;
  text-align: center;
}
.cupon__title .small {
  font-size: 75%;
}
.cupon__title .color {
  color: #FF4040;
}
.cupon-list {
  list-style: disc;
  margin-top: 15px;
}
.cupon__text {
  text-align: center;
  font-size: 1.4rem;
  margin-top: 10px;
}
.cupon__icon {
  position: absolute;
  bottom: 20px;
  right: 40px;
  max-width: 50px;
}
@media (max-width: 896px) {
  .cupon__icon {
    right: 20px;
  }
}

.menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  width: fit-content;
  margin-inline: auto;
  justify-content: center;
  margin-top: 40px;
}
@media (max-width: 896px) {
  .menu-list {
    gap: 30px;
  }
}
.menu-list.popular {
  gap: 20px;
}
.menu-wrap {
  position: relative;
  max-width: 300px;
}
@media (max-width: 896px) {
  .menu-wrap {
    max-width: 45%;
  }
}
.menu-wrap .flex {
  justify-content: space-evenly;
}
@media (max-width: 896px) {
  .menu-wrap .flex {
    flex-direction: column;
  }
}
.menu-pointWrap {
  border: 4px #FF4040 solid;
  background-color: #fff;
  color: #FF4040;
  padding-inline: 5px;
  border-radius: 100%;
  aspect-ratio: 1;
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  align-items: center;
}
@media (max-width: 896px) {
  .menu-pointWrap {
    border-width: 2px;
  }
}
.menu__point {
  font-weight: bold;
  font-size: 2rem;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  text-align: center;
  line-height: 1;
}
@media (max-width: 896px) {
  .menu__point {
    font-size: 1.4rem;
  }
}
.menu__img {
  max-height: 300px;
  overflow-y: hidden;
}
.menu__name {
  text-align: center;
  margin-top: 10px;
}
.menu-list.popular .menu__name {
  font-weight: bold;
  font-size: 2.6rem;
}
@media (max-width: 896px) {
  .menu-list.popular .menu__name {
    font-size: 2.2rem;
  }
}
.menu__text {
  margin-inline: auto;
  width: fit-content;
  height: 80px;
  display: grid;
  align-items: center;
}
.menu-list:not(.popular) .menu__text {
  font-size: 1.4rem;
}
.menu__price {
  font-weight: bold;
  color: #FF4040;
  text-align: center;
  font-size: 2rem;
  position: relative;
  bottom: 0;
}
.menu__price span {
  font-size: 55%;
}
.menu-list.popular .menu__price {
  font-size: 2.8rem;
}

.shop-wrap {
  margin-inline: auto;
  display: flex;
  margin-top: 100px;
}
@media (max-width: 896px) {
  .shop-wrap {
    flex-direction: column-reverse;
  }
}
@media (min-width: 897px) {
  .shop__img {
    max-width: 70%;
    margin-right: 20px;
  }
}
.shop__logo {
  max-width: 200px;
}
@media (max-width: 896px) {
  .shop__logo {
    margin-inline: auto;
  }
}
.shop-data {
  margin-top: 12px;
}
@media (max-width: 896px) {
  .shop-data {
    margin-inline: auto;
  }
}
.shop__infohead {
  font-weight: normal;
  text-align: right;
}
.shop__detail {
  padding-left: 10px;
}
.shop address {
  font-style: normal;
}
@page {
  size: A4 portrait;
  margin: 0;
}
.cupon__btn {
  cursor: pointer;
  background-color: #dbdbdb;
  line-height: 1;
  padding: 10px 10px 5px;
  border: #282828 1px solid;
  margin-inline: auto;
  display: block;
  margin-top: 40px;
}/*# sourceMappingURL=common.css.map */