
@charset "utf-8";
/* CSS Document */

#gw_food {
  box-sizing: border-box;
  display: block;
  font-feature-settings: "palt";
  background: #fcf9ed;
  font-size:16px;
  /* position: relative; */
}
html,body {
  font-size:16px;
}

html, html #gw_food {
  overflow-x: hidden;
}


#gw_food h2,h3,h4,p,#gw_food figure { 
    margin: 0;
}

#gw_food ul,#gw_food a {
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 0;
}

#gw_food img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  #gw_food .pc_only {
    display: none;
  }
}

#gw_food .kv_area {
  position: relative;
  height: auto;
  margin: 0 auto -8rem;
  padding: 0 50px 0 0;
}

@media screen and (max-width: 960px) {
  #gw_food .kv_area {
    padding: 0 20px 0 0;
  }
}
@media screen and (max-width: 768px) {
  #gw_food .kv_area {
    padding: 0 0.8rem 0;
  }
}
@media screen and (max-width: 480px) {
  #gw_food .kv_area {
    padding: 0 0.55rem 0;
  }
}

#gw_food .kv_img {
  position: relative;
  width: 100%;
  height: 92%;
}

#gw_food .kv_img .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom-right-radius: 50px;
}

@media screen and (max-width: 768px) {
  #gw_food .kv_img .img {
    border-bottom-left-radius: 50px;
  }
}
@media screen and (max-width: 480px) {
  #gw_food .kv_img .img {
    border-bottom-left-radius: 2rem;
  }
  #gw_food br.only_pc {
    display: none;
  }
}
@media screen and (min-width: 481px) {
  #gw_food br.only_sp {
    display: none;
  }

}
/*============================================================

タイトル

============================================================*/
#gw_food .kv_text span {
  width: 1px;
  height: 1px;
  overflow: hidden;
  display: block;
}
#gw_food h1.kv_text {
  transform: translateX(-5.5%) translateY(200%);
  width: 65%;
  margin: 0;
  right: 0;
  top: -5px;
  position: absolute;
  aspect-ratio: 1101 / 331;
  background: url(/tokyufoodshow/gw_foodevent/image/kv_title.webp) no-repeat bottom left / contain;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  #gw_food h1.kv_text {
    transform: translateX(-3%) translateY(380%);
    width: 90%;
    top: -0.5rem;
  }
}
@media screen and (max-width: 480px) {
  #gw_food h1.kv_text {
    transform: translateX(-3%) translateY(379%);
    top: 0;
  }
}

/*============================================================

EVENT会期 リード文

============================================================*/
#gw_food .event_period_area,
#gw_food .event_lead_area {
    font-family: "dnp-shuei-mgothic-std", sans-serif;
    font-weight: 800;
    font-style: normal;
}
#gw_food .event_period_area {
    text-align: right;
    font-size: 35px;
    padding: 0 1rem 0 1rem;
    letter-spacing: 2px;
}
#gw_food .event_lead_area {
  text-align: center;
  margin: 2rem 0 0 4rem;
  font-size: 30px;
  letter-spacing: 2px;
  /* color: #2d2d2d; */
  line-height: 3.35rem;
}
@media screen and (max-width: 768px) {
  #gw_food .event_period_area {
    margin-top: 6rem;
    font-size: 28px;
    padding: 0 0.45rem 0 1rem;
  }
  #gw_food .event_lead_area {
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 2.4rem;
    text-align: right;
    padding: 0 0.45rem;
    margin: 0.1rem auto 0;
  }
}
@media screen and (max-width: 480px) {
  #gw_food .event_period_area {
    margin-top: 3.5rem;
    font-size: 20px;
    padding: 0 0.25rem 0 0;
  }
  #gw_food .event_lead_area {
    font-size: 14.5px;
    letter-spacing: 2px;
    line-height: 1.7rem;
    padding: 0 0.25rem;
    margin: 0.05rem auto 0;
    text-align: right;
  }
}


/*============================================================

スクロール

============================================================*/
/* スクロールダウンの位置 */
#gw_food .scroll {
    position: absolute;
    top: 22%;
    right: 0;
    width: 49px;
    writing-mode: horizontal-tb;
    height: calc(60% - 50px);
    text-align: center;
    font-family: "futura-100-thai", sans-serif;
}

#gw_food .scroll .text {
  margin-bottom: 10px;
  font-size: 1.7rem;
  font-weight: 800;
  color: #1e1e1e;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position:relative;
}

/* 線のアニメーション部分 */
#gw_food .scroll::before {
  animation: scroll 2s infinite;
  background-color: #000;
  bottom: 7%;
  content: "";
  height: 70%;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1.5px;
}

/* 線のアニメーション */
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

@media screen and (max-width: 960px) {
    #gw_food .scroll {
      display:none;
      width: 20px
    }
}

/*============================================================

サイトマップ

============================================================*/
#gw_food .lp_map {
  margin: 14rem auto 0;
  width: 90%;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  box-sizing: border-box;
  padding: 0 10px;
}

#gw_food .lp_map ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 11px;
  box-sizing: border-box;
  letter-spacing: 2px;
  padding-left: 0;
}
#gw_food .lp_map ul li {
  width: calc((100% - 22px) / 2);
  text-align: center;
  box-sizing: border-box;
}
/*PICK UP*/
#gw_food .lp_map ul li a {
  background: #fff;
  border: 2.5px #ea6d9f solid;
  color:#2d2d2d;
  padding: 2rem 4rem;
  border-radius: 1rem;
  box-sizing: border-box;
  font-size: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
/*エリア別*/
#gw_food .lp_map ul li:last-of-type a {
  border: 2.5px #45a876 solid;
}
#gw_food .lp_map ul li a span {
  font-size: 30px
}
/*PICK UP マウスオーバー*/
#gw_food .lp_map ul li a:hover {
  background: #ea6d9f;
  color: #fff;
}
/*エリア別　マウスオーバー*/
#gw_food .lp_map ul li:last-of-type a:hover {
  background: #45a876;
}
@media screen and (max-width: 768px) {
  #gw_food .lp_map {
    margin: 12rem auto 0;
    width: 100%;
    padding: 0 2rem;
  }
  #gw_food .lp_map ul li a span {
    font-size: 20px;
  }
  #gw_food .lp_map ul li a {
    font-size: 16px;
    min-height: 135px;
    padding: 1rem 2rem;
  }
  #gw_food .lp_map ul {
    gap: 5px;
  }
  #gw_food .lp_map ul li {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (max-width: 480px) {
  #gw_food .lp_map {
    margin: 10rem auto 0;
  }
  #gw_food .lp_map ul {
    flex-direction: column;
    gap: 10px;
  }
  #gw_food .lp_map ul li {
    width: 100%;
  }
  #gw_food .lp_map ul li a {
    padding: 1rem;
    min-height: 95px;
    border-radius: 0.7rem;
  }
}

/*============================================================

ピックアップ商品

============================================================*/
#gw_food section.pick_up {
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  box-sizing: border-box;
  margin: 9rem auto 0;
}
.pick_up h3.pickup_title {
  margin: 0 auto;
  text-align: center;
  font-size: 35px;
}
@media screen and (max-width: 768px) {
    #gw_food section.pick_up {
      margin: 4rem auto 0;
    }
}

@media screen and (max-width: 480px) {
  #gw_food section.pick_up {
    margin: 3rem auto 0;
  }
  .pick_up h3.pickup_title {
    font-size: 30px;
  }
}

