@charset "utf-8";

/* ==================================
  リセット・調整
===================================== */
/*---------- フォントサイズ調整 ----------*/
/* 地の文（p） */
body:not(.page_index) {
  font-size: 0.875rem;
}
/* 見出し（h4） */
@media (max-width: 767px) {
  body:not(.page_index) .h4 {
    font-size: 1.125rem;
  }
}
/* ボタン */
body:not(.page_index) .btn {
  font-size: 0.875rem;
}

/*---------- パンくず ----------*/
#locator ol {
  padding: 0;
}

/*---------- 下層のヘッダー・TOPヘッダーの調整 ----------*/
.page_index #header {
  position: fixed;
  /* height: 6.5rem; */
}
body:not(.page_index) #header {
  position: sticky;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
body:not(.page_index) #header .header {
  height: 5rem;
}
@media (min-width: 768px) {
  body:not(.page_index) #header .header {
    height: 6.5rem;
  }
}

/* .l-header-spacer {
  height: 5rem;
}
@media (min-width: 769px) {
  .l-header-spacer {
    height: 10rem;
    height: 6.5rem;
  }
} */

/*---------- 小さいふわっと ----------*/
@-webkit-keyframes fadeInUpSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3rem, 0);
    transform: translate3d(0, 30%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3rem, 0);
    transform: translate3d(0, 3rem, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpSmall {
  -webkit-animation-name: fadeInUpSmall;
  animation-name: fadeInUpSmall;
}

/*---------- TOP調整 ----------*/
/* ハンバーガーボタンホバー時にポインター */
.spbtn {
  cursor: pointer;
}
/* CTA消えるときにイージング */
#floatbnr .bnrbox {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: all 0.3s ease-in-out;
}
#floatbnr .bnrbox.is-bottom {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/*---------- ページトップに戻るボタンTOPヘッダーの調整 ----------*/
.share_top-link .top-link {
  display: none;
}
.share_top-link.is-active .top-link {
  display: block !important;
}

/* ==================================
  ファンデーション
===================================== */
/*---------- スムーズスクロール ----------*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}
@media (min-width: 768px) {
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 6.5rem;
  }
}

/*---------- フォント ----------*/
.ff-mincho {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

/* ==================================
  ユーティリティー
===================================== */
/*---------- 画像の比率 ----------*/
.u-aspect img {
  width: 100%;
  object-fit: cover;
}
.u-aspect.--contain img {
  object-fit: contain;
}
.u-aspect.--16x9 img {
  aspect-ratio: 16 / 9;
}
.u-aspect.--4x3 img {
  aspect-ratio: 4 / 3;
}
.u-aspect.--21x9 img {
  aspect-ratio: 21 / 9;
}
.u-aspect.--1x1 img {
  aspect-ratio: 1 / 1;
}
.u-aspect.--7x8 img {
  aspect-ratio: 7 / 8;
}

/*---------- object-fit: cover; ----------*/
.u-img-cover img {
  object-fit: cover;
}

/*---------- 角丸 ----------*/
.u-rounded-_5 {
  border-radius: 0.5rem !important;
  overflow: hidden;
}
.u-rounded-_75 {
  border-radius: 0.75rem !important;
  overflow: hidden;
}
.u-rounded-1 {
  border-radius: 1rem !important;
  overflow: hidden;
}
.u-rounded-1_5 {
  border-radius: 1.5rem !important;
  overflow: hidden;
}
.u-rounded-1_25 {
  border-radius: 1.25rem !important;
  overflow: hidden;
}
.u-rounded-2 {
  border-radius: 2rem !important;
  overflow: hidden;
}
.u-rounded-3 {
  border-radius: 3rem !important;
  overflow: hidden;
}

/*---------- フォントサイズ ----------*/
.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}
.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}
.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}
.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}
.fs-5 {
  font-size: 1.25rem !important;
}
.fs-6 {
  font-size: 1rem !important;
}
.fs-7 {
  font-size: 0.875rem !important;
}
.fs-8 {
  font-size: 0.75rem !important;
}
.fs-9 {
  font-size: 0.625rem !important;
}
.fs-10 {
  font-size: 0.5rem !important;
}

/*---------- ホバーアクション ----------*/
.u-hover {
  transition: all 0.3s ease-in-out;
  color: inherit;
}
.u-hover.--opacity:hover {
  opacity: 0.8;
  text-decoration: none;
}
.u-hover.--up:hover {
  transform: translateY(-0.125rem);
  text-decoration: none;
}

/*---------- スライダーを滑らかに ----------*/
.u-swiper-liner .swiper-wrapper {
  transition-timing-function: linear;
}

/*---------- 右にはみ出させる ----------*/
.u-r-over {
  margin-right: calc(50% - 50vw);
}
/*---------- 左にはみ出させる ----------*/
.u-l-over {
  margin-left: calc(50% - 50vw);
}
@media (min-width: 768px) {
  .u-over-col-md-width {
    flex: 0 0 50vw;
    max-width: unset;
  }
  .u-col-md-static {
    max-width: calc(100% - 50vw);
  }
}

