@charset "utf-8";

:root {
  --accent-color: #008fdb;
}

/* ----- common ----- */
.sec {
  padding: 0 4%;
}
.sec-ttl {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}
.sec-ttl02 {
  margin-bottom: 30px;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 3rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .sec {
    padding: 0 30px;
  }
  .sec-inner {
    max-width: 1000px;
    margin: auto;
  }
  .sec-ttl {
    font-size: 3.2rem;
    font-weight: 700;
  }
  .sec-ttl02 {
    margin-bottom: 40px;
    font-size: 4rem;
    font-weight: 900;
  }
}

/* ========== mv ========== */
.mv {
  position: relative;
  /* margin-bottom: 40px; */
  width: 96%;
  border-radius: 0 0 30px 0;
  overflow: hidden;
}
.mv img:first-child {
  display: block;
  aspect-ratio: 3 / 2;
}
.mv img:last-child {
  display: none;
}

@media screen and (min-width: 768px) {
  .mv {
    margin-top: 80px;
    width: 92%;
    height: 480px;
  }
  .mv img:first-child {
    margin: auto;
    width: auto;
    height: 100%;
  }
  .mv img:last-child {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px);
  }
}

/* ========== anounce ========== */
.anounce {
  padding: 1em 4%;
  line-height: 1.25;
  font-size: 1.4rem;
  font-weight: 400;
  color: #ff0000;
}
@media screen and (min-width: 768px) {
  .anounce {
    margin-inline: auto;
    max-width: calc(1000px + 30px * 2);
    padding: 1em 30px;
    font-size: 1.6rem;
  }
}

/* ========== info ========== */
.info {
  padding-top: 1em;
  padding-bottom: 50px;
}
.anounce + .info {
  padding-top: 0;
}

.info-address {
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1.4rem;
  color: #888;
}
.info-address::before {
  content: "";
  display: block;
  width: calc(25px / 2);
  height: auto;
  aspect-ratio: 360 / 512;
  background: center/contain no-repeat url(../img/common/icon-pin.svg);
}

