@charset "UTF-8";

/* 共通設定 */
.pcHidden {
  display: none;
}

@media screen and (max-width: 768px) {
  .pcHidden {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .spHidden {
    display: none !important;
  }
}

.center-block p {
  color: #443731;
}

.text10 {
  font-size: 1.0rem;
  font-weight: bold;
}

.text11 {
  font-size: 1.1rem;
  font-weight: bold;
}

.text12 {
  font-size: 1.2rem;
  font-weight: bold;
}

.text13 {
  font-size: 1.3rem;
  font-weight: bold;
}

.text14 {
  font-size: 1.4rem;
  font-weight: bold;
}

.text16 {
  font-size: 1.6rem;
  font-weight: bold;
}

.text18 {
  font-size: 1.8rem;
  font-weight: bold;
}

.w90p {
  width: 90%;
}

.w95p {
  width: 95%;
}

.w175 {
  width: 175px;
}

.w300 {
  width: 300px;
}

.w310 {
  width: 310px;
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/* スマホナビ */
#sp-nav {
  display: none;
}


/* メイン3カラム */
.main__block {
  display: flex;
  height: calc(100vh - 100px);
  /* header分を引く */
  overflow: hidden;
  /* 中央以外はスクロールしない */
  margin-bottom: 0;
  scroll-behavior: smooth;
}

/* 左ブロック */
.left-block {
  flex: 3;
  /* 1 → 3 に変更 */
  background-image: url(../img/Italy.jpg);
  background-size: cover;
  background-position: center;
}

/* 中央ブロック */
.center-block {
  flex: 0 0 350px;
  /* 幅固定に変更 */
  margin: 0 20px;
  overflow-y: auto;
  /* スクロール可能 */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
  background-color: #e5dfd2;
}

.center-block::-webkit-scrollbar {
  width: 0px;
  /* Chrome, Safari, Edge */
  background: transparent;
}

/* 右ブロック */
.right-block {
  flex: 1.5;
  /* 必要なら0.8や0.5にしてさらに狭くできます */
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;
  /* background-color: #f29796; */
  background-image: url(../img/strawberry_bk.jpg);
  background-size: cover;
  background-position: center;
}


/* ナビ */
.nav_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav_list li {
  margin-bottom: 10px;
  background-color: #fff;
  border-radius: 10px;
  border: solid 5px #d13523;
  text-align: center;
}

.nav_list li a {
  display: inline-block;
  padding: 15px 40px;
  font-weight: 700;
  color: #443731;
  text-decoration: none;
}

.nav_list li.current {
  background-color: #f2e8de;
}


/*========= 右エリア　予約ボタン ===============*/
.button_solid007 {
  text-align: center;
  margin-top: 2rem;
}

.button_solid007 p {
  margin-bottom: 5px;
  font-weight: 600;
  color: #e6c98f;
  letter-spacing: 0.04rem;
  display: inline-block;
  position: relative;
}

.button_solid007 p:before, .button_solid007 p:after {
  display: inline-block;
  position: absolute;
  top: 45%;
  width: 20px;
  height: 3px;
  border-radius: 5px;
  background-color: #e6c98f;
  content: "";
}

.button_solid007 p:before {
  left: -30px;
  -webkit-transform: rotate(50deg);
  transform: rotate(50deg);
}

.button_solid007 p:after {
  right: -30px;
  -webkit-transform: rotate(-50deg);
  transform: rotate(-50deg);
}

.button_solid007 a {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 240px;
  padding: 22px 25px;
  color: #443731;
  transition: 0.3s ease-in-out;
  font-weight: 600;
  background: #e6c98f;
  filter: drop-shadow(0px 2px 4px #5b1620);
  border-radius: 3px;
}

.button_solid007 a:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgb(0 0 0 / 15%), 0 0 5px rgb(0 0 0 / 10%);
}

/* セクション */
.section {
  padding: 0 15px;
}

/* リード lead_block */


/* About */
#sec01 h2 {
  color: #37645b;
}

.ticket {
  /* background-image: url(../img/ticket.png);
  background-size: cover;
  background-repeat: no-repeat;
   min-height: 65vh; */
  position: relative;
  margin-bottom: 4rem;
}

.ticket_bk {
  width: 100%;
}

.date {
  background-color: #f2e8de;
  width: 85%;
  margin: 0 auto;
  position: absolute;
  top: 60px;
  right: 0;
  left: 0;
  padding: 10px;
  color: #443731;
  font-weight: 600;
}



@media screen and (max-width: 782px) {
  .date {
    margin-top: 10%;
  }
}


.date dl dt {
  text-align: center;
  background-color: #fff;
  border-radius: 99px;
  width: 150px;
  margin: 1rem auto 0.5rem;
}

.date dl dd {
  font-size: 1.4rem;
  text-align: center;
}

table.recipe_li {
  text-align: start;
  /* width: 230px; */
  margin: 0 auto;
  max-width: 530px;
}


.button001 {
  position: absolute;
  bottom: 4.5%;
  right: 0;
  left: 0;
  margin: 0 auto;
}