/* ==================================
  パーツ
===================================== */
/*---------- アイコン ----------*/
.c-icon {
  display: grid !important;
  grid-template-columns: repeat(2, auto);
  column-gap: 0.5rem;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  .c-icon {
    column-gap: 1rem;
  }
}
@media (max-width: 991px) {
  .c-sp-icon {
    display: grid !important;
    grid-template-columns: repeat(2, auto);
    column-gap: 0.5rem;
    justify-content: center;
    align-items: center;
  }
}

/*---------- 背景のベース ----------*/
.p-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
.p-bg::before,
.p-bg::after {
  display: block;
  position: absolute;
  content: "";
  z-index: -1;
}

/*---------- 黒透過 ----------*/
.bg-black-shadow {
  position: relative;
  z-index: 1;
}

.p-bg.--shadow-bl::before {
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.p-bg.--shadow-wh::before {
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
}

/* ==================================
  下層
===================================== */
/*---------- MV ----------*/
.tmpl_01_page-hero {
  /* min-height: 20rem; */
  min-height: 15rem;
  background-image: url("/dcms_media/image/mv.jpg");
  background-image: url("/dcms_media/image/bg-mv-base.jpg");
  /* text-align: left; */
  position: relative;
  z-index: 1;
  margin-bottom: 8rem;
}
.tmpl_01_page-hero .container {
  position: absolute;
  /* top: 0; */
  bottom: -8rem;
}
@media (max-width: 991.98px) {
  .tmpl_01_page-hero {
    min-height: 10rem;
  }
}
.page_media .tmpl_01_page-hero {
  background-image: url("/dcms_media/image/bg-mv-media.jpg");
}
.page_delicious .tmpl_01_page-hero {
  /* min-height: 32rem; */
  /* min-height: 16rem; */
}
@media (max-width: 991.98px) {
  .page_delicious .tmpl_01_page-hero {
    min-height: 16rem;
  }
}

.tmpl_01_page-hero::before {
  display: block;
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.tmpl_01_page-hero_text {
  /* font-size: clamp(2.75rem, 6vw, 2.5rem); */
  font-size: clamp(1.75rem, 6vw, 2rem);
  font-family: "Noto Sans JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  /* color: #fff; */
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tmpl_01_page-hero_text::after {
  display: block;
  /* position: absolute; */
  content: "";
  width: 3rem;
  height: 1px;
  background-color: #000;
  margin-top: 0.25em;
}

/* ==================================
  当店のこだわり（下層オリ）
===================================== */
/*---------- 其の ----------*/
.badge-red-outline {
  border: 1px solid #f00;
  color: #f00;
}

/*---------- 重なった背景色 ----------*/
.p-bg.--deli-1::before {
  top: 20%;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fbf1ee;
}
@media (min-width: 768px) {
  .p-bg.--deli-1::before {
    top: 50%;
    right: 0;
    bottom: 0;
    left: 0;
  }
}

.p-bg.--deli-1::after {
  top: 10%;
  right: 0;
  bottom: 5rem;
  left: 10vw;
  background-color: #fbf7ee;
}
@media (min-width: 768px) {
  .p-bg.--deli-1::after {
    top: 15%;
    right: 0;
    bottom: 5rem;
    left: 10vw;
  }
}

.p-bg.--deli-2::before {
  top: 20%;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fbf1ee;
}
@media (min-width: 768px) {
  .p-bg.--deli-2::before {
    top: 50%;
    right: 0;
    bottom: 0;
    left: 0;
  }
}

.p-bg.--deli-2::after {
  top: 10%;
  right: 10vw;
  bottom: 5rem;
  left: 0;
  background-color: #fbf7ee;
}
@media (min-width: 768px) {
  .p-bg.--deli-2::after {
    top: 20%;
    right: 10vw;
    bottom: 5rem;
    left: 0;
  }
}

/* ==================================
  初回モーダルcss
===================================== */
body.open_popup {
  overflow: hidden;
}

.bg_onetime_popup {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

body.open_popup .bg_onetime_popup {
  opacity: 1;
  visibility: visible;
}

.onetime_popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 95%;
  max-width: 40rem;
  height: 95%;
  max-height: 40rem;
  overflow-y: scroll;
  /* min-width: 500px; */
  background-color: #fff;
}

.onetime_popup_title {
  position: relative;
  padding: 1em 80px;
  margin: 0px;
  background-color: #3388dd;
  color: #fff;
  font-size: 32px;
  text-align: center;
  line-height: 1.5;
}

.onetime_popup_title_close {
  position: absolute;
  top: 50%;
  right: 30px;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  cursor: pointer;
}
.onetime_popup_title_close::before,
.onetime_popup_title_close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  height: 4px;
  background-color: #fff;
  content: "";
}
.onetime_popup_title_close::before {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.onetime_popup_title_close::after {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.onetime_popup_content {
  padding: 60px 30px;
  text-align: center;
}

/* 調整 */
.bg_onetime_popup .dlb_blog-image img {
  max-width: 20rem;
}