/*--------------------------------------------------

吹き出し

---------------------------------------------------*/
#gw_food .bubble_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  line-height: 1.5;
  text-align: center;
  padding: 2rem 2rem 0;
  align-items: flex-end;
}
#gw_food .bubble_flex p {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #2d2d2d;
  font-size: 15px;
  width: calc(100% / 3);
}

#gw_food .bubble_flex p::before,
#gw_food .bubble_flex p::after {
  width: 2px;
  height: 40px;
  background-color: #2d2d2d;
  content: '';
}

#gw_food .bubble_flex p::before {
  transform: rotate(-35deg);
  margin-right: 30px;
}

#gw_food .bubble_flex p::after {
  transform: rotate(35deg);
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  #gw_food .bubble_flex {
    gap: 1rem 30px;
    padding: 1.5rem 2rem 0;
  }
  #gw_food .bubble_flex p {
    font-size: 13px;
    width: calc((100% - 60px) / 3);
  }
  #gw_food .bubble_flex p::before,
  #gw_food .bubble_flex p::after {
    width: 1.7px;
    height: 30px;
    background-color: #2d2d2d;
    content: '';
  }
  #gw_food .bubble_flex p::before {
    margin-right: 20px;
  }

  #gw_food .bubble_flex p::after {
    margin-left: 20px;
  }
}
@media screen and (max-width: 480px) {
  #gw_food .bubble_flex {
    gap: 1rem 10px;
    padding: 0.5rem 1rem 0;
  }
  #gw_food .bubble_flex p {
    font-size: 11px;
    line-height: 1.35;
    width: calc((100% - 20px) / 3);
  }
}

/*--------------------------------------------------

タブ切り替え

---------------------------------------------------*/
.tab-switch {
  margin: 1rem auto 5rem;
  padding: 0 3rem 0;
  display: flex;
  flex-wrap: wrap;
  margin-inline: auto;
  gap: 5rem 30px;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .tab-switch {
    gap: 3rem 30px;
  }
}

/* タブボタン */
.tab-switch label {
  padding: 0.5em 1em;
  cursor: pointer;
  order: -1; /* 上に表示 */
  text-align: center;
  flex: 1; /* 均等幅 */
  min-width: 60px;
  width: calc((100% - 60px) / 3);
  border-radius: 100vh; /* 丸み */
  color: #999999;
  font-size: 1.5rem;
  box-sizing: border-box;
  border: #999999 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ラジオ非表示 */
.tab-switch input {
  display: none;
}

/* コンテンツ非表示 */
.tab-content {
  display: none;
  width: 100%;
  padding: 1.5em 1rem;
  color: #191919;
}

/* 選択されたタブ＋コンテンツ表示 */
.tab-switch label.tab1:has(:checked) {
  background: #ea6d9f;
  color: #fff;
  border: none;
}
.tab-switch label.tab2:has(:checked) {
  background: #ff8500;
  color: #fff;
  border: none;
}
.tab-switch label.tab3:has(:checked) {
  background: #957dbc;
  color: #fff;
  border: none;
}
.tab-switch label:has(:checked) + .tab-content {
  display: block;
}

@media screen and (max-width: 768px) {
  .tab-switch {
    margin: 0.35rem auto 5rem;
    padding: 0 2rem 0;
  }
  /* タブボタン */
  .tab-switch label {
    font-size: 0.95rem;
    line-height: 1.5rem
  }
}
@media screen and (max-width: 480px) {
  .tab-switch {
    gap: 1rem 10px;
    margin: 0.25rem auto 5rem;
    padding: 0 1rem 0;
  }
  /* タブボタン */
  .tab-switch label {
    padding: 0.85em 1em;
    width: calc((100% - 20px) / 3);
    font-size: 0.8rem;
    line-height: 1rem
  }
}

/*============================================================

商品

============================================================*/
.tab-flex {
    display: grid;
    gap: 90px;
    grid-template-columns: repeat(2, 1fr);
    letter-spacing: 0.8px;
}
@media screen and (min-width: 768px) and (max-width:1200px) {
  .tab-flex {
    align-content: flex-start;
    align-items: self-start;
    gap: 50px 90px;
  }
}
@media screen and (max-width: 768px) {
  .tab-flex {
    display: grid;
    gap: 70px;
    grid-template-columns: repeat(1, 1fr);
    justify-content: center;
  }
}
@media screen and (max-width: 480px) {
  .tab-flex {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(1, 1fr);
    justify-content: center;
  }
}

.tab-flex .item-box {
  display: flex;
  gap: 0 30px;
  border-bottom: 2px solid #999999;
  padding-bottom: 5rem;
}
.tab-flex .item-box:nth-of-type(3),
.tab-flex .item-box:nth-of-type(4) {
  border-bottom: unset;
  padding-bottom: unset;
}
@media screen and (min-width: 768px) and (max-width:1200px) {
  .tab-flex .item-box {
    flex-direction: column;
    border-bottom: unset
  }
}
@media screen and (max-width: 768px) {
  .tab-flex .item-box,
  .tab-flex .item-box:nth-of-type(3),
  .tab-flex .item-box:nth-of-type(4) {
    border-bottom: 2px solid #999999;
    padding-bottom: 3.5rem;
    align-items: center;
  }
}

@media screen and (max-width: 480px) {
  .tab-flex .item-box,
  .tab-flex .item-box:nth-of-type(3),
  .tab-flex .item-box:nth-of-type(4) {
    flex-direction: column;
    border-bottom: 2px solid #999999;
    padding-bottom: 2.5rem;
    justify-content: center;
  }
}

.item-img-wrap img {
  border-radius: 100vh;
  border: 1px solid #333333;
  box-sizing: border-box;
}

.item-explanation {
  font-size: 16px;
  width: calc((100% - 34px) / 2);
  box-sizing: border-box;
}
@media screen and (min-width: 768px) and (max-width:1200px) {
  .item-explanation {
    width: 100%;
    text-align: center;
  }  
}
@media screen and (max-width: 767px) {
  .item-explanation {
    text-align: left;
  }  
}
@media screen and (max-width: 480px) {
  .item-explanation {
    width: 100%;
    text-align: center;
  }  
}

.item-img-wrap {
  width: calc((100% - 34px) / 2);
  box-sizing: border-box;
}
@media screen and (min-width: 768px) and (max-width:1200px) {
  .item-img-wrap {
    width: 80%;
    margin: auto;
  }  
}
@media screen and (max-width: 480px) {
  .item-img-wrap {
    width: 65%;
    text-align: center;
    margin: auto;
  }  
}

/*ブランド名*/
p.brandname,
p.itemname {
  line-height: 1.5;
}

/*商品名*/
p.itemname {
  font-size: 15px;
  padding: 10px 0 0;
}

p.price,
.obento-flex .item-box:first-of-type p.price {
  color: #dd0000;
  line-height: 1.4;
  padding-top: 5px;
}

/*GODIVA (ゴディバ)/1090円弁当*/
.enjoy-flex .item-box:first-of-type p.price,
.obento-flex .item-box p.price {
  color: #000;
}

span.unit {
  font-size: 14px;
  padding-right: 3px;
}
span.tax_included {
  font-size: 14px;
  padding-left: 3px;
}

/*イベント注意事項*/
p.note {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.3;
  padding-bottom: 10px;
  padding-left: 13px;
  text-indent: -13px;
}
/*1090円弁当限定数*/
.obento-flex p.note {
  padding-top: 15px;
  padding-bottom: 0;
}

@media screen and (max-width: 480px) {
  /*イベント注意事項*/
  p.note {
    text-align: left;
  }
}

/*全体注意事項*/
.note_recap {
  padding-top: 50px;
}

.note_recap p {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.3;
  padding-bottom: 5px;
  padding-left: 13px;
  text-indent: -13px;
}

@media screen and (max-width: 768px) {
  /*全体注意事項*/
  .note_recap {
    padding-top: 30px;
  }
}
@media screen and (max-width: 480px) {
  /*全体注意事項*/
  .note_recap {
    text-align: left;
  }
  .note_recap p {
    line-height: 1.5;
  }  
}

p.item-content {
  font-size: 14px;
  line-height: 21px;
  font-weight: normal;
}

p.period {
  font-weight: normal;
}

.limit-number h2 {
  background: #000;
  color: #fff;
  font-size: 13px;
  display: inline-block;
  padding: 7px 15px;
  line-height: 1;
}

p.item-content {
  font-size: 14px;
  line-height: 21px;
  font-weight: normal;
  padding-top: 2px;
}

.period_ {
  padding: 10px 0 15px;
  text-align: left;
}
p.period {
  font-weight: normal;
  line-height: 1.5;
  font-size: 14px;
}

.item-wrapper.enjoybox .item-explanation p{
  width:100%;
  max-width: 100%;
}

.limit-number {
  margin: 0 0 15px;
}
.limit-number ul {
  display: flex;
  gap: 7px 20px;
  font-weight: 600;
  font-size: 18px;
  width: 100%;
  flex-wrap: wrap;
  padding: 15px 0 0;
  line-height: 0;
}
@media screen and (max-width: 768px) {
  .limit-number ul {
    width: 100%;
  }  
}
.limit-number li span {
  margin-right: 6px;
  padding: 3px 3px;
  background: #ea6d9f;
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  width: 22px;
  aspect-ratio: 1/1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.0;
  letter-spacing: 0;
}

/*弁当*/
.obento-flex .limit-number li span {
  background: #ff8500;
}

/*イベント*/
.event-flex .limit-number li span {
  background: #957dbc;
}

.limit-number li span.ko {
  background: transparent!important;
  color: #523711;
  padding: 0;
  margin: 0 0 0 -6px;
  display: inline;
  padding-left: 3px;
  line-height: 0;
}

 .limit-number{
  width: 100%;
}

/*販売期間*/
.period_ .period::before{
  content:"販売期間";
  width:auto;
  height:auto;
  background:#333;
  color:#fff;
  display:inline-block;
  padding: 6px 8px 8px;
  margin-right: 7px;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 1.5px;
}

/*開催日*/
.event-flex .period_ .period::before{
  content:"開催日";
}

/*対象店舗 限定数　吹き出し*/
.tenpo-wrap h2,
.limit-number h2 {
  margin-bottom: 10px;
  padding: 3px 0 5px;
  letter-spacing: 0.1em;
  color: #fff;
  font-weight: 600;
  width: 92px;
  text-align: center;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #333;
}
#gw_food .tenpo-wrap h2 {
  margin-bottom: 12px;
}
  #gw_food .enjoy-flex .item-box:nth-of-type(3) .tenpo-wrap h2,
  #gw_food .obento-flex .item-box:nth-of-type(1) .tenpo-wrap h2,
  #gw_food .event-flex .item-box:nth-of-type(2) .tenpo-wrap h2,
  #gw_food .event-flex .item-box:nth-of-type(3) .tenpo-wrap h2,
  #gw_food .event-flex .item-box:nth-of-type(4) .tenpo-wrap h2{
    margin-bottom: 8px;
  }