.button001 a {
  background: #e6c98f;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 2rem auto 4rem;
  /* max-width: 220px; */
  width: 60%;
  padding: 10px 25px;
  color: #443731;
  transition: 0.3s ease-in-out;
  font-weight: 700;
}

.button001 a:hover {
  background: #9e442a;
  color: #FFF;
}

.button001 a:after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 3px solid #443731;
  border-right: 3px solid #443731;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}

.button001 a:hover:after {
  border-color: #FFF;
}

/* Food Menu */
#sec02 {
  padding-bottom: 2rem;
}

#sec02 h2 {
  color: #37645b;
  margin-bottom: 2rem;
}

.food_menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.f_menu {
  width: 50%;
  /* margin-bottom: 2rem; */
  margin: 0 auto 2rem;
  text-align: center;
}

.f_menu p {
  text-align: center;
}

.f_menu img {
  width: 95%;
}

.button003 a {
  background: #fff;
  border-radius: 50px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 2rem auto 4rem;
  max-width: 260px;
  padding: 10px 25px;
  color: #37645b;
  border: 2px solid #37645b;
  transition: 0.3s ease-in-out;
  font-weight: 700;
}

.button003 a:hover {
  background: #37645b;
  color: #FFF;
}

.button003 a:after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 3px solid #37645b;
  border-right: 3px solid #37645b;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}

.button003 a:hover:after {
  border-color: #FFF;
}

/* Dolce */
.stripe img {
  width: 100%;
}

#sec03 h2 {
  color: #9d202e;
  margin-bottom: 2rem;
}

.button002 a {
  background: #fff;
  border-radius: 50px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 2rem auto 4rem;
  max-width: 260px;
  padding: 10px 25px;
  color: #9d202e;
  border: 2px solid #9d202e;
  transition: 0.3s ease-in-out;
  font-weight: 700;
}

.button002 a:hover {
  background: #9d202e;
  color: #FFF;
}

.button002 a:after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 3px solid #9d202e;
  border-right: 3px solid #9d202e;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}

.button002 a:hover:after {
  border-color: #FFF;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {
  /*横幅94%で左右に余白を持たせて中央寄せ*/
  width: 94%;
  margin: 0 auto;
}

.slider .slick-slide {
  transform: scale(0.8);
  /*左右の画像のサイズを80%に*/
  transition: all .5s;
  /*拡大や透過のアニメーションを0.5秒で行う*/
  opacity: 0.5;
  /*透過50%*/
}

.slider .slick-slide.slick-center {
  transform: scale(1);
  /*中央の画像のサイズだけ等倍に*/
  opacity: 1;
  /*透過なし*/
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute;
  /*絶対配置にする*/
  top: 42%;
  cursor: pointer;
  /*マウスカーソルを指マークに*/
  outline: none;
  /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #666;
  /*矢印の色*/
  border-right: 2px solid #666;
  /*矢印の色*/
  height: 15px;
  width: 15px;
}

.slick-prev {
  /*戻る矢印の位置と形状*/
  left: -1.5%;
  transform: rotate(-135deg);
}

.slick-next {
  /*次へ矢印の位置と形状*/
  right: -1.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px;
  /*ドットボタンのサイズ*/
  height: 8px;
  /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #edb09f;
  /*ドットボタンの色*/
}

.slick-dots .slick-active button {
  background: #9d202e;
  /*ドットボタンの現在地表示の色*/
}


/* ギャラリー右 */
.marquee-right {
  overflow: hidden;
}

.marquee-right ul {
  animation: marquee-right 25s linear infinite;
  /* 20s スクロール1回にかかる秒数 */
  display: flex;
  margin: 0;
  padding: 0;
  width: max-content;
}

.marquee-right ul li {
  list-style: none;
}

.marquee-right img {
  display: block;
  width: 100%;
}

@keyframes marquee-right {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ギャラリー左 */
.marquee-left {
  overflow: hidden;
}

.marquee-left ul {
  animation: marquee-left 25s linear infinite;
  /* 20s スクロール1回にかかる秒数 */
  display: flex;
  margin: 0;
  padding: 0;
  width: max-content;
}

.marquee-left ul li {
  list-style: none;
}

.marquee-left img {
  display: block;
  width: 100%;
}

@keyframes marquee-left {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0%);
  }
}

/* 注釈 */
.noteBlock {
  padding: 0 15px;
  margin: 3rem auto 3rem;
}

/* footer背景 */
.footer_img img {
  width: 100%;
}

/* 背景色サンプル */
#sec01 {
  color: #443731;
}

#sec02 {
  /* background-color: #3cb371; */
  color: #443731;

  background-color: #ffffff;
  background-image: linear-gradient(90deg, #e5dfd280 20px, transparent 20px), linear-gradient(#e5dfd280 20px, transparent 20px);
  background-position: 5px 5px;
  background-size: 40px 40px;
  background-repeat: repeat;
}

#sec03 {
  /* background-color: #f0e68c; */
  color: #443731;
}

#sec04 {
  background-color: #006400;
  color: #443731;
}

/* モバイル対応 */
@media screen and (max-width: 1120px) {
  .center-block {
    flex: 0 0 290px;
  }
}

