@charset "utf-8";
/* ================== 
comon
====================*/
:root {
    --white: #FFF;
    --italygreen:#009246;
    --creamcolor:#FDF7F1;
    --red:#CE2B37;
    --black:#333333;
    --contentWidth: 91.4%;
}

html {
    font-size: 62.5%;
}

body {
    font-family:
        'noto sans cjk jp',
        'noto sans jp',
        'Fira Sans',
        sans-serif;
    font-style: normal;
    font-weight: 400;
    color: var(--black, #333333);
    background-color: var(--white, #FFF);
    line-height: 1.5;
    margin: 0;
}

* {
    margin: 0;
    padding: 0;
  }

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
  }

  @media screen and (max-width: 768px) {
    .forPC{display: none!important;}
  }
  @media screen and (min-width:769px) {
    .forSP{display: none!important;}
}

.btndiv {
    text-align: center;
} 

/* common PC */

/* @media screen and (min-width:769px) {
    .btndiv {
        margin-left: 155px;
    }
} */



  /* ====================
header
======================= */
.header {
    background-color: var(--white);
    /* padding: 0 0 0 4.2%; */
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    max-width: 76px;
    height: 76px;
}

.header__topic a,
.nav__topic a {
    display: flex;
    align-items: center;
}

.header__topic span,
.nav__topic span {
    font-size: 0.8rem;
    letter-spacing: 1.6px;
    margin: 0 17px 0 18px;
}

.nav {
    background:var(--creamcolor);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.nav__header {
    display: flex;
    justify-content: space-between;
}

.nav__logo {
    width: 76px;
    height: 76px;
}

.nav__btn {
    /* display: block; */
    width: 84px;
    height: 78px;
}

.nav__list {
   margin: 0 auto;
}

.contactaddress {
    margin-top: 30px;
   margin-bottom: 30px;
   padding: 0 calc((100% - 186px)/2);
}


.instawaku__nav {
    width: 196px;
    height: 53px;
    display: flex;
    align-items: center;
    /* padding: 16px 22px; */
    margin-top: 20px;
}

.header__instalogo {
    width: 30px; 
    height: 30px;
}

.instagram__click__f {
    color: var(--black);
    font-family: "Fira Sans";
    font-size: 2.3rem;
    font-style: italic;
    font-weight: 600;
    line-height: 2.1;
    margin-left: 20px;
}

.phone__txt__f {
    font-family: "Fira Sans";
    font-size: 2.3rem;
    font-style: italic;
    font-weight: 600;
    line-height: 2.1;
    white-space: nowrap;
}

.header__phone__logo {
    width: 30px;
    height: 30px;
}


.nav__item {
    color: var(--black);
    font-family: "Fira Sans";
    text-align: center;
    font-size: 2.4rem;
    font-style: italic;
    font-weight: 600;
    line-height: 2.1;
    margin-top: 11px;
}

.header__btn {
    display: block;
    width: 84px;
    height: 84px;
    position: fixed;
    top: 0%;
    right: -13px;
}

.nav.active {
    transform: translateX(0);
} 


/* header pc */
@media screen and (min-width:769px) {
    .header {
        width: auto;
        height: 104px;
        /* margin: 0 auto; */
    }


    .header__topic {
        width: 104px;
        height: auto;
        margin-left: 17px;

    }

    .nav {
        background-color: var(--white);
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translateX(0);
        display: flex;
        flex: 1;
    }


    .nav__btn {
        display: none;
    }

    .header__btn {
        display: none;
    }

    /* .nav__header {
        display: none;
    } */

    .nav__logo {
        display: none;
    }
 

    .nav__list {
        display: flex;
        align-items: center;
        gap: 63px;
        margin: 0 auto;
        list-style: none;
    }

    .nav__item {
        text-align: center;
        font-size: 1.7rem;
        font-style: italic;
        font-weight: 600;
        line-height: 2.5;
        letter-spacing: 0.51px;
        /* border-bottom: #ff0000 solid; */
    }

    .nav__item:hover {
         border-bottom:var(--red) solid;
    }
    
    /* .nav__item:nth-child(even){
        /* border-bottom: var(--italygreen) solid; */
    

    .nav__item:nth-child(even):hover {
         border-bottom: green solid;
    }

    .contactaddress {
        margin-left: 0;
        margin-bottom: 0;
        margin-top: 0;
        padding: 0;
        width: 186px;
    }

    
    .t {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .instawaku__nav {
        margin-top: 0;
    }

    .header__instalogo {
        width: 20px; 
        height: 20px;
        /* margin-left: 30px;
    } */}


    /* .instagram__img {
        min-width: 49px;
    } */

    .instagram__click__f {
        font-size: 1.8rem;
        font-style: italic;
        font-weight: 600;
        line-height: 1.75;
        letter-spacing: 0.48px;
        margin-left: 0;
    }

    .header__phone__logo{
        width: 20px;
        height: 20px;
    }

    .phone__txt__f {
        font-size: 1.8rem;
        font-style: italic;
        font-weight: 600;
        line-height: 1.75;
        letter-spacing: 0.64px;
        margin-left: 15px;
    }
}

/* chatGPTによるCSS
* ================== 
セクション全体
====================*/
.select {
  background-color:var(--creamcolor);
  padding: 60px 7.4vw;
  text-align: center;
}

/* ===== 見出し（FOOD） ===== */
.kasoutitle {
  font-family: 'Fira Sans', sans-serif;
  font-size: 24px;
  font-weight: 600;
  font-style: italic;
  color:var(--black);
  margin-bottom: 32px;
  line-height: 48px;
  letter-spacing: 1.20px;
}

/* ===== カテゴリーボタン ===== */
.food__category {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid var(--black);
}

.select__pizza,
.select__dolce,
.select__other {
  display: inline-block;
  padding: 3px 28px;
  border-radius: 10px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 26.04px;
  letter-spacing: 0.28px;
  font-style: italic;
  font-family: 'Fira Sans', sans-serif;
  color: #fff;
}

/* ボタンの個別カラー設定 */


.select__pizza {
  background-color:var(--italygreen); /* PIZZA: 緑 */
}

.select__pizza:hover {
  background-color: var(--italygreen);
  color: var(--white);
  opacity: 0.8;
}

.select__dolce {
  background-color: #C4C4C4; /* DOLCE: グレー */
}

.select__dolce:hover {
  background-color:#C4C4C4; ;
  color: var(--black);
  opacity: 0.8;
}

.select__other {
  background-color: var(--red); /* OTHERS: 赤 */
}

.select__other:hover {
   background-color:var(--red);
  color: var(--white);
  opacity: 0.8;
}

.select__pizza:hover {
  filter: brightness(0.9);
}

/* ===== PDFリンク ===== */
.pdf {
  margin-bottom: 30px;
}

.pdfbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 2px solid #333;
  border-radius: 42px;
  padding: 12px 71px;
  font-size: 1.4rem;
  font-family: 'Fira Sans', sans-serif;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
  position: relative;
}

.pdfbtn:hover {
  background-color: var(--red);
  border: 2px solid var(--white);
  color: #fff;
}



.pdfbtn img {
  vertical-align: middle;
}

.pdfbtn img:first-child {
  margin-right: 17px;
  width: 16px;
  height: 16px;
}

.pdfbtn img:last-child {
  margin-left: 8px;
  width: 12px;
  height: 12px;
}

.arrow {
  position: absolute;
  right: 18px;
}

/* ===== 注意書きテキスト ===== */
.setumei {
  font-size: 1.4rem;
  color:var(--black);
  line-height: 26.18px;
  margin-top: 20px;
  letter-spacing: 0.28px;

}

/* ==================  */
 /* フードセクション全体 */
/* ================== */
/* PCver */
@media screen and (min-width:769px) {
  .spbr {
    display: none;
  }


  .select {
    padding: 85px 16.6vw;
  }

  .kasoutitle {
    font-size: 4rem;
    font-weight: 700;
    line-height: 80px;
    letter-spacing: 2.80px;
  }

  .food__category {
    gap: 18px;
    width: 490px;
    margin: 0 auto;
  }

  .select__pizza,
  .select__dolce,
  .select__other {
  padding: 3px 48px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 33.48px;
  letter-spacing: 0.90px;
  border-radius: 24px;
 }

  .pdfbtn {
    font-size: 1.6rem;
  }

  .pdf {
    margin-top: 30px;
  }

  .setumei {
    font-size: 1.7rem;
    line-height: 31.79px;
    letter-spacing: 0.34px;
    margin-top: 15px;
  }
}

/* ==================  */
 /* ピザコーナー  */
/* ================== */
.menu__pizza {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 60px 7.4vw;
}

.pc__pizza {
  display: none;
}

.pizza__ribon {
  width: 209px;
  /* height: 32px; */
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.pizza__icon {
    display: none;
}

.pizza__corner {
  max-width: 960px;
  margin: 0 auto;
}

/* リボン画像 */
.ribon {
  position: relative;
  text-align: center;
}

/* .pizza__ribon {
  display: inline-block;
  height: auto;
  max-width: 100%;
} */

/* .pizza__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
  width: 36px;
  height: 36px;
} */

/* フレーバー選択ボタン */
.flavor__select {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;  
}

.secondlink__recommend,
.secondlink__tomato,
.secondlink__chese{
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
  padding-left: 24px; 
  line-height: 26.04px;
  letter-spacing: 0.28px;
  font-family: Fira Sans;
  font-style: italic;
  text-decoration: none;
  color: inherit;
}

.secondlink__recommend a::before,
.secondlink__recommend a::after,
.secondlink__tomato a::before,
.secondlink__tomato a::after,
.secondlink__chese a::before,
.secondlink__chese a::after{
  position: absolute;
  content: '';
}

.secondlink__recommend a::before {
  top: .35em;
  left: 0em;
  width: 14px;
  height: 14px;
  background-color:var(--italygreen);
  border-radius: 100%;
}

.secondlink__recommend a::after {
    top: 0.6em;
    left: 0.3em;
    width: 5px;
    height: 5px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(45deg);
}

.secondlink__tomato a::before {
  top: .35em;
  left: 0em;
  width: 14px;
  height: 14px;
  background-color: var(--red);
  border-radius: 100%;
}

.secondlink__tomato a::after {
    top: 0.6em;
    left: 0.3em;
    width: 5px;
    height: 5px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(45deg);
}

.secondlink__chese a::before {
  top: .35em;
  left: 0em;
  width: 14px;
  height: 14px;
  background-color: #009246;
  border-radius: 100%;
}

.secondlink__chese a::after {
    top: 0.6em;
    left: 0.3em;
    width: 5px;
    height: 5px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(45deg);
}

.flavor__recommend::before {
  background-color:var(--italygreen);
}

.flavor__tomato::before {
  background-color: var(--red);
}

.flavor__cheese::before {
  background-color: #C4C4C4;
}

.secondlink a:hover {
  opacity: 0.85;
}

/* 各セクション見出し */
.foodmenu__title {
    background-image: url(../image-food/sp_recomend.svg);
    background-repeat: no-repeat;
    background-size: 12rem;
    padding-bottom: 1rem;
    text-indent: 100%;
    overflow: hidden;
    height: 4.5rem;
    margin: 4rem 0 2rem 0;
}

.foodmenu__title__tomato {
  background-image: url(../image-food/sp__tomato.svg);
  background-repeat: no-repeat;
  background-size: 12rem;
  padding-bottom: 1rem;
  text-indent: 100%;
  overflow: hidden;
  height: 4.5rem;
  margin: 5.4rem 0 5.4rem 0;
}

.foodmenu__title__cheese {
  background-image: url(../image-food/sp__cheese.svg);
  background-repeat: no-repeat;
  background-size: 12rem;
  padding-bottom: 1rem;
  text-indent: 100%;
  overflow: hidden;
  height: 4.5rem;
  margin: 5.4rem 0 5.4rem 0;
}

.list__recommend {
  display: flex;
  flex-direction: column;
  gap: 54px;
}

.list__tomato {
  display: flex;
  flex-direction: column;
  gap: 54px;
}

.list__cheese {
  display: flex;
  flex-direction: column;
  gap: 54px;
}



.food__sample {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  gap: 30px;
}

.food__sample__down {
  display: flex;
  flex-direction: column;
  gap: 54px;
}

.menu__img {
  width: 257px;
  height: 257px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.caption {
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* gap: 8px; */
}

.caption__title {
    font-size: 2.2rem;
    font-family: Fira Sans;
    font-style: italic;
    font-weight: 500;
    line-height: 40.92px;
    letter-spacing: 0.44px;
    word-wrap: break-word
}

.midashi {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-weight: 600;
  font-size: 16px;
}

.price {
  font-size: 1.8rem;
  color: var(--black);
  /* font-family: Noto Sans CJK JP; */
  font-weight: 500;
  line-height: 37.80px;
}

.product__name {
 font-size: 1.4rem;
 /* font-family: Noto Sans CJK JP; */
 font-weight: 500;
 line-height: 26.32px;
}

.main__taxt {
 font-size: 1.4rem;
 /* font-family: Noto Sans CJK JP; */
 line-height: 26.32px;
 /* margin-top: 16px; */
 /* margin-bottom: 16px; */
 padding: 16px 0;
}
/* 写真なしメニュー */
/* --- 親リスト（全体） --- */
ul.noimg {
  list-style: none;
  padding-top: 30px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 320px;
}

.bf {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* --- 各ピザアイテムの枠 --- */
li.pizza__txt__sample {
  border-bottom: 1px solid var(--black);
  /* padding-top: 16px ; */
}

/* --- タイトル・値段・日本語名のブロック --- */
.litle__caption {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}

/* --- 英語タイトル（左） --- */
.mini__title {
  font-size: 1.6rem;
  font-family: Fira Sans;
  font-style: italic;
  font-weight: 500;
  line-height: 26.04px;
  letter-spacing: 0.28px;
}

/* --- 値段（右） ---
.price {
  font-size: 14px;
  font-weight: bold;
  margin: 0;
} */

/* --- 日本語商品名（下） --- */
.mini__product__name {
  width: 100%;
  font-size: 1.4rem;
  margin: 6px 0 0;
  font-weight: 600;
}

/* ==================  */
 /* ピザコーナー  */
/* ================== */
/* PC VER */
  @media screen and (min-width:769px) {
    .menu__pizza {
      padding: 85px 2.6vw;
      gap: 70px;
    }

    .pc__pizza {
      display: block;
      font-size: 3rem;
      font-family: Fira Sans;
      font-style: italic;
      font-weight: 500;
      letter-spacing: 1.80px;
      width: 224px;
      padding: 5px 45px;
      background-color: var(--italygreen);
      color: var(--white);
      border-radius: 5px;
      position: relative;
      margin: 0 auto;
      text-align: center;
    }

    .pizza__icon {
      display: block;
      position: absolute;
      top: 50%;
      left: 82%;
      transform: translate(-45%,-54%);
      width: 50px;
      height: 35px;
    }

    .ribon {
      display: none;
    }


    .flavor__select {
      gap: 50px;
    }


    .secondlink__recommend,
    .secondlink__tomato,
    .secondlink__chese{
      position: relative;
      display: inline-block;
      font-size: 2rem;
      padding-left: 24px; 
      line-height: 37.20px;
      letter-spacing: 0.4px;
    }

    .secondlink__recommend a::before {
      top: 0.55em;
      left: 0em;
      width: 18px;
      height: 18px;
    }
    
    .secondlink__recommend a::after {
      top: 0.8em;
      left: 0.3em;
    }

    .secondlink__tomato a::before{
      top: 0.55em;
      left: 0em;
      width: 18px;
      height: 18px;
    }

    .secondlink__tomato a::after{
      top: 0.8em;
      left: 0.3em;
    }

    .secondlink__chese a::before {
      top: 0.55em;
      left: 0em;
      width: 18px;
      height: 18px;
    }

    .secondlink__chese a::after {
      top: 0.8em;
      left: 0.3em;
    }

    .foodmenu__title {
      background-size: 16rem;
      margin: 85px 30px ;
    }

    .foodmenu__title__tomato {
      background-size: 14rem;
      margin-left: 21px ;
      margin-bottom: 30px;
      padding-bottom: 6em;
    }

    .foodmenu__title__cheese {
      background-size: 14rem;
      margin-bottom: 30px;
      padding-bottom: 6em;
       margin-left: 21px ;
    }

    .list__recommend {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      gap: 70px;
    }

     /* 最初のアイテム（上段）のスタイル */
    .list__recommend li:first-child {
      width: 336px;
      align-items: center; 
      gap: 30px; 
    }


    .list__recommend li:nth-child(n+2) {
      /* width: calc(50% - 10px); 50%からgapの半分（20px/2 = 10px）を引く */
      /* width: 336px; */
      flex-direction: row; /* 画像とテキストを縦並びにする */
    }

    .list__recommend li:first-child .menu__img {
      width: 300px; /* 画像の幅を調整 */
      height: auto;
      margin-bottom: 0; /* 下余白をリセット */
  }

    .list__recommend li:nth-child(n+2) .menu__img {
      width: 300px; /* 画像の幅を調整 */
      height: auto;
      margin-bottom: 0; /* 下余白をリセット */
  }


  .caption  {
    max-width: 336px;
  }

  .product__name {
    font-size: 1.8rem;
    line-height: 33.66px;
    letter-spacing: 0.36px;
  }

  .main__taxt {
    font-size: 1.6rem;
    line-height: 30.08px;
  }

  .food__sample__down {
    display: flex;
    gap: 170px;
    flex-direction: row;
  }

  .midashi {
    align-items: center;
  }

  /* トマトコーナー */
  .tomato {
    display: flex;
    flex-direction: column;
    gap: 70px;
  }

  .list__tomato {
    display: flex;
    justify-content: center;
    gap: 170px;
    flex-direction: row;
  }

  /* ロマーナの箱 */
  .list__tomato li {
    width: 336px;
    align-items: center; 
    gap: 30px; 
  }

  .list__tomato .menu__img {
    width: 300px; /* 画像の幅を調整 */
    height: auto;
    margin-bottom: 0; /* 下余白をリセット */
  }

  /* sp版の下線を削除 */
  li.pizza__txt__sample {
    border-bottom: none;
  }

  .mini__title {
    font-size: 2.2rem;
    line-height: 40.92px;
    letter-spacing: 1px;
  }

  .mini__product__name {
    font-size: 1.5rem;
    font-weight: 350;
    line-height: 33.66px;
    letter-spacing: 0.36px;
    border-bottom: 1px solid var(--black);
  }


  /* 写真のないトマトピザ */
  .noimg {
    background-color: rgba(230, 227, 227, 0.3);
    display: block;
    max-width: 869px;
    border: 1px solid #C4C4C4;
  }

  ul.noimg {
    padding-top: 0;
    gap: 0px;
    max-width: 869px;
  }

 

  .bf {
    display: flex; /* Flexboxで横並びに */
    flex-direction: row;
    padding: 30px 3.9vw 20px;
    gap: 71px;
  }

  .pizza__txt__sample {
     width: 48%; 
      margin-bottom: 0; 
  }

  .bfm {
    padding:0 3.9vw 30px; 
  }


  /* チーズコーナー */
  
  .list__cheese {
    display: flex;
    justify-content: center;
    gap: 170px;
    flex-direction: row;
  }
  
  .list__cheese li {
    width: 336px;
    align-items: center; 
    gap: 30px; 
  }

  .list__cheese .menu__img {
    width: 300px; /* 画像の幅を調整 */
    height: auto;
    margin-bottom: 0; /* 下余白をリセット */
  }

  .cheese .noimg {
    display: flex;
    flex-direction: row;
    padding: 30px 3.9vw;
    gap: 94px;
    margin-top: 70px;
  }





}


/* ==================  */
 /* ドルチェコーナー  */
/* ================== */
/* DOLCE全体 */
.menu__dolce {
  /* max-width: 320px; */
  /* margin: 0 auto 80px; */
  padding: 60px 7.4vw;
  background-color: var(--creamcolor);
}

.pc__dolce {
  display: none;
}

.dolce__ribon {
  width: 209px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.dolce__icon {
    width: 50px; 
    height: auto;
    display: none;
}

.list__dolce {
    margin-top: 54px;
}

/* ティラミスのレイアウト */
.list__dolce .pizza__sample {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  /* padding-bottom: 54px; */
}

.menu__img img.food__img {
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
}



.caption__title__jp {
  font-size: 2rem;
  font-weight: 500;
  /* font-family: Noto Sans CJK JP; */
  line-height: 42px;
}


/* 画像なしメニューリスト */
.noimg {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}

.noimg__dc__ot {
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 320px;
  justify-content: space-between;
  margin-top: 30px;
  /* padding: 8px 0; */
}

.litle__caption__dc__ot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--black);
  padding-bottom: 16px;
}

.litle__caption__dc__ot__dark {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--black);
  padding-bottom: 16px;
}



/* ==================  */
 /* ドルチェコーナー  */
/* ================== */
/* PC VER */
  @media screen and (min-width:769px) {
    .menu__dolce {
      padding: 85px 16.6vw;
      margin: 0;
    }

    .pc__dolce {
      display: block;
      font-size: 3rem;
      font-family: Fira Sans;
      font-style: italic;
      font-weight: 500;
      letter-spacing: 1.80px;
      width: 240px;
      padding: 5px 45px;
      background-color:#C4C4C4;
      color: var(--white);
      position: relative;
      border-radius: 5px;
      margin: 0 auto;
      text-align: center;
    }

    .dolce__icon {
      display: block;
      height: auto;
      position: absolute;
      top: 51%;
      left: 83%;
      transform: translate(-45%, -54%);
      width: 36px;
    }

    .list__dolce {
      margin-top: 70px;
    }

    .list__dolce li {
      width: 336px;
      align-items: center;
      gap: 30px;
    }

    .list__dolce .pizza__sample {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .list__dolce .menu__img {
    width: 300px; /* 画像の幅を調整 */
    height: auto;
    margin-bottom: 0; /* 下余白をリセット */
  }

  .caption__title__jp {
    font-size: 2.2rem;
    line-height: 46.20px;
  }

  .a {
    display: flex;
    gap:121px;
    align-items: center;
    justify-content: center;
  }

  /* ドルチェ写真なしメニュー */
  .noimg__dc__ot {
    justify-content: center;
    gap: 30px;
    padding: 30px 3.9vw;
    background-color: rgba(230, 227, 227, 0.3);
    max-width: 403px;
    height: auto;
    margin: 0;
    border: 1px solid #C4C4C4;
  }

  .litle__caption__dc__ot__dark {
    gap: 50px;
  }

  .others__list .litle__caption__dc__ot {
    width: 0px;
  }



}

/* ==================  */
 /* アザーズコーナー  */
/* ================== */
.menu__others {
  margin: 0 auto;
  padding: 60px 7.4vw;
}

.pc__others {
  display: none;
}

.others__ribon {
  width: 209px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  margin-bottom: 54px;
}


.others__icon {
    width: 50px; 
    height: auto;
    display: none;
}

.others__list {
  display: flex;
  flex-direction: column;
  gap: 54px;
  margin-bottom: 54px;
}

.ppp {
  display: flex;
  flex-direction: column;
  gap: 15px;
}


.litle__caption__dc__ot__salad {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--black);
  padding-bottom: 16px;
}

.litle__caption__dc__ot__cheese {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--black);
  padding-bottom: 16px;
}

.uuu {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mini__title__jp {
    font-size: 1.6rem;
    /* font-family: Noto Sans CJK JP; */
    font-weight: 500;
    line-height: 29.76px;
    letter-spacing: 0.32px;
}

/* ==================  */
 /* アザーズコーナー  */
/* ================== */
/* PC VER */
  @media screen and (min-width:769px) {
    .pc__others {
      display: block;
      font-size: 3rem;
      font-family: Fira Sans;
      font-style: italic;
      font-weight: 500;
      letter-spacing: 1.80px;
      width: 244px;
      padding: 5px 45px;
      background-color:var(--red);
      color: var(--white);
      position: relative;
      margin: 0 auto;
      border-radius: 5px;
      /* text-align: center; */
    }

    .menu__others {
      padding: 85px 16.6vw;
    }


    .others__icon {
      display: block;
      position: absolute;
      top: 50%;
      left: 91%;
      transform: translate(-84%, -54%);
      width: 50px;
      height: 33px;
    }

    .others__list {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      gap: 70px;
    }

    /* 気まぐれメニューの箱 */
    .others__list li:first-child {
      width: 336px;
      align-items: center;
      gap: 30px;
    }

    /* 気まぐれメニューの写真大きさ */

    .others__list li:first-child .menu__img{
      width: 300px;
      height: auto;
      margin-bottom: 0;
    }

    /* クロスティーニと前菜の箱 */
    .others__list li:nth-child(n+2) {
      /* width: 336px; */
      align-items: center;
      /* gap: 30px; */
    }

    /* クロスティーニと写真の大きさ */
    .others__list li:nth-child(n+2) .menu__img {
      width: 300px;
      height: auto;
      margin-bottom: 0;
    }

    .lap {
      display: flex;
      flex-direction: column;
      gap: 70px;
      margin-top: 70px;
    }

    .lap .noimg__dc__ot {
      max-width: 869px;
      align-items: start;
      margin: 0 auto;

    }
    .ppp {
      display: flex;
      flex-direction: row;
      gap: 112px;
      margin: 0 auto;
    }

    .uuu {
      display: flex;
      flex-direction: row;
      gap: 112px;
      margin: 0 auto;
    }

    /* PCサラダの箱を牛すじと揃える */
    .litle__caption__dc__ot__salad {
      width: 274px;
    }

    .litle__caption__dc__ot__cheese {
      width: 355px;
    }

    .lap .litle__caption__dc__ot {
     gap: 65px;
    }

  }



/* ==================  */
 /* ドリンクボタンセクション */
/* ================== */
.drinkpagehe {
    background-color: var(--creamcolor);
    padding: 60px 7.4vw;
    text-align: center;
}

.drink__btn {
    display: inline-block;
    width: 230px;
    height: 56px;
    border-radius: 50px;
    background:var(--red);
    padding: 11px 94px;
    color: var(--white);
    text-align: center;
    font-family:"Fira Sans";
    font-size: 1.6rem;
    font-style: italic;
    font-weight: 600;
    line-height: 2.1;
    position: relative;
    transition: 0.4s;
    /* margin-top: 20px; */
    letter-spacing: 0.8px;
}

.drink__btn:hover {
  background-color: var(--red);
  color: var(--white);
  opacity: 0.8;
}

/* * ==================  */ 
 /* ドリンク誘導セクション*/
/* ================== */
/* PCVER */
@media screen and (min-width:769px) {
  .drinkpagehe {
    padding: 85px 16.6vw;
  }

  .drink__btn {
    margin-top: 0;
    padding: 9px 94px;
    font-size: 1.8rem;
  }

}


/* ==================  */
 /* フッター*/
/* ================== */
.footer {
    padding: 40px 0;
    background-color: var(--creamcolor);
    text-align: center;
}

.footer__group {
    text-align: center;
}

.footer__logo {
    max-width: 135px;
    height: 135px;
}

.menu__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu__item {
    color: var(--black);
    text-align: center;
    font-family: "Fira Sans";
    font-size: 2.4rem;
    font-style: italic;
    font-weight: 600;
    line-height: 2.1;
}

.contactaddress__last {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 0 calc((100% - 186px)/2);
}

.instawaku__footer {
    width: 196px;
    height: 53px;
    display: flex;
    align-items: center;
    margin-top: 20px;
    margin-left: -15px;
}

.instagram {
    display: flex;
    align-items: center;
}

.instagram__img {
    min-width: 60px;
    margin: 0;
}

.instagram a {
    display: block;
    text-align: left;
    flex: 1;
}

.instagram__logo {
    width: 30px;
    height: 30px;
}

.instagram__txt {
    width: 100%;
    text-align: left;
    color: var(--black);
    font-family: "Fira Sans";
    font-size: 2.3rem;
    font-style: italic;
    font-weight: 600;
    line-height: 2.1;
}

.phone {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.phone__img a {
    display: block;
    width: 60px;
    text-align: left;
}

.phone__logo {
    width: 30px;
    height: 30px;
}

.phone__txt {
    color: var(--black);
    font-family: "Fira Sans";
    font-size: 2.3rem;
    font-style: italic;
    font-weight: 600;
    line-height: 2.1;
     white-space: nowrap;
}

.copy {
    text-align: center;
    font-size: 1.4rem;
    line-height: 2;
    margin-top: 29px;
}

.copy__small {
    font-size: 80%;
}




@media screen and (min-width:769px) {
    .footer {
        padding: 0;
    }

    .footer__group {
        display: flex;
        justify-content: space-around;
    }


    .top__footerbox {
        display: flex;
    }

    .footer__topic {
        padding: 17px;
    }

    .footer__logo {
        max-width: 104px;
        height: 104px;
    }

    .menu {
        display: flex;
        align-items: center;
    }

    .menu__list {
        display: flex;
        flex-direction: row;
        gap: 76px;
    }

    .menu__item {
        text-align: center;
        font-size: 1.7rem;
        font-style: italic;
        font-weight: 600;
        line-height: 1.75;
        letter-spacing: 0.51px;
        border-bottom: #ff0000 solid;
    }

    .menu__item:nth-child(even){
        border-bottom: green solid;
    }
    

    .contactaddress__last {
        margin-top: 0;
        margin-bottom: 30px;
        padding-right: 50px;
        width: 292px;
    }

    .instawaku__footer {
        width: 0;
    }

    .instagram__logo {
        width: 20px;
        height: 20px;
    }

    .phone {
        margin-top: 6px;
    }

    .phone__logo {
        width: 20px;
        height: 20px;
    }

    .phone__img {
        margin-right: -23px;
    }

    .phone__txt {
        font-size: 1.8rem;
        font-style: italic;
        font-weight: 600;
        line-height: 1.75;
        letter-spacing: 0.6px;
        width: auto;
    }

     .contactaddress__last,
      .copylight {
      text-align: center;   /* 中央寄せにしたい場合 */
    }

    .contactaddress__last {
       margin-bottom: 15px;  /* インスタ・電話とコピーライトの間に余白 */
    }

}



/* ===========================
   tablet 769px〜1297px 共通
=========================== */
@media screen and (min-width: 769px) and (max-width: 1297px) {
   .header__logo {
        /* max-width: 100px; */
        height: auto;
    }

    .header__logo {
    height: 60px;            /* ロゴを大きく */
  }

  .header__list {
    gap: 24px;               /* ナビの間隔調整 */
  }

  .header__list a {
    font-size: 16px;         /* フォントサイズ調整 */
  }

    .nav {
      display: flex;
      justify-content: center;
      gap: 24px;
      background: transparent;
    }

    .nav__list {
        display: flex;
        /* flex-wrap: wrap;  */
        gap: 18px;
        margin: 0 auto;
        padding: 0;
        list-style: none;
        justify-content: center;
        padding-top: 13px;
    }

    .nav__item {
        font-size: 1.5rem;
        margin-top: 0;
    }

    /* .header__btn {
        left: 90%;
    } */

    .contactaddress {
        max-width: 90%;          /* 横幅を少し広めに */
        /* margin: 0 auto;  */
        display: flex;           /* 横並びにしたい場合 */
        flex-wrap: wrap;         /* はみ出したら折り返し */
        justify-content: center; /* 中央配置 */
        /* gap: 24px;  */
        font-size: 16px; 
    }

    .instawaku__nav {
        display: flex;             /* 横並びに */
        justify-content: center;   /* 中央寄せ */
        gap: 20px;              
        /* margin-top: 20px; */
        flex-wrap: wrap;           /* 幅が狭くなったら折り返す */
    } 

    .header .instagram__img {
        min-width: 0;
    }

  .phone {
      display: flex;
      /* justify-content: center; */
      /* gap: 20px; */
      flex-wrap: wrap;
  }
    
    .instagram__click__f {
        font-size: 1.5rem;
    }

    .header__btn {
        display: none;
    }


  /* ===== main__pizza===== */
  .pizza__corner {
    margin: 0 auto;
  }

  .food__sample__down {
    gap:54px ;
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
  }

  .list__tomato{
    gap: 54px;
  }


  .list__cheese {
    gap: 54px;
  }


/* ===== main__dolce===== */

  .noimg__dc__ot {
    display: flex;          
    flex-wrap: wrap;        
    justify-content: center;
    gap: 20px;
    margin: 0 auto; 
    padding: 30px 2.9vw;
  }

  .lap .noimg__dc__ot {
    max-width: 745px;
  }


  /* 各商品リスト */
  .noimg__dc__ot li {
    text-align: left;        /* 左寄せでも中央でも */
    margin-bottom: 15px;     /* 下余白 */
  }

  /* 商品名と価格 */
  .noimg__dc__ot li .mini__title__jp {
    font-size: 1.6rem;       /* フォントサイズ調整 */
  }
  .noimg__dc__ot li .price {
    font-size: 1.4rem;
  }


  /* ===== main__others===== */

    .menu__others {
    padding: 2.6vw;
  }  



  .ppp {
    max-width:745px;
    gap: 54px;
  }

  .uuu {
    gap: 45px;
  }


  






     
 /* ===== footer ===== */
    .footer {
        /* display: flex; */
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        padding: 0 30px;
        flex-wrap: wrap;
        /* padding: 40px 7.4vw; */
        background-color: var(--creamcolor);
        text-align: center;
  }



  .footer__group {
        display: flex;
        /* gap: 20px; */
        justify-content:center;
        flex-wrap: wrap;

  }

  .footer__logo {
    width: 150px;
    height: auto;
  }
  
    .menu__list {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        list-style: none;
        padding: 0;
        justify-content:space-around;

    }

    .footerflex {
        align-items: flex-start;       /* 上揃え */
        gap: 20px;                     /* 要素間の隙間 */
    }

    .contactaddress__last {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .instawaku__footer,
    .phone__footer {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 1.5rem;
    }

    .footer__instalogo,
    .footer__phone__logo {
        width: 18px;
        height: 18px;
    }

    .instagram__click__f,
    .phone__txt__f {
        font-size: 1.5rem;
        margin-left: 0;
    }

    .footer .instagram__click__f {
        font-size: 1.8rem;
    }

    .footer__copy {
        font-size: 1.4rem;
        text-align: right;
        width: 100%;
        margin-top: 10px;
    }
}













   