@media screen and (max-width: 767px) {
  #gw_food .tenpo-wrap h2 {
    margin: 3px 0 12.5px;
  }
  #gw_food .enjoy-flex .item-box:nth-of-type(3) .tenpo-wrap h2,
  #gw_food .obento-flex .item-box:nth-of-type(1) .tenpo-wrap h2,
  #gw_food .event-flex .item-box:nth-of-type(2) .tenpo-wrap h2,
  #gw_food .event-flex .item-box:nth-of-type(3) .tenpo-wrap h2,
  #gw_food .event-flex .item-box:nth-of-type(4) .tenpo-wrap h2{
    margin: 3px 0 7.5px;
  }
}
@media screen and (max-width: 480px) {
  #gw_food .tenpo-wrap h2 {
    margin: 3px 0 13.5px;
  }
  #gw_food .enjoy-flex .item-box:nth-of-type(3) .tenpo-wrap h2,
  #gw_food .obento-flex .item-box:nth-of-type(1) .tenpo-wrap h2,
  #gw_food .event-flex .item-box:nth-of-type(2) .tenpo-wrap h2,
  #gw_food .event-flex .item-box:nth-of-type(3) .tenpo-wrap h2,
  #gw_food .event-flex .item-box:nth-of-type(4) .tenpo-wrap h2{
    margin: 3px 0 6.5px;
  } 
}

#gw_food .limit-number h2 {
  padding: 8px 0 10px;
}

.tenpo-wrap h2::after,
.limit-number h2::after {
  content:"";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  bottom: 0;
  left: 46%;
  border-right:2px solid #333;
  border-top:2px solid #333;
  transform: rotate(135deg) translate(50%, -15%);
  background:#333;
  border-top-right-radius:3px;
}

.tenpo-bt-wrap {
  font-size: 12px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  line-height: 1.3;
  gap: 8px 10px;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .tenpo-bt-wrap {
    grid-template-columns: repeat(3, 1fr);
    gap: 7px 7px;
    line-height: 1.15;
    font-size: 11.5px;
  } 
}
p.sub_brand {
    text-align: left;
    font-size: 14.5px;
}
@media screen and (max-width: 480px) {
  p.sub_brand {
    font-size: 13px;
  } 
}

/*対象店舗*/
.tenpo-wrap-pb {
  padding-bottom: 15px;
}
@media screen and (max-width: 767px) {
  /*対象店舗*/
  .tenpo-wrap-pb {
    padding-bottom: 10px;
  } 
}
@media screen and (max-width: 480px) {
  /*対象店舗*/
  .tenpo-wrap-pb {
    padding-bottom: 7px;
  } 
}

/*お楽しみ*/
.tenpo-bt-wrap a {
  background: #ea6d9f;
  align-items: center;
  display: flex;
  justify-content: center;
}

.tenpo-bt-wrap span.tenpo-bt {
  background: #ea6d9f;
  color: #fff;
  padding: 5px 10px;
  align-items: center;
  display: flex;
  justify-content: center;
}

/*お弁当*/
.obento-flex .tenpo-bt-wrap a {
  background: #ff8500;
}

.obento-flex .tenpo-bt-wrap span.tenpo-bt {
  background: #ff8500;
}

/*イベント*/
.event-flex .tenpo-bt-wrap a {
  background: #957dbc;
}
.event-flex .tenpo-bt-wrap span.tenpo-bt {
  background: #957dbc;
}
/*============================================================

ナビげーション

============================================================*/
#gw_food nav.nav_list {
    max-width: 1600px;
    margin: 1.5rem auto 5rem;
    padding: 0 5rem;
}

#gw_food .nav_list ul {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
}

#gw_food .nav_list li {
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 800;
  font-style: normal;


}

#gw_food .nav_list a.link_button {
  display: flex;
  align-items: center;
  background: #45a876;
  border: 0.55rem solid #fff;
  font-feature-settings: "palt";
  font-weight: 700;
  line-height: 1.4;
  border-radius: 1.8rem;
  color: #fff;
  font-size: 1.3rem;
  padding: 2rem 1rem 3rem 1rem;
  text-align: center;
  justify-content: center;
  position: relative;
  letter-spacing: 1.2px;
}

#gw_food .nav_list a.link_button:hover {
  transform: translateY(5px)!important;
}

