@charset "UTF-8";

body {
    background: #fafaf9!important;
}

.fixed{
  position: fixed;
}
.absolute{
  position: absolute;
}
.relative{
  position: relative;
}
.inset-0{
  inset: 0px;
}
.left-0{
  left: 0px;
}
.top-0{
  top: 0px;
}
.z-10{
  z-index: 10;
}
.my-6{
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.mt-32{
  margin-top: 8rem;
}
.mt-4{
  margin-top: 1rem;
}
.mt-8 {
    margin-top: 2rem;
}
.block{
  display: block;
}
.inline-block{
  display: inline-block;
}
.flex{
  display: flex;
}
.grid{
  display: grid;
}
.hidden{
  display: none;
}
.h-full{
  height: 100%;
}
.w-full{
  width: 100%;
}
.transform{
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.flex-wrap{
  flex-wrap: wrap;
}
.items-center{
  align-items: center;
}
.justify-between{
  justify-content: space-between;
}
.text-red {
    color: #a31a1a;
}
.text-xl {
    font-size: 1.25em;
}
.font-bold{
    font-weight: 700;
}
.inline-block{
    display: inline-block;
}
.mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}
.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.px-5{
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.pr-28{
  padding-right: 7rem;
}
.font-bold{
  font-weight: 700;
}
.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.transition{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.ease-in-out{
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.u-container {
  width: min(1200px, 100% - 60px);
  margin-inline: auto;
}

h1 {
  opacity: 0;
  animation: fadeIn 0.8s ease-in-out 0.5s forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.parallax-section {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.parallax-container {
  height: 850px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.parallax-container img {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translateY(0);
  will-change: transform;
  opacity: 0;
}

@media (max-width: 768px) {
  .parallax-container {
    height: 280px;
  }
}
.shopGallery {
  display: flex;
  gap: 3.2rem;
  margin-bottom: 12.5rem;
}
@media (max-width: 768px) {
  .shopGallery {
    margin-bottom: 4rem;
  }
}

.shopGallery_main {
  flex: 4.3;
  overflow: hidden;
  position: relative;
  background-color: #fff;
}
@media (max-width: 768px) {
  .shopGallery_main {
    aspect-ratio: 4/3; /* 縦横比を4:3に設定 */
  }
}

.shopGallery_main img,
.shopGallery_main-image {
  width: 100%;
  height: 100%; /* コンテナいっぱいに表示 */
  -o-object-fit: cover;
     object-fit: cover; /* アスペクト比を維持しつつコンテナを埋める */
  display: block;
  position: absolute; /* 画像を重ねる */
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.4s ease-in-out; /* フェード効果の時間調整 */
}

.shopGallery_main-image.is-active {
  opacity: 1;
  z-index: 1; /* 表示中の画像を前面に */
}

.shopGallery_main-image.is-next {
  z-index: 0; /* 次の画像を背面に */
}

.shopGallery_thumbnails {
  flex: 1; /* サムネイルエリアの幅 */
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.shopGallery_thumbnails img {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.shopGallery_thumbnails img:hover {
  opacity: 0.8;
}

/* スマートフォン向けのスタイル */
@media (max-width: 768px) {
  .shopGallery {
    flex-direction: column; /* 縦並びにする */
    gap: 10px;
  }
  .shopGallery_thumbnails {
    gap: 0;
    justify-content: space-between;
    flex-direction: row; /* サムネイルを横並びにする */
  }
  .shopGallery_thumbnails img {
    width: 24%;
    -o-object-fit: cover;
       object-fit: cover; /* アスペクト比を維持しつつトリミング */
  }
  .shopSection {
    padding-top: 10rem;
  }
}
.shop dl.shop_info {
  margin-top: 2.5rem;
  border-top: 2px solid #E2E2E2;
  display: grid;
  grid-template-columns: auto 1fr;
}
@media (max-width: 768px) {
  .shop dl.shop_info {
    border-top: 1px solid #E2E2E2;
    margin-top: 1rem;
  }
}
.shop dl.shop_info .shop_info_title,
.shop dl.shop_info .shop_info_content {
  border-bottom: 2px solid #E2E2E2;
  padding: 2.2rem 0;
  font-size: clamp(1.3rem, 0.85vw + 0.98rem, 2rem);
  letter-spacing: 0.15em;
}
@media (max-width: 768px) {
  .shop dl.shop_info .shop_info_title,
  .shop dl.shop_info .shop_info_content {
    padding: 0.8rem 0;
    border-bottom: 1px solid #E2E2E2;
  }
}
.shop dl.shop_info .shop_info_title dl dt,
.shop dl.shop_info .shop_info_content dl dt{
  padding-left: 2rem;
  padding-right: 2rem;
  display: inline-block;
  background-color: #EEEEEE;
}
.shop dl.shop_info .shop_info_title dl dt, .shop dl.shop_info .shop_info_title dl dd,
.shop dl.shop_info .shop_info_content dl dt,
.shop dl.shop_info .shop_info_content dl dd{
  margin-top: 0.5rem;
}
.shop dl.shop_info .shop_info_title dl dt:first-child, .shop dl.shop_info .shop_info_title dl dd:first-child,
.shop dl.shop_info .shop_info_content dl dt:first-child,
.shop dl.shop_info .shop_info_content dl dd:first-child {
  margin-top: 0;
}
.shop dl.shop_info .shop_info_title .btn,
.shop dl.shop_info .shop_info_content .btn {
  display: inline-flex;
  margin-top: 1rem;
  font-size: clamp(1.4rem, 1.247rem + 1.102vw, 2.9rem);
  line-height: 1.3;
}
@media (max-width: 768px) {
  .shop dl.shop_info .shop_info_title .btn,
  .shop dl.shop_info .shop_info_content .btn{
    margin-top: 0.5rem;
  }
}
.shop dl.shop_info .shop_info_title .btn .icon-map,
.shop dl.shop_info .shop_info_content .btn .icon-map {
  width: 0.9em;
  height: 0.9em;
  margin-right: 0.3em;
}
.shop dl.shop_info .shop_info_title{
  display: flex;
  align-items: center;
  padding-right: 7rem;
  letter-spacing: 0.025em;
}
@media (max-width: 768px) {
  .shop dl.shop_info .shop_info_title{
    padding-right: 2.5rem;
  }
}
.shop .shop_info_epark p{
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: clamp(1.3rem, 0.85vw + 0.98rem, 2rem);
}

.storySection {
  z-index: 1;
}

.fruits02 {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateY(78%) translateX(15%);
  width: min(25%, 225px) !important;
}
@media (max-width: 768px) {
  .fruits02 {
    transform: translateY(60%) translateX(0);
  }
  .menuSection {
    padding-bottom: 10rem;
  }
}

.seasonSection{
  margin-top: 8rem;
}
@media (max-width: 768px) {
  .seasonSection{
    margin-top: 1rem;
  }
}

.seasonSection + .sandwichSection {
  margin-top: 40rem !important;
}
@media (max-width: 768px) {
  .seasonSection + .sandwichSection {
    margin-top: 8rem !important;
  }
}

.sandwichSection .sandwichDishWrapper {
  width: 100%;
  max-width: 980px;
  position: relative;
}
.sandwichSection .sandwichDish {
  position: absolute;
  bottom: 0;
}
@media (max-width: 960px) {
  .sandwichSection .sandwichDish {
    position: relative;
    width: 90%;
    margin: 0 auto;
    transform: translateY(0) translateX(0);
  }
}
.sandwichSection .sandwichDish div{
  position: absolute;
  inset: 0px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sandwichSection .sandwichDish div img {
  width: 36%;
}

.menuListFooter {
  margin-top: 19rem;
  width: min(1200px, 100% - 60px);
  margin-inline: auto;
}
@media (max-width: 768px) {
  .menuListFooter {
    margin-top: 6rem;
  }
}

.shopHead h2 {
  order: 2;
  display: flex;
  justify-content: center;
}

.newsHead{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.news {
  margin-top: 8rem;
}
@media (max-width: 768px) {
  .news {
    margin-top: 2rem;
  }
}

.newsSection {
  background: #fafaf9 !important;
  padding-block: 0 20rem;
}
@media (max-width: 768px) {
  .newsSection {
    padding-block: 0 10rem;
  }
}
.newsSection .newsContainer {
  position: relative;
  padding-block-start: 8rem;
}
@media (max-width: 768px) {
  .newsSection .newsContainer {
    padding-block-start: 3rem;
  }
}
.newsSection .newsContainer .newsHead {
  padding-left: 10rem;
}
@media (max-width: 768px) {
  .newsSection .newsContainer .newsHead {
    padding-left: 0;
  }
}
.newsSection .newsContainer .newsHead h2 {
  width: min(23%, 200px);
}
.newsSection .newsContainer .newsHead .shopHead_img {
  width: min(75%, 852px);
}
.newsSection .toast {
  position: relative;
  transform: translateY(35%);
  margin-left: 2.3rem;
  width: min(40%, 300px);
}
@media (max-width: 768px) {
  .newsSection .toast {
    margin-left: 0;
  }
}

/* ==============================
decoration
 ==============================*/
.menu_bodyInner {
  position: relative;
}

[class^=menu_deco-] {
  pointer-events: none;
  width: 140px;
}

.pineapple {
  position: absolute;
  top: 0;
  right: 3%;
  transform: translateY(-57%);
  width: min(50%, 442px) !important;
}
@media (max-width: 768px) {
  .pineapple {
    transform: translateY(-37%) translateX(20%);
  }
}

.fruits03 {
  position: absolute;
  bottom: 1%;
  left: 7%;
  width: min(30%, 210px) !important;
}

.menu_deco-fruitsandwich {
  transform: rotate(15deg) translateY(65%) translateX(70%);
  right: 0;
  bottom: 0;
  width: min(43%, 245px) !important;
}
@media (max-width: 768px) {
  .menu_deco-fruitsandwich {
    transform: rotate(15deg) translateY(53%) translateX(40%);
  }
}

.menu_deco-season {
  transform: translateY(-103%) translateX(100%);
  right: 0;
  top: 0;
  width: 39% !important;
}
@media (max-width: 768px) {
  .menu_deco-season {
    transform: translateY(80%) translateX(0);
    width: 29% !important;
    top: auto;
    bottom: 0;
  }
}

.menu_deco-toast {
  transform: translateY(100%) translateX(100%);
  bottom: 0;
  right: 0;
  width: 43% !important;
}
@media (max-width: 768px) {
  .menu_deco-toast {
    right: 0;
    transform: translateY(65%) translateX(0);
    width: 40% !important;
  }
}

.menu_deco-mealsandwich {
  z-index: 1;
}

.menu_deco-dessert {
  transform: translateY(60%) translateX(90%);
  bottom: 0;
  width: 53% !important;
}
@media (max-width: 768px) {
  .menu_deco-dessert {
    right: 0;
    transform: translateY(58%) translateX(0);
    width: 40% !important;
  }
}

.menu_deco-drink {
  transform: translateY(50%) translateX(90%);
  right: 0;
  bottom: 0;
  width: 70% !important;
}
@media (max-width: 768px) {
  .menu_deco-drink {
    left: auto;
    right: 0;
    transform: translateY(65%) translateX(10%);
    width: 55% !important;
  }
}

.menu_deco-takeout {
    transform: translateY(70%) translateX(110%);
    bottom: 0;
    width: 53% !important;
}
@media (max-width: 768px) {
    .menu_deco-takeout {
        right: 0;
        transform: translateY(58%) translateX(0);
        width: 40% !important;
    }
}


.menu_deco-fruits04 {
  left: 0;
  bottom: 0;
  transform: translateY(18%) translateX(-15%);
  width: min(50%, 304px) !important;
}

.menu_deco-fruits05 {
  right: 0;
  width: min(40%, 217px) !important;
}
@media (max-width: 768px) {
  .menu_deco-fruits05 {
    transform: translateY(18%) translateX(17%);
  }
}

address {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -webkit-text-size-adjust: none;
  -webkit-tap-highlight-color: transparent;
}


.btn_reserve {
    background: #a31a1a;
    color: #fff;
    padding: 1.3rem 2rem;
    border-radius:5px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.btn_reserve svg {
    width: 2rem;
    transition: all 0.3s ease;
}

.btn_reserve:hover {
    opacity: 0.8;
}

.btn_reserve:hover svg {
    transform: translateX(0.5rem);
}

/* ==============================
topAppBanner
 ==============================*/

.scrollBackToTop {
    @media  (max-width: 768px) {
        display: none!important;
    }
}

.c-topAppBanner {
    color: #000;
    width: 92%;
    max-width: 370px;
    position: sticky;
    padding-bottom: 2rem;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    font-weight: 500;
    z-index:11;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
@media  (max-width: 768px) {
    .c-topAppBanner {
        display: block;
    }
}

.appBanner-active .c-topAppBanner {
    opacity: 1;
}

.c-topAppBanner a{
    display: flex;
    background: #fff;
    border-radius: 0.9rem;
    box-shadow: 0 .2rem .4rem 0.1rem rgba(0,0,0,.4);
    gap: 0.5rem;
    align-items: center;
    justify-content: space-between;
    padding: 0.3em 1.2em 0.3em 0.8em;
    color: #A31A1B;
    font-size: 2rem;
}


@media (max-width: 374px) {
    .c-topAppBanner a {
        font-size: 1.6rem;
    }
}

.c-topAppBanner a:hover {
    color: #000;
}

.c-topAppBanner a img {
    width: 5.5rem;
}

@media (max-width: 480px) {
    .backToTop {
        display: none!important;
    }
}