@media screen and (max-width: 768px) {
  .main__block {
    flex-direction: column;
    height: auto;
  }

  .left-block,
  .right-block {
    display: none;
  }

  .center-block {
    width: 100%;
    margin: 0;
    overflow-y: visible;
  }

}


/*========= ハンバーガーCSS ===============*/
@media screen and (max-width: 768px) {
  #sp-nav {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    bottom: 0;
    left: 0;
    background: #9e442a;
    border-top: 3px ridge #fff;
    z-index: 1500;
    width: 100%;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  #sp-nav.show {
    opacity: 1;
    visibility: visible;
  }

  .sp-nav-box {
    width: 70%;
    margin: 5px 0 5px 28px;
    text-align: center;
  }

  .sp-nav-box p {
    padding: 5px;
    padding-left: 40px;
    color: #fff;
  }

  #g-nav .ja {
    /* font-family: "Noto Serif JP", serif; */
    font-size: 22px;
    padding-left: 45px;
    color: #443731;
  }

  #g-nav .sp-choco {
    background-size: 32px;
  }
}

span.menuS {
  font-size: 16px;
}

.spline-bnr {
  margin: 0 auto;
  width: 320px;
}

.spline-bnr img {
  width: 300px;
}

/*アクティブになったエリア*/
#g-nav.panelactive {
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  height: 100vh;
}

/*丸の拡大*/
.circle-bg {
  position: fixed;
  z-index: 3;
  /*丸の形*/
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #f29796;

  /*丸のスタート位置と形状*/
  transform: scale(0);
  /*scaleをはじめは0に*/
  right: -50px;
  bottom: -50px;
  transition: all .6s;
  /*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive {
  transform: scale(50);
  /*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list {
  display: none;
  /*はじめは表示なし*/
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list {
  display: block;
  /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
  opacity: 0;
  /*はじめは透過0*/
  /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
  position: absolute;
  z-index: 999;
  transform: translate(-50%, -50%);
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
  opacity: 1;
  width: 340px;
  top: 50%;
  left: 50%;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li {
  animation-name: gnaviAnime;
  animation-duration: 1s;
  animation-delay: .2s;
  /*0.2 秒遅らせて出現*/
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
}

#g-nav li a {
  color: #333;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  bottom: 4px;
  right: 11px;
  z-index: 9999;
  /*ボタンを最前面に*/
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 38px;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 10px;
  height: 3px;
  border-radius: 2px;
  background-color: #4c2f3b;
  width: 50%;
}

.openbtn span:nth-of-type(1) {
  top: 12px;
}

.openbtn span:nth-of-type(2) {
  top: 19px;
}

.openbtn span:nth-of-type(3) {
  top: 26px;
}

.openbtn.active span:nth-of-type(1) {
  top: 13px;
  left: 9px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 25px;
  left: 9px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
}

/* topへ戻るボタン */
/* topへ戻るボタン */
.page-top-btn {
  position: sticky;
  /* ←ここを absolute → sticky に変更 */
  bottom: 20px;
  /* center-block 内の下部に固定 */
  margin-left: auto;
  /* 右寄せ */
  margin-right: 10px;

  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

/* 表示時 */
.page-top-btn.is-show {
  opacity: 1;
  pointer-events: auto;
}


/* スマホ TOPボタン */
.sp-top-btn {
  display: none;
  /* PCでは非表示 */
}

@media screen and (max-width: 768px) {

  #sp-nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    /* TOPと予約の間の余白 */
    padding: 6px 10px;
  }

  .sp-top-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    text-decoration: none;
  }

  .sp-nav-box {
    margin: 0;
  }

  .sp-nav-box p {
    padding-left: 10px;
    /* アイコンが無いので左padding減らす */
  }

  .openbtn {
    margin-left: auto;
  }
}

/*  */

/*  */

/* aboutのタブ */
.tab-3 {
  display: flex;
  flex-wrap: wrap;
  max-width: 740px;
  margin-top: 1rem;
}

.tab-3>label {
  flex: 1 1;
  order: -1;
  min-width: 70px;
  padding: .7em 1em .5em;
  background-color: #f2f2f2;
  color: #999;
  font-weight: 600;
  font-size: .9em;
  text-align: center;
  cursor: pointer;
}

.tab-3>label:hover {
  opacity: .8;
}

.tab-3 input {
  display: none;
}

.tab-3>div {
  display: none;
  width: 100%;
}

.tab-3 label:has(:checked) {
  border-bottom: 4px solid #37645b;
  color: #37645b;
}

.tab-3 label:has(:checked)+div {
  display: block;
}

.ticket img {
  filter: drop-shadow(4px 4px 4px #aaa);
}

/* ディナータブ */
.box-013 {
  max-width: 440px;
  margin: 1rem auto;
  border: 2px solid #4e7d74;
  border-radius: 3px;
}

.box-013 span {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .0.5em 0;
  background-color: #4e7d74;
  color: #fff;
  font-weight: 600;
}

.box-013 p {
  margin: 0;
  padding: 0.5em 1.5em;
  color: #333;
}