#gw_food .nav_list a.link_button::after {
  transform: rotate(135deg);
  width: 11px;
  height: 11px;
  margin-left: 10px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  content: '';
  position: absolute;
  bottom: 1.75rem;
  right: 0;
  left: 0;
  margin: auto;
}

@media screen and (max-width: 1000px) {
  #gw_food .nav_list a.link_button {
      padding: 1.3rem 1rem 2.8rem 1rem;
      font-size: 1.15rem;
      min-height: 145px;
  }
  #gw_food .nav_list a.link_button::after {
      border-top: 3px solid #fff;
      border-right: 3px solid #fff;
  }
}
@media screen and (max-width: 768px) {
  
  #gw_food nav.nav_list {
      margin: 4rem auto;
      padding: 0 1.15rem;
  }
  
  #gw_food .nav_list ul {
      gap: 0.75rem;
      grid-template-columns: repeat(2, 1fr);
      padding-left: 0;
  }
  
  #gw_food .nav_list a.link_button {
      font-size: 1.2rem;
      padding: 1.6rem 3rem 2.7rem 3rem;
      border: 0.4rem solid #fff;
      border-radius: 1.5rem;
  }
  
  #gw_food .nav_list a.link_button::after {
      transform: rotate(135deg);
      width: 5px;
      height: 5px;
      border-top: 3px solid #fff;
      border-right: 3px solid #fff;
  }
}

@media screen and (max-width: 480px) {
  
  #gw_food nav.nav_list {
    margin: 1rem auto 3rem;
    padding: 0 1rem;
  }
  
  #gw_food .nav_list ul {
    gap: 0.7rem;
    grid-template-columns: repeat(1, 1fr);
  }
  
  #gw_food .nav_list a.link_button {
    font-size: 1rem;
    padding: 1.5rem 3rem 2.5rem 3rem;
    border: 0.4rem solid #fff;
    border-radius: 1.3rem;
    letter-spacing: 2px;
    min-height: 90px;
  }
  
  #gw_food .nav_list a.link_button::after {
    transform: rotate(135deg);
    width: 7px;
    height: 7px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    bottom: 1.5rem;
  }
}



/*============================================================

クーポン情報

============================================================*/
.coupon_area {
  padding: 0 5.5rem 2rem;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 1600px) {
  .coupon_area {
    padding: 0 3.5rem 0rem;
  }
}
@media screen and (max-width: 1200px) {
  .coupon_area {
    padding: 0 2rem 0rem;
  }
}
@media screen and (max-width: 768px) {
  .coupon_area {
    padding: 0;
  }
}

.coupon_heading {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #212121;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 2rem;
  text-align: center;
  line-height: 3rem;
  letter-spacing: 5px;
}

.coupon_heading::before,
.coupon_heading::after {
  width: 4px;
  height: 110px;
  background-color: #212121;
  content: '';
  top: -30px;
}

.coupon_heading::before {
  transform: rotate(-30deg);
  margin-right: 65px;
}

.coupon_heading::after {
  transform: rotate(30deg);
  margin-left: 60px;
}

.coupon_flex {
  display: flex;
  flex-wrap: wrap;
  gap: 0 50px;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 1rem;
  padding: 2.5rem 1.5rem;
  margin: 2rem auto;
}

.coupon_img {
  width: calc((100% - 50px) / 2);
}

.coupon_img img {
  width: 100%;
}


.coupon_detail {
  width: calc((100% - 50px) / 2);
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
}

@media screen and (max-width: 1000px) {
  .coupon_flex {
    gap: 0 20px;
  }



  .coupon_img {
    width: calc((100% - 20px) / 2);
  }

  .coupon_img img {
      width: 100%;
  }

  .coupon_detail {
      width: calc((100% - 20px) / 2);
  } 
}
@media screen and (max-width: 768px) {
  .coupon_heading {
    font-size: 1.5rem;
    line-height: 2.4rem;
  }

  .coupon_heading::before,
  .coupon_heading::after {
    width: 3px;
    height: 60px;
  }

  .coupon_heading::before {
    margin-right: 35px;
  }

  .coupon_heading::after {
    margin-left: 35px;
  }

  .coupon_flex {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 0;
    padding: 16rem 1.5rem 2rem;
    margin: 3.5rem auto;
    position: relative;
  }

  .coupon_img {
    width: 30rem;
    top: -2rem;
    position: absolute;
  }

  .coupon_detail {
    width: 100%;
  }

}


@media screen and (max-width: 480px) {
  .coupon_heading {
      font-size: 0.95rem;
      line-height: 1.8rem;
      padding: 0 1rem;
  }
  
  .coupon_heading::before,
  .coupon_heading::after {
      width: 2.5px;
      height: 40px;
  }
  
  .coupon_heading::before {
      margin-right: 20px;
  }

  .coupon_heading::after {
      margin-left: 20px;
  }
  
  .coupon_flex {
      background: #fff;
      border-radius: 0;
      padding: 10rem 1rem 2rem;
      margin: 3rem auto;
  }
  .coupon_img {
      width: 20rem;
      top: -2rem;
  }    
  
  .coupon_date {
      text-align: center;
  }
}


/*クーポン詳細情報*/
.coupon_detail p.coupon_tx {
    font-size: 1.2rem;
    line-height: 1.9rem;
    font-weight: 600;
    color: #212121;
    margin: 1rem 0;
}

.coupon_detail p.eligible_stores {
  font-size: 1rem;
  line-height: 1.45rem;
  letter-spacing: 0.5px;
}

.coupon_note {
    font-size: 0.95rem;
    line-height: 1.3rem;
    letter-spacing: 0.8px;
}

.coupon_note p {
    padding-left: 14px;
    text-indent: -14px;
}