.infoBox {
  position: relative;
  padding: 25px 15px;
  background-color: #f7f9fa;
  border-radius: 20px;
}
.infoBox h3 {
  margin-bottom: 10px;
  font-weight: 700;
}
.infoBox-anounce {
  margin-bottom: 10px;
  line-height: 1.25;
  font-size: 1.4rem;
}
.infoBox-hoursBox {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.infoBox-hoursBox li {
  width: 100%;
}
.infoBox-hoursBox li h4 {
  margin-bottom: 8px;
  padding: 5px;
  border-radius: 99px;
  background-color: #888;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
}
.infoBox-hours {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 15px;
}
.infoBox-hour {
  display: flex;
  align-items: center;
  gap: 5px;
}
.infoBox-hour dt {
  align-self: stretch;
  width: 40px;
  padding: 3px;
  border: 1px solid #888;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  font-size: 1rem;
  color: #888;
}
.infoBox-hour dd {
  line-height: 1.5;
  font-size: 1.4rem;
}
.infoBox-content p {
  line-height: 1.25;
  text-align: center;
}
.infoBox-btn {
  margin: 10px auto;
  font-size: 1.6rem;
}
.infoBox-btn::after {
  top: 60%;
}

/* .infoBox-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1.2rem;
  font-weight: 700;
}
.infoBox-status::before {
  content: '';
  display: block;
  width: 12px;
  height: auto;
  aspect-ratio: 24 / 40;
  background: center/contain no-repeat url(../img/store/icon-smartphone.webp);
} */

@media screen and (min-width: 768px) {
  .info {
    padding-top: 2em;
    padding-bottom: 80px;
  }
  .anounce + .info {
    padding-top: 0;
  }
  .info-address {
    margin: 10px 0 15px;
    font-size: 1.6rem;
  }
  .info-address::before {
    width: 15px;
  }

  .infoBox {
    padding: 30px;
  }
  .infoBox h3 {
    font-size: 2rem;
  }
  .infoBox-hoursBox {
    flex-direction: row;
    justify-content: space-between;
  }
  .infoBox-hoursBox li {
    width: calc((100% - 20px) / 2);
  }
  .infoBox-hoursBox li h4 {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
  .infoBox-hours {
    gap: 5px 30px;
  }
  .infoBox-hour {
    gap: 10px;
  }
  .infoBox-hour dt {
    width: 80px;
    padding: 5px;
    border-radius: 6px;
    font-size: 1.4rem;
  }
  .infoBox-hour dd {
    font-size: 1.8rem;
  }
  .infoBox-content p {
    font-size: 1.8rem;
  }
  .infoBox-btn {
    margin: 20px auto;
    font-size: 1.8rem;
  }
  .infoBox-btn::after {
    top: 55%;
    width: 7px;
    height: 7px;
  }

  /* .infoBox-status {
    gap: 10px;
    font-size: 1.6rem;
  }
  .infoBox-status::before {
    width: 20px;
  } */
}

/* ----- recommend ----- */
.recommend {
  padding-bottom: 40px;
}
.recommend-slider {
  overflow: hidden;
}
.recommend-slider.swiper-initialized {
  margin-inline: -4%;
}

.recommendCard {
  width: calc(100vw - 50px * 2);
}
.recommendCard img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.recommendCard-info {
  padding: 15px 15px 20px;
}
.recommendCard-info h3 {
  margin-bottom: 5px;
  line-height: 1.25;
  font-size: 1.4rem;
  font-weight: 700;
}
.recommendCard-price {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  font-weight: 900;
}
.recommendCard-price::before {
  content: "¥";
  font-size: 0.75em;
}
.recommendCard-price::after {
  content: "（税込）";
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.5em;
  font-weight: 500;
}
.recommendCard-menu {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-end;
}
.recommendCard-menu + .recommendCard-menu {
  margin-top: 10px;
}
.recommendCard-menu h3 {
  margin-bottom: 0;
  width: calc(100% - 100px - 10px);
}
.recommendCard-menu .recommendCard-price {
  width: 100px;
  text-align: right;
}

.recommend-pagination {
  margin: 15px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.recommend-slider .recommend-pagination .swiper-pagination-bullet {
  margin: 0;
  width: 10px;
  height: 10px;
}

.recommend-slider .arrowButton01-prev,
.recommend-slider .arrowButton01-next {
  top: 38%;
}
.recommend-slider .arrowButton01-prev {
  left: 0;
}
.recommend-slider .arrowButton01-next {
  right: 0;
}

/* slider inactive */
.recommend-slider:not(.swiper-initialized) {
  padding: 0;
  overflow: visible;
}
.recommend-slider:not(.swiper-initialized) .recommend-pagination,
.recommend-slider:not(.swiper-initialized) .arrowButton01-prev,
.recommend-slider:not(.swiper-initialized) .arrowButton01-next {
  display: none;
}
.recommend-slider:not(.swiper-initialized) .swiper-wrapper {
  justify-content: center;
  gap: 30px;
}
.recommend-slider:not(.swiper-initialized) .recommendCard {
  width: calc((100% - 30px * 2) / 3);
  min-width: 300px;
}

@media screen and (min-width: 768px) {
  .recommend {
    padding-bottom: 60px;
  }
  .recommend-slider.swiper-initialized {
    margin-inline: 0;
  }

  .recommendCard-info h3 {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
  .recommendCard-price {
    font-size: 2.4rem;
  }

  .recommendCard-menu h3 {
    margin-bottom: 0;
    width: calc(100% - 120px - 10px);
  }
  .recommendCard-menu .recommendCard-price {
    width: 120px;
  }

  .recommend-slider {
    padding: 0 30px;
  }
  .recommend-pagination {
    margin: 20px 0;
    gap: 30px;
  }
  .recommend-slider .recommend-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
}

/* ----- playerFood ----- */
.playerFood {
  padding-bottom: 50px;
}
.playerFood-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 15px;
}

.playerFoodCard img {
  display: block;
}

@media screen and (min-width: 768px) {
  .playerFood {
    padding-bottom: 100px;
  }
  .playerFood-list {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
  }
  .playerFood-list li {
    width: calc((100% - 30px * 2) / 3);
  }
}

/* ----- food ----- */
.food {
  padding-bottom: 50px;
}
.food-ttl {
  margin-bottom: 15px;
}
.food-list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 15px;
}

.foodCard {
  width: 165px;
}
/* .foodCard-image {
  position: relative;
} */
.foodCard-image img {
  display: block;
  aspect-ratio: 3 / 2;
}
/* .foodCard-status {
  position: absolute;
  bottom: 5px;
  right: 5px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.foodCard-status li {
  width: 32px;
  height: 32px;
} */
.foodCard-info {
  padding: 10px 10px 15px;
}
.foodCard-name {
  margin-bottom: 10px;
  line-height: 1.3;
  font-size: 1.4rem;
  font-weight: 700;
}
.foodCard-price {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  font-weight: 900;
}
.foodCard-price::before {
  content: "¥";
  font-size: 0.75em;
}
.foodCard-price::after {
  content: "（税込）";
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.5em;
  font-weight: 500;
}
.foodCard-menu:has(+ .foodCard-menu) {
  margin-bottom: 10px;
}
.foodCard-menu .foodCard-name {
  margin-bottom: 0;
}
.foodCard-menu .foodCard-price {
  text-align: right;
}

.food-list02Wrapper {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px 50px;
}
.food-list02 li {
  padding-bottom: 5px;
  border-bottom: 1px solid #eee;
}
.food-list02 li + li {
  padding-top: 10px;
}

.food-notes {
  margin-block: 20px;
}
.food-notes li {
  padding-inline-start: 1em;
  text-indent: -1em;
  font-size: 0.8em;
}
.food-notes li::before {
  content: "※";
  color: #ff0000;
}

.foodCardTxt {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 15px;
}
.foodCardTxt-name {
  width: calc(100% - 90px - 15px);
  line-height: 1.25;
}
.foodCardTxt-price {
  width: 90px;
  white-space: nowrap;
  text-align: right;
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
}
.foodCardTxt-price::before {
  content: "¥";
  font-size: 0.75em;
}
.foodCardTxt-price::after {
  content: "（税込）";
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.5em;
  font-weight: 500;
}

/* ----- food-menu ----- */
.food-menu {
  width: 100%;
  max-width: 600px;
  margin: 40px auto 0;
  position: relative;
}
.food-menu-modal-open-button {
  width: 80px;
  border: none;
  cursor: pointer;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
  background-color: transparent;
  position: absolute;
  right: 10px;
  bottom: 10px;
}
.food-menu-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: 0.3s;
}
.food-menu-modal._passive {
  visibility: hidden;
  opacity: 0;
}
.food-menu-modal-content {
  width: 100%;
  max-width: 800px;
  position: relative;
}
.food-menu-modal.is-ajusted .food-menu-modal-content {
  width: auto;
  height: 100%;
  max-height: 80vh;
}
.menu-modal-close-button {
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: none;
  background-color: transparent;
  position: absolute;
  top: -50px;
  right: 0;
}
.menu-modal-close-button span {
  display: block;
  width: 40px;
  height: 3px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  rotate: 45deg;
}
.menu-modal-close-button span:nth-child(2) {
  rotate: -45deg;
}
.food-menu-modal-image img {
  display: block;
}
.food-menu-modal.is-ajusted .food-menu-modal-image {
  height: 100%;
}
.food-menu-modal.is-ajusted .food-menu-modal-image img {
  width: auto;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .food {
    padding-bottom: 100px;
  }
  .food-ttl {
    margin-bottom: 30px;
  }
  .food-list {
    gap: 30px;
  }

  .foodCard {
    width: calc((1000px - 30px * 3) / 4);
  }
  /* .foodCard-status li {
    width: 45px;
    height: 45px;
  } */
  .foodCard-info {
    padding: 10px 10px 15px;
  }
  .foodCard-name {
    margin-bottom: 10px;
    font-size: 1.4rem;
    font-weight: 700;
  }
  .foodCard-price {
    font-family: "Roboto", sans-serif;
    font-size: 2rem;
    font-weight: 900;
  }
  .foodCard-price::before {
    content: "¥";
    font-size: 0.75em;
  }
  .foodCard-price::after {
    content: "（税込）";
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.5em;
    font-weight: 500;
  }

  .food-list02Wrapper {
    margin-top: 40px;
    flex-direction: row;
  }
  .food-list02 {
    width: calc((100% - 50px) / 2);
  }
  .food-list02 li {
    border-width: 2px;
  }

  .foodCardTxt-name {
    width: calc(100% - 110px - 15px);
  }
  .foodCardTxt-price {
    width: 110px;
    font-size: 2rem;
  }

  .food-menu {
    margin-top: 60px;
  }
}

/* ----- drink ----- */
.drink-ttl {
  margin-bottom: 15px;
}
.drink-tab {
  display: flex;
  gap: 5px;
}
.drink-tab li {
  width: 50%;
  padding: 20px;
  border-radius: 20px 20px 0 0;
  box-shadow: 2px -2px 5px 0 rgba(0, 0, 0, 0.04);
  text-align: center;
  font-weight: 700;
  color: var(--accent-color);
}
.drink-tab li.is-show {
  background-color: #e1f1fa;
}
.drink-listWrapper {
  padding: 40px 15px;
  background-color: #e1f1fa;
  border-radius: 0 0 20px 20px;
}
.drink-listCulmn {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 80px;
}
.drink-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.drinkCard {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.drinkCard-ttl {
  width: calc(100% - 75px - 15px);
  display: flex;
  align-items: center;
  gap: 10px;
}
.drinkCard-name {
  line-height: 1.25;
  font-size: 1.4rem;
}
/* .drinkCard-status {
  display: flex;
  align-items: center;
  gap: 5px;
}
.drinkCard-status li {
  width: 25px;
  height: auto;
  aspect-ratio: 1 / 1;
} */
.drinkCard-price {
  width: 75px;
  white-space: nowrap;
  text-align: right;
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
}
.drinkCard-price::before {
  content: "¥";
  font-size: 0.6em;
}
.drinkCard-price::after {
  content: "(税込)";
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.6em;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .drink-ttl {
    margin-bottom: 30px;
  }
  .drink-tab {
    gap: 10px;
  }
  .drink-tab li {
    font-size: 2rem;
  }
  .drink-listWrapper {
    padding: 40px;
  }

  .drinkCard-ttl {
    width: calc(100% - 90px - 15px);
  }
  .drinkCard-name {
    font-size: 1.6rem;
  }
  /* .drinkCard-status li {
    width: 31px;
  } */
  .drinkCard-price {
    width: 90px;
    font-size: 2rem;
  }
}
@media screen and (min-width: 1060px) {
  .drink-list {
    width: calc((100% - 80px) / 2);
  }
}

/* ----- allergy ----- */
.allergy-allBtn {
  margin: 0 auto 50px;
  padding-inline-end: 20px;
  font-size: 1.6rem;
}
.drink + .allergy-allBtn {
  margin-top: 30px;
}
.allergy-allBtn::after {
  width: 7px;
  height: 7px;
}

@media screen and (min-width: 768px) {
  .allergy-allBtn {
    margin: 0 auto 120px;
    font-size: 2rem;
  }
  .drink + .allergy-allBtn {
    margin-top: 50px;
  }
}

/* ----- detail ----- */
.detail {
  padding-top: 50px;
  padding-bottom: 30px;
  background-color: #f7f9fa;
}
.detail-info {
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
}
.detail-info + .detail-info {
  padding-top: 15px;
}
.detail-info dt {
  margin-bottom: 15px;
  font-weight: 700;
}
.detail-info dd {
  font-size: 1.4rem;
}

@media screen and (min-width: 768px) {
  .detail {
    padding-top: 100px;
    padding-bottom: 70px;
  }
  .detail-info {
    padding-bottom: 20px;
  }
  .detail-info dt {
    font-size: 2rem;
  }
  .detail-info dd {
    font-size: 1.6rem;
  }
}

/* backBtn */
.back {
  padding-bottom: 100px;
  /* background-color: #f7f9fa; */
}
.back-backBtn {
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .back {
    padding-bottom: 120px;
  }
}
