/* =====================================================
お食事・テイクアウトページ
===================================================== */

.food-page{
  background:#fff;
  color:#222;
  /* margin:109px 0 0; */
}


/* =====================================================
アンカー
===================================================== */

.food-anchor{
  padding:24px 20px 40px;
  background:#fff;
}

.food-anchor__inner{
  max-width:1120px;
  margin:0 auto;
  padding-top:20px;
}

.food-anchor__list{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:12px;
  margin:0;
  padding:0;
  list-style:none;
}

.food-anchor__list a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  width:100%;
  padding:11px 20px;
  border-radius:999px;
  border:1px solid #cfe0e6;
  background:#fff;
  color:#355866;
  font-size:1.2rem;
  line-height:1.4;
  font-weight:700;
  text-decoration:none;
  transition:background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.food-anchor__list a:hover{
  background:#0f536d;
  border-color:#0f536d;
  color:#fff;
}


/* =====================================================
セクション
===================================================== */

.food-section{
  padding:76px 20px;
}

.food-section--alt{
  background:#f3f7f8;
}

.food-section__inner{
  max-width:1120px;
  margin:0 auto;
}

.food-section__heading{
  max-width:760px;
  margin:0 auto 38px;
  text-align:center;
}

.food-section__sub{
  margin:0 0 10px;
  font-size:1.1rem;
  line-height:1.6;
  letter-spacing:0.18em;
  font-weight:700;
  color:#7aa8b7;
}

.food-section__title{
  margin:0 0 14px;
  font-size:2.8rem;
  line-height:1.4;
  font-weight:700;
}

.food-section__lead{
  margin:0;
  font-size:1.4rem;
  line-height:2;
  color:#555;
}


/* =====================================================
商品グリッド
===================================================== */

.food-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:22px;
  margin-top:22px;
}

.food-card{
  display:flex;
  flex-direction:column;
  background:#fff;
  border:1px solid #e0eaee;
  border-radius: 6px;
  overflow:hidden;
  height:100%;
  transition:transform 0.3s ease, box-shadow 0.3s ease;
}



.food-card__image{
  aspect-ratio:4 / 3;
  overflow:hidden;
  background:#f4f8fa;
}

.food-card__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.food-card__body{
  display:flex;
  flex-direction:column;
  flex:1;
  padding:20px 18px 22px;
}

.food-card__title{
  margin:0 0 8px;
  font-size:1.9rem;
  line-height:1.5;
  font-weight:700;
  color:#222;
}

.food-card__price{
  margin:0 0 12px;
  font-size:1.7rem;
  line-height:1.5;
  font-weight:800;
  color:#1e5d75;
}

.food-card__text{
  margin:0;
  font-size:1.4rem;
  line-height:1.9;
  color:#555;
}


/* ========================================
テイクアウト説明
======================================== */

.takeout-lead{
  display:flex;
  gap:22px;
  align-items:center;
  /* background:#fff; */
  border-radius:14px;
  padding:26px 28px;
  margin-bottom:34px;
  /* border:1px solid #e3edf1; */
}

.takeout-lead__icon img{
  width:60px;
  height:auto;
}

.takeout-lead__content h3{
  margin:0 0 8px;
  font-size:1.8rem;
  font-weight:700;
}

.takeout-lead__content p{
  margin:0;
  font-size:1.4rem;
  line-height:1.9;
  color:#555;
}


/* =====================================================
tablet
===================================================== */

@media screen and (min-width:768px){

  .food-page{
    margin:83px 0 0;
  }

  .food-anchor{
    padding:20px 30px 40px;
  }

  .food-anchor__list{
    grid-template-columns:repeat(4, 1fr);
  }

  .food-section{
    padding:90px 30px;
  }

  .food-grid{
    grid-template-columns:repeat(2, 1fr);
    gap:24px;
  }
}


/* =====================================================
pc
===================================================== */

@media screen and (min-width:1024px){

  .food-page{
    margin:109px 0 0;
  }

  .food-section__title{
    font-size:3.4rem;
  }

  .food-grid{
    grid-template-columns:repeat(3, 1fr);
    gap:28px;
  }
}


/* =====================================================
sp only
===================================================== */

@media screen and (max-width:767px){

  .takeout-lead{
    flex-direction:column;
    text-align:center;
    padding:22px 18px;
  }

  .takeout-lead__icon img{
    width:46px;
  }
}

.food-card__spec{

  margin-top:12px;

  font-size:1.35rem;

  line-height:1.8;

  color:#555;
}

.food-card__text{

  font-size:1.45rem;

  line-height:1.9;

}

.food-card__image{
  position: relative;
}

.food-card__label{
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 72px;
  padding: 8px;
  border-radius: 999px;
  background: #d94b4b;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
}

.food-card__image{
  position: relative;
  overflow: hidden;
}

.food-card__label{
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e05b5b;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
  box-shadow: 0 6px 14px rgba(0,0,0,.15);
}

.food-card__notice{
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-block;
  max-width: calc(100% - 28px);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(66, 174, 202, 0.92);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
  box-shadow: 0 6px 14px rgba(0,0,0,.15);
}