.coupon_date {
    font-size: 1.05rem;
    line-height: 1.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

@media screen and (max-width: 1000px) {
  .coupon_detail p.coupon_tx {
    font-size: 1rem;
    line-height: 1.55rem;
  }

  .coupon_detail p.eligible_stores {
    font-size: 0.95rem;
    line-height: 1.3rem;
  }

  .coupon_note {
    font-size: 0.8rem;
    line-height: 1.2rem;
  }

  .coupon_date {
    font-size: 0.95rem;
    line-height: 1.7rem;
  }  
}
@media screen and (max-width: 768px) {

  .coupon_detail p.coupon_tx {
      font-size: 18px;
      line-height: 1.8rem;
      margin: 0.8rem 0;
  }

  .coupon_detail p.eligible_stores {
      font-size: 15px;
      line-height: 1.5rem;
      margin-bottom: 0.7rem;
  }

  .coupon_note {
      /* margin-bottom: 1rem; */
      font-size: 14px;
      line-height: 1.3rem;
  }

  .coupon_date {
      font-size: 18px;
      line-height: 1.7rem;
      text-align: center;
      margin-bottom: 0.8rem;
  }
}

@media screen and (max-width: 480px) {

  .coupon_detail p.coupon_tx {
      font-size: 16px;
      line-height: 1.6rem;
      margin-bottom: 0.6rem;
  }

  .coupon_detail p.eligible_stores {
      font-size: 14px;

      line-height: 1.4rem;
  }

  .coupon_note {
      margin-bottom: 1rem;
      font-size: 13px;
  }

  .coupon_date {
      font-size: 15.5px;
      line-height: 1.65rem;
      text-align: left;
  }
}
/*============================================================

フード専門店/大型店　タイトル

============================================================*/
.headline_area {
    align-items: center;
    border-radius: 100vh;
    margin: 0 auto 2rem;
    min-height: 1.5rem;
    min-width: 13rem;
    padding: 0.75rem 8.5rem;
    width: fit-content;
    background-color: #fff;
    display: flex;
    position: relative;
    z-index: 10;
    letter-spacing: 7px;
    color: #2d2d2d;
    justify-content: center;
}

.headline_area .headline,
.sub_title_copy {
    font-size: 25px;
    font-family: "heisei-maru-gothic-std", sans-serif;
    font-weight: 800;
    text-align: center;
    font-style: normal;
    line-height: 3.5rem;
}

.headline_area.large_store_area {
  margin: -18.9rem auto 0;
}
@media screen and (max-width: 768px)  {
  .headline_area {
      margin-top: 0.24rem;
  }

  .headline_area .headline {
      font-size: 22px;
      line-height: 2.5rem;
  }
}

@media screen and (max-width: 480px) {
  .headline_area {
      max-width: 2.9rem;
      flex-direction: column;
      padding: 0.75rem 2rem;
      margin: 0 auto 1rem;
      min-height: 1.5rem;
  }
  
  .headline_area .headline {
      font-size: 18px;
      line-height: 1.6rem;
  }
}

/*リード*/
.sub_lead {
  text-align: center;
  font-size: 20px;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 2.5px;
  color: #2d2d2d;
  z-index: 1;
  position: relative;
}
.sub_title_copy {
    position: relative;
    padding: 1.5rem 15px;
    border-radius: 0.75rem;
    border: 2.5px solid #4c4c4c;
    background-color: #45a876;
    width: 27%;
    margin: -2rem auto 1rem;
    color: #fff;
    font-weight: 800;
    font-size: 33px;
    text-align: center;
    letter-spacing: 6.5px;
}
.sub_title_copy:before {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    height: 20px;
    width: 2px;
    background-color: #4c4c4c;
    content: "";
}
@media screen and (max-width: 1000px)  {
  .sub_title_copy {
    width: 60%;
  }

}
@media screen and (max-width: 768px)  {
  .sub_lead {
    font-size: 18px;
  }
  .sub_title_copy {
    font-size: 25px;
    padding: 1rem 15px;
    margin: -3rem auto 1rem;
  }

}

@media screen and (max-width: 480px) {
  .sub_lead {
    font-size: 15px;
  }
  .sub_title_copy {
    font-size: 18px;
    line-height: 1.4;
    width: 55%;
  }
}

/*============================================================

フード専門店

============================================================*/
.food_onlyshop {
  position: relative;
  padding-bottom: 25rem;
}
@media screen and (max-width: 768px) {
  .food_onlyshop {
    padding-bottom: 22rem;
  }
}

/*背景*/
.food_onlyshop::before {
  content: "";
  position: absolute;
  display: block;
  background: url("/tokyufoodshow/gw_foodevent/image/food_onlyshop.webp") repeat top center/contain;
  inset: 0;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  transform: translateY(2.1%);
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
  .food_onlyshop::before {
    top: 0;
    transform: translate(0, 2.5%);
  }  
}
@media screen and (max-width: 768px) {
  .food_onlyshop::before {
    transform: translate(0, 1.35%);
  }
}
@media screen and (max-width: 480px) {
  .food_onlyshop::before {
    top: 0;
    transform: translate(0, 1.3%);
  }
}
@media screen and (max-width: 335px) {
  .food_onlyshop::before {
    top: 1rem;
    transform: translate(0, 1.7%);
  }
}


/*============================================================

各店舗共通

============================================================*/
/*渋谷フードショー*/
.food_store:first-of-type {
  margin-top: 14rem;
}

.food_store {
  margin-top: 10rem;
  box-sizing: border-box;
  position: relative;
}

/*二子玉川・武蔵小杉*/
.line_break {
  margin-top: 14rem;
}

@media screen and (max-width: 768px) {
  .food_store {
    margin-top: 9rem;
  }
  /*二子玉川・武蔵小杉*/
  .line_break {
    margin-top: 14rem;
  }
}
@media screen and (max-width: 480px) {
  /*渋谷フードショー*/
  .food_store:first-of-type {
    margin-top: 10rem;
  }
  
  .food_store {
    margin-top: 7.5rem;
  }
  /*二子玉川・武蔵小杉*/
  .line_break {
    margin-top: 12rem;
  }
}
@media screen and (max-width: 400px) {
  /*渋谷フードショー*/
  .food_store:first-of-type {
    margin-top: 7.5rem;
  }
}


#gw_food .eachstore_inner {
  margin: 0 auto;
  max-width: 1600px;
  padding: 0 1rem;
  position: relative;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  #gw_food .eachstore_inner {
    padding: 0;
  }
}

/*破線*/
#gw_food .eachstore_inner:before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyBpZD0iYiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMzEuMDUiIGhlaWdodD0iODUiIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgMzEuMDUgODUiPiA8ZGVmcz4gPGNsaXBQYXRoIGlkPSJkIj4gPHJlY3Qgd2lkdGg9IjMxLjA1IiBoZWlnaHQ9Ijg1IiBmaWxsPSJub25lIi8+IDwvY2xpcFBhdGg+IDwvZGVmcz4gPGcgaWQ9ImMiIGRhdGEtbmFtZT0iV0VC5pu444GN5Ye644GXIj4gPGcgY2xpcC1wYXRoPSJ1cmwoI2QpIj4gPHBhdGggZD0iTTE1LjUyLDUwYy04LjI4LDAtMTUtNi43Mi0xNS0xNVYxNUMuNTIsNi43Miw3LjI0LDAsMTUuNTIsMHMxNSw2LjcyLDE1LDE1djIwYzAsOC4yOC02LjcyLDE1LTE1LDE1WiIgZmlsbD0iI2ZmZiIvPiA8L2c+IDwvZz48L3N2Zz4=");
  background-repeat: repeat-y;
  background-size: 100% auto;
  content: "";
  height: 100%;
  left: 50%;

  position: absolute;
  z-index: 0;
  width: .8rem;
}

@media screen and (max-width: 768px) {
  #gw_food .eachstore_inner:before {
    width: 0.8rem;
  }
}

/*エリア*/
#gw_food .eachstore_inner .place_label {
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1.18;
  margin-top: 0;
  position: absolute;
  text-transform: uppercase;
  font-size: 5rem;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-align: right;
}

/*エリア　右側*/
#gw_food .eachstore_inner .place_right {
  right: 0;
  top: 0;
  transform: translateX(-2%) translateY(-103%);
  line-height: 4.5rem;
}

/*エリア　左側*/
#gw_food .eachstore_inner .place_left {
  left: 0;
  top: 0;
  transform: translateX(4%) translateY(-90%);
  text-align: left;
}

@media screen and (max-width: 768px) {
  
  #gw_food .eachstore_inner .place_right,
  #gw_food .eachstore_inner .place_left {
    right: unset;
    left: 0;
    top: 0;
    transform: translateX(0%) translateY(-99%);
    text-align: left;
    line-height: 5rem;
  }
  
}

@media screen and (max-width: 480px) {
  #gw_food .eachstore_inner .place_right,
  #gw_food .eachstore_inner .place_left {
    line-height: 3.5rem;
    font-size: 3.5rem;
  } 
}

#gw_food .coupon_detail {
  position: relative;
}

#gw_food .event_article {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  box-sizing: border-box;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
}

#gw_food .event_article.-even {
  justify-content: flex-start;
}

@media screen and (max-width: 768px) {
  #gw_food .event_article {
    flex-direction: column;
    justify-content: center;
  }  
}

#gw_food .event_article .event_img {
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 38%;
}

/*左側*/
#gw_food .event_article.-odd .event_img {
  left: 0;
  top: 0;
  box-sizing: border-box;
  transform: translateX(14%)translateY(-7%);
  filter: drop-shadow(-10px 10px 3px rgba(158, 141, 113, 0.3));
}
/*左側 二子玉川*/
#gw_food .futako_fs .event_article.-odd .event_img {
  transform: translateX(14%)translateY(-15%);
}

/*右側*/
#gw_food .event_article.-even .event_img {
  right: 0;top: 0;
  box-sizing: border-box;
  transform: translateX(-10%) translateY(-9%);
  filter: drop-shadow(10px 10px 3px rgba(158, 141, 113, 0.3));
}

/*右側 エッジ*/
#gw_food .edge .event_article.-even .event_img {
  transform: translateX(-10%) translateY(-20%);
}

@media screen and (max-width: 1400px) {
  #gw_food .event_article.-odd .event_img {
    transform: translateX(14%)translateY(-1%);
  }
  /*左側 二子玉川*/
  #gw_food .futako_fs .event_article.-odd .event_img {
    transform: translateX(14%)translateY(-10%);
  }
  /*右側*/
  #gw_food .event_article.-even .event_img {
    transform: translateX(-10%) translateY(-6%);
  }
  /*右側 エッジ*/
  #gw_food .edge .event_article.-even .event_img {
    transform: translateX(-12%) translateY(-18.5%);
  }
}
@media screen and (max-width: 1200px) {
  #gw_food .event_article.-odd .event_img {
    transform: translateX(14%)translateY(0%);
  }
  /*左側 二子玉川*/
  #gw_food .futako_fs .event_article.-odd .event_img {
    transform: translateX(14%)translateY(-9%);
  }
  /*右側*/
  #gw_food .event_article.-even .event_img {
    transform: translateX(-2%) translateY(-2%);
    width: 40%;
  }
  /*右側 エッジ*/
  #gw_food .edge .event_article.-even .event_img {
    transform: translateX(-7%) translateY(-16%);
    width: 40%;
  }
}
@media screen and (max-width: 1000px) {
  #gw_food .event_article .event_img {
    width: 44%;
  }
  #gw_food .event_article.-odd .event_img {
    transform: translateX(-1%)translateY(-2%);
    width: 45%;
  }
  /*左側 二子玉川*/
  #gw_food .futako_fs .event_article.-odd .event_img {
    transform: translateX(0%)translateY(-9%);
    width: 45%;
  }
  /*右側*/
  #gw_food .event_article.-even .event_img {
    transform: translateX(5%) translateY(-6%);
    width: 45%;
  }
  /*右側 エッジ*/
  #gw_food .edge .event_article.-even .event_img {
    transform: translateX(5%) translateY(-14%);
    width: 45%;
  }
}

@media screen and (max-width: 900px) {
  #gw_food .event_article.-odd .event_img {
    transform: translateX(-1%)translateY(-2%);
    width: 50%;
  }
  /*左側 二子玉川*/
  #gw_food .futako_fs .event_article.-odd .event_img {
    transform: translateX(-4%)translateY(-3%);
    width: 48%;
  }
  /*右側*/
  #gw_food .event_article.-even .event_img {
    transform: translateX(5%) translateY(-10%);
    width: 50%;
  }
  /*右側 エッジ*/
  #gw_food .edge .event_article.-even .event_img {
    transform: translateX(3%) translateY(-14%);
    width: 48%;
  }
}
@media screen and (max-width: 768px) {
  #gw_food .event_article.-odd .event_img,
  #gw_food .futako_fs .event_article.-odd .event_img,
  #gw_food .edge .event_article.-even .event_img,
  #gw_food .event_article.-even .event_img {
    display: block;
    width: 100%;
    position: relative;
    transform: none;
    filter: unset;
  }  
}

#gw_food .event_article_content {
  border: 0.7rem solid #fff;
  border-radius: 1.5rem;
  height: 35%;
  background-color: #daefe4;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  #gw_food .event_article_content {
    height: auto;
    border-radius: 1.1rem;
    border: 0.55rem solid #fff;
  }
}
@media screen and (max-width: 480px) {
  #gw_food .event_article_content {
    border-radius: 0.85rem;
    border: 0.45rem solid #fff;
  }
}


#gw_food .event_article.-odd .event_article_content,
#gw_food .event_article.-even .event_article_content{
  box-sizing: border-box;
  width: 62%;
  position: relative;
  color:#333;
}

@media screen and (max-width: 1000px) {
  #gw_food .event_article.-odd .event_article_content,
  #gw_food .event_article.-even .event_article_content{
    width: 62%;
  } 
}

@media screen and (max-width: 768px) {
  #gw_food .event_article.-odd .event_article_content,
  #gw_food .event_article.-even .event_article_content{
    width: 95%;
    margin: -3.5rem auto 0;
  }
}
@media screen and (max-width: 480px) {
  #gw_food .event_article.-odd .event_article_content,
  #gw_food .event_article.-even .event_article_content{
    margin: -2.5rem auto 0;
    width: 90%;
  }
}

#gw_food .event_head {
  padding: 1rem 1.2rem 0 0;
  background-color: #fff;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  #gw_food .event_head {
    position: relative;
  }
}

#gw_food .event_head_inner {
  border-left: 0.45rem solid #45a876;
  display: grid;
  gap: 8px 0;
  grid-template-areas:"lead lead""title time";
  grid-template-columns: 2fr 1fr;
  padding: 1rem 0 1rem 1rem;
  box-sizing: border-box;
}
#gw_food .edge .event_head_inner {
  grid-template-columns: 2fr 3.5fr;
}
#gw_food .shibuya_fs .event_head_inner,
#gw_food .futako_fs .event_head_inner {
  grid-template-columns: 2fr 2fr;
}

@media screen and (max-width: 1200px) {
  #gw_food .event_head_inner {
    border-left: 0.35rem solid #45a876;
    grid-template-columns: 1fr;
  }  
}

#gw_food .event_head_inner .area {
  color: #45a876;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.18;
  text-transform: uppercase;
  font-size: 1.3rem;
  grid-area: lead;
}

#gw_food .event_head_inner .event_title {
  font-feature-settings: "palt" on;
  font-weight: 700;
  letter-spacing: .05em;
  font-size: 2rem;
  grid-area: title;
  box-sizing: border-box;
  overflow: hidden;
  display: inline-block;
}
@media screen and (max-width: 1200px) {
  #gw_food .event_head_inner .event_title {
    font-size: 1.65rem;
    line-height: 1.25;
  }  
}
@media screen and (max-width: 768px) {
  #gw_food .event_head_inner .area {
    font-size: 1rem;
  }
  #gw_food .event_head_inner .event_title {
    line-height: 2.1rem;
    font-size: 1.6rem;
  }
  #gw_food .edge .event_head_inner,
  #gw_food .shibuya_fs .event_head_inner,
  #gw_food .futako_fs .event_head_inner {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 480px) {
  #gw_food .event_head_inner .area {
    font-size: 1.15rem;
  }
  #gw_food .event_head_inner .event_title {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 370px) {
  #gw_food .event_head_inner .event_title {
    font-size: 1.25rem;
  }
}

/*イベント日程*/
#gw_food .event_head_inner .event_schedule {
  text-align: center;
  background-color: #daefe4;
  letter-spacing: .1em;
  /* position: relative; */
  align-self: center;
  font-size: 1.25rem;
  padding: 0.7rem;
  border-radius: 0.6rem;
  font-weight: 700;
  display: inline-block;
  width: 85%;
}

#gw_food .edge .event_head_inner .event_schedule {
  width: 50%;
}
#gw_food .shibuya_fs .event_head_inner .event_schedule {
  width: 55%;
}
#gw_food .futako_fs .event_head_inner .event_schedule {
  width: 65%;
}
@media screen and (max-width: 1200px) {
/*イベント日程*/
  #gw_food .event_head_inner .event_schedule {
    margin-left: 1rem;
    font-size: 1rem;
  }  
}
@media screen and (max-width: 900px) {
  #gw_food .futako_fs .event_head_inner .event_schedule {
    position: absolute;
    top: 0;
    right: 0;
    margin-left: 0;
  }
  #gw_food .event_head_inner .event_schedule,
  #gw_food .shibuya_fs .event_head_inner .event_schedule,
  #gw_food .edge .event_head_inner .event_schedule,
  #gw_food .futako_fs .event_head_inner .event_schedule {
    width: unset;
  }
}
@media screen and (max-width: 768px) {
  #gw_food .event_head_inner .event_schedule {
    position: absolute;

    top: 0;
    right: 0;
    margin-left: 0;
  }
}
@media screen and (max-width: 480px) {
  #gw_food .event_head_inner .event_schedule {
    font-size: 0.95rem;
    padding: 0.55rem;
    border-radius: 0.4rem;
  }
}

/*イベントリード文*/
#gw_food .event_lead {
  background: #fff;
  padding: 0px 1rem 1.2rem 1.7rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.15rem;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  #gw_food .event_lead {
    font-size: 1rem;
    padding: 0px 1rem 0.8rem 1.55rem;
  }
}
@media screen and (max-width: 480px) {
  #gw_food .event_lead {
    font-size: 0.85rem;
    padding: 0px 1rem 0.8rem 1.4rem;
    line-height: 1.2rem;
  }
}

#gw_food .article_item_area {
  margin: -0.5rem auto 0;
  padding: 0px 1rem 1.1rem;
  text-align: center;
}

#gw_food .article_item_area img {
  width: 65%;
}
@media screen and (max-width: 768px) {
  #gw_food .article_item_area img {
    width: 85%;
  }
}
@media screen and (max-width: 480px) {
  #gw_food .article_item_area {
    margin: 0rem auto 0;
    padding: 1rem 1rem 0.7rem;
  }
  #gw_food .article_item_area img {
    width: 100%;
  }
}
/*---------------------------

各店舗情報エリア

---------------------------*/
.store_info_area {
  margin: 2.5rem auto;
  text-align: center;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 0.25rem;
  box-sizing: border-box;
  z-index: 2;
  position: relative;
}

@media screen and (max-width: 768px) {
  .store_info_area {
    margin: 1.5rem auto;
  }
}

/*各店舗吹き出し*/
#gw_food .store_name {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #212121;
  margin: 0 0 0.5rem;
  line-height: 1.5rem;
}

#gw_food .store_name::before,
#gw_food .store_name::after {
  width: 3px;
  height: 25px;
  background-color: #212121;
  content: '';
}

#gw_food .store_name::before {
  transform: rotate(-35deg);
  margin-right: 30px;
}

#gw_food .store_name::after {
  transform: rotate(35deg);
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  #gw_food .store_name {
    font-size: 14px;
  }
  #gw_food .store_name::before,
  #gw_food .store_name::after {
    width: 2px;
  }  
}

/*各店舗ロゴ*/
#gw_food .store_logo img {
  width: 35%;
}

#gw_food .edge .store_logo img,
#gw_food .azamino .store_logo img,
#gw_food .kosugi_fs .store_logo img {
  width: 45%;
}

#gw_food .store_logo {
  background: #fff;
  width: 30%;
  border-radius: 100vh;
  margin: 0 auto;
  padding: 1rem 0.7rem 0.5rem;
}

@media screen and (max-width: 768px) {
  /*エッジ・武蔵小杉・あざみ野　ロゴ*/
  #gw_food .edge .store_logo img,
  #gw_food .azamino .store_logo img,
  #gw_food .kosugi_fs .store_logo img {
    width: 50%;
  }
  /*各店舗ロゴ*/
  #gw_food .store_logo {
    width: 55%;
  }  
}

@media screen and (max-width: 480px) {
  /*エッジ・武蔵小杉・あざみ野　ロゴ*/
  #gw_food .edge .store_logo img,
  #gw_food .azamino .store_logo img,
  #gw_food .kosugi_fs .store_logo img {
    width: 60%;
  }
  /*各店舗ロゴ*/
  #gw_food .store_logo {
    width: 50%;
  }
}

/*各店イベントボタン*/
.event_btn,
.gray_btn {
  margin: 0.7rem auto 0;
  width: 40%;
  justify-content: center;
  letter-spacing: 0.3rem;
}

.event_btn a,
.gray_btn a {
  background: #45a876;
  border: 0.5rem solid #fff;
  border-radius: 100vh;
  position: relative;
  display: flex;
  justify-content: space-around;
  padding: 1.5rem 2rem;
  text-decoration: none;
  color: #fff;
  line-height: 1.8;
  transition: 0.3s ease-in-out;
}

.event_btn a::after {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 8%;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}

.event_btn a:hover:after {
  right: 1.4rem;
}

@media screen and (max-width: 768px) {
  /*各店イベントボタン*/
  .event_btn,
  .gray_btn {
    width: 85%;
  }
}
@media screen and (max-width: 480px) {
  .event_btn a,
  .gray_btn a {
    border: 0.33rem solid #fff;
    padding: 1.2rem 2rem;
    font-size: 14.5px;
  }
}

/*Comming Soon…ボタン*/
.gray_btn a {
  background: #808080;
}

/*----------------------------
deco
----------------------------*/
/*deco 共通*/
#gw_food .deco {
  position: absolute;
  object-fit: contain;
  z-index: 2;
}
/*deco 共通*/
#gw_food .edge .deco {
  bottom: 0;
}
/*----------------------------
渋谷FS
----------------------------*/
/*human_01*/
#gw_food .human_01 {
  top: 0;
  right: 0;
  transform: translateX(-11%) translateY(-55%);
  height: 55%;
  aspect-ratio: 310 / 550;
  background: url(/tokyufoodshow/gw_foodevent/image/human_01.webp) no-repeat bottom right / contain;
}

@media screen and (max-width: 1100px) {
  /*human_01*/
  #gw_food .human_01 {
    transform: translateX(-20%) translateY(-70%);
    height: 42%;
  }
}

@media screen and (max-width: 768px) {
  /*human_01*/
  #gw_food .human_01 {
    transform: translateX(-5%) translateY(-80%);
    height: 30%;
  }
}
@media screen and (max-width: 480px) {
  /*human_01*/
  #gw_food .human_01 {
    transform: translateX(-5%) translateY(-85%);
    height: 25%;
  }
}

/*----------------------------
エッジ
----------------------------*/
/*tomato*/
#gw_food .tomato {
  left: 0;
  transform: translateX(15%) translateY(-23%);
  height: 25%;
  aspect-ratio: 230 / 230;
  background: url(/tokyufoodshow/gw_foodevent/image/tomato.webp) no-repeat bottom right / contain;
}

@media screen and (max-width: 1100px) {
  /*tomato*/
  #gw_food .tomato {
    transform: translateX(0%) translateY(-40%);
  }
}
@media screen and (max-width: 768px) {
  /*tomato*/
  #gw_food .tomato {
    transform: translateX(10%) translateY(-128%);
    height: 10%;
  }
}
@media screen and (max-width: 480px) {
  /*tomato*/
  #gw_food .tomato {
    transform: translateX(15%) translateY(-100%);
    height: 9.2%;
  }
}

/*cake*/
#gw_food .cake {
  right: 0;
  transform: translateX(5%) translateY(40%);
  height: 23%;
  aspect-ratio: 1 / 1;
  background: url(/tokyufoodshow/gw_foodevent/image/cake.webp) no-repeat bottom right / contain;
}
@media screen and (max-width: 1100px) {
  /*cake*/
  #gw_food .cake {
    transform: translateX(-5%) translateY(30%);
    /* height: 35%; */
  }
}
@media screen and (max-width: 768px) {
  /*cake*/
  #gw_food .cake {
    transform: translateX(-17%) translateY(129%);
    height: 10%;
  }
}
@media screen and (max-width: 480px) {
  /*cake*/
  #gw_food .cake {
    transform: translateX(-17%) translateY(129%);
    height: 9.5%;
  }
}

/*----------------------------
あざみ野
----------------------------*/
/*human_02*/
#gw_food .human_02 {
  top: 0;
  left: 0;
  transform: translateX(10%) translateY(-122%);
  height: 40%;
  aspect-ratio: 350 / 570;
  background: url(/tokyufoodshow/gw_foodevent/image/human_02.webp) no-repeat bottom right / contain;
}

@media screen and (max-width: 1100px) {
  /*human_02*/
  #gw_food .human_02 {
    transform: translateX(15%) translateY(-135%);
    height: 37%;
  }
}

@media screen and (max-width: 768px) {
  /*human_02*/
  #gw_food .human_02 {
    display: none;
  }
}

/*cabbage*/
#gw_food .cabbage {
  bottom: 0;
  right: 0;
  transform: translateX(10%) translateY(10%);
  height: 25%;
  aspect-ratio: 1 / 1;
  background: url(/tokyufoodshow/gw_foodevent/image/cabbage.webp) no-repeat bottom right / contain;
}

@media screen and (max-width: 1100px) {
  /*cabbage*/
  #gw_food .cabbage {
    transform: translateX(-5%) translateY(-50%);
    height: 18%;
  }
}
@media screen and (max-width: 768px) {
  /*cabbage*/
  #gw_food .cabbage {
    transform: translateX(-10%) translateY(135%);
    height: 13%;
  }
}
@media screen and (max-width: 480px) {
  /*cabbage*/
  #gw_food .cabbage {
    height: 10%;
    transform: translateX(-15%) translateY(100%);
  }
}

/*----------------------------
あざみ野
----------------------------*/
/*canele*/
#gw_food .canele {
  bottom: 0;
  left: 0;
  transform: rotate(-0.03turn)translateX(10%) translateY(5%);
  height: 23%;
  aspect-ratio: 1 / 1;
  background: url(/tokyufoodshow/gw_foodevent/image/canele.webp) no-repeat bottom right / contain;
}

@media screen and (max-width: 1100px) {
  /*canele*/
  #gw_food .canele {
    transform: rotate(-0.03turn)translateX(20%) translateY(-20%);
    height: 20%;
  }
}

@media screen and (max-width: 768px) {
  /*canele*/
  #gw_food .canele {
    transform: rotate(-0.03turn)translateX(35%) translateY(-89%);
    height: 10%;
  }
}
@media screen and (max-width: 480px) {
  /*canele*/
  #gw_food .canele {
    transform: rotate(-0.03turn)translateX(38%) translateY(-120%);
    height: 9%;
  }
}

/*----------------------------
渋谷FS
----------------------------*/
/*human_03*/
#gw_food .human_03 {
  bottom: 0;
  right: 0;
  transform: translateX(-50%) translateY(40%);
  height: 50%;
  aspect-ratio: 310 / 550;
  background: url(/tokyufoodshow/gw_foodevent/image/human_03.webp) no-repeat bottom right / contain;
}

@media screen and (max-width: 1100px) {
  /*human_03*/
  #gw_food .human_03 {
    transform: translateX(-10%) translateY(25%);
  }
}

@media screen and (max-width: 768px) {
  /*human_03*/
  #gw_food .human_03 {
    display: none;
  }
}
/*----------------------------

大型店舗

----------------------------*/
#others_store {
    background: #5db6ae;
    margin: -5rem auto 0;
    position: relative;
    z-index: 3;
}

.others_store_flex {
    display: flex;
    flex-wrap: wrap;
    gap: 22.5rem 100px;
    justify-content: center;
    padding: 13rem 6rem 10rem;
    box-sizing: border-box;
}

.others_store_box {
    width: calc((100% - 200px) / 3 );
    text-align: center;
    box-sizing: border-box;
}

.others_store_logo {
    border-radius: 100%;
    position: relative;
}

p.others_store_name {
    margin-top: 1rem;
    font-size: 20px;
    font-family: "dnp-shuei-mgothic-std", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    line-height: 1.7rem;
}

.others_store_logo img {
    border-radius: 100%;
}

@media screen and (max-width: 1200px) {
  .others_store_flex {
    gap: 13rem 100px;
    padding: 10rem 3.5rem 10rem;
  }
}
@media screen and (max-width: 900px) {
  .others_store_flex {
    gap: 8.5rem 60px;
    padding: 7.5rem 3rem 6.5rem;
  }

  .others_store_box {
    width: calc((100% - 120px) / 3 );
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  #others_store {
      margin: -3.95rem auto 0;
  }
  .others_store_flex {
      gap: 60px 30px;
      padding: 7rem 2.5rem 6.5rem;
  }

  .others_store_box {
      width: calc((100% - 30px) / 2 );
      text-align: center;
  }
}

@media screen and (max-width: 480px) {
  #others_store {
      margin: -2.5rem auto 0;
  }
  p.others_store_name {
    margin-top: 1rem;
    font-size: 15px;
    line-height: 1.2rem;
  }
  .others_store_flex {
      gap: 1.5rem 30px;
      padding: 5rem 1.8rem 5rem;
  }
}
/*CLICK*/
.others_store_logo::before {
    letter-spacing: 2px;
    content: "CLICK";
    position: absolute;
    background: #e2951a;
    padding: 0.3rem 30px;
    display: inline-block;
    color: #fff;
    bottom: 9rem;
    right: 50%;
    transform: translateY(250%) translateX(50%);
    box-sizing: border-box;
    text-align: center;
    border-radius: 100vh;
}

@media screen and (max-width: 1200px) {
  /*CLICK*/
  .others_store_logo::before {
      bottom: 8rem;
    transform: translateY(280%) translateX(50%);
  }
}
@media screen and (max-width: 768px) {
  /*CLICK*/
  .others_store_logo::before {
      letter-spacing: 1.2px;
      content: "TAP";
      bottom: 40%;
      transform: translateY(190%) translateX(50%);
  }
}

.others_store_fix {
  position: relative;
}
.others_store_fix::before {
  background: url(/tokyufoodshow/gw_foodevent/image/rail.webp) no-repeat bottom right / contain;
  margin: 0 auto 0;
  position: absolute;
  display: block;
  visibility: visible;
  content: "";
  aspect-ratio: 1921 / 1584;
  width: 100%;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .others_store_fix::before {
    background: url(/tokyufoodshow/gw_foodevent/image/rail_tb.webp) no-repeat bottom right / contain;
    aspect-ratio: 769 / 1038;
    transform: translateY(12%);
  }  
}

/*----------------------------

クーポンアンカーボタン

----------------------------*/
.fixed {
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 10;
}

.button-20 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background-color: #4f4f4f;
}

.button-20:hover {
    border: 1px solid #4f4f4f;
    background-color: #fff;
}

.button-20:hover path {
  fill: #4f4f4f;
}



