@charset "Shift_JIS";

/* --------------------------------------------------------------------
【PC】「あったまるお鍋」ページ用CSS / .mainframe_ .hotpot
--------------------------------------------------------------------- */

/* ナビメニュー（#navi_menu）
================================================== */
.mainframe_ .hotpot #navi_menu {
  margin-top: 40px;
}

.mainframe_ .hotpot #navi_menu ul {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, 1fr);
}

.mainframe_ .hotpot #navi_menu ul li a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70px;
  padding: 10px 0 15px;
  background: #743a0f;
  border: 1px solid #743a0f;
  border-radius: 3px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  box-shadow: 0 2px 3px 0 rgb(61, 61, 61, 15%);
}

.mainframe_ .hotpot #navi_menu ul li a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  width: 8px;
  height: 8px;
  border-right: solid 1px #fff;
  border-bottom: solid 1px #fff;
  transform: rotate(45deg);
}

/* マウスオーバー */
.mainframe_ .hotpot #navi_menu ul li a:hover {
  background: #fff;
  color: #000;
  opacity: 1;
  border-color: #975c08;
}

.mainframe_ .hotpot #navi_menu ul li a:hover::after {
  border-color: #975c08;
}

/* --------------------------------------------------------------------
イベント出力コンテンツ（.event_）
--------------------------------------------------------------------- */

/* 各イベントブロックの余白 */
.mainframe_ .event_ .free_space5 {
  margin: 40px 0 20px;
  padding-top: 20px;
}

/* 一番上のタイトルの余白 */
.mainframe_ .event_ .free_space5:first-of-type {
  margin-top: 20px;
}

/* タブ切り替えコンテンツ（.js-tab-switch）(JS連動コンテンツ) */
.mainframe_ .event_ .free_space5 .js-tab-switch div {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: auto;
}

/* 切り替えボタン */
.mainframe_ .event_ .free_space5 .js-tab-switch button {
  width: 100%;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

.mainframe_ .event_ .free_space5 .js-tab-switch button * {
  pointer-events: none;
}

.mainframe_ .event_ .free_space5 .js-tab-switch button a {
  position: relative;
  display: flex;
  flex-direction: column;
  place-content: center;
  height: 80px;
  border-bottom: 4px solid #efefef;
  font-size: 2.6rem;
  font-weight: bold;
  color: #ccc;
  text-decoration: none;
  opacity: 1;
  letter-spacing: 0.08em;
  transition: border-bottom 0.3s ease, color 0.3s ease;
}

/* アクティブ状態の管理（お肉派） */
.mainframe_ .event_ .free_space5 .js-tab-switch button#meat.active-item a {
  border-color: #d22319;
  color: #d22319;
}

/* アクティブ状態の管理（海鮮派） */
.mainframe_ .event_ .free_space5 .js-tab-switch button#seafood.active-item a {
  border-color: #004191;
  color: #004191;
}

/* タイトル */
.mainframe_ .event_ .free_space5 .goods_title {
  display: flex;
  flex-direction: column;
}

.mainframe_ .event_ .free_space5 .goods_title h2 {
  position: relative;
  display: inline-block;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  color: #000;
  letter-spacing: 0.1rem;
}

.mainframe_ .free_space5 .goods_title h2 > span {
  position: relative;
}

/* タイトル装飾 */
.mainframe_ .free_space5 .goods_title h2 > span::before,
.mainframe_ .free_space5 .goods_title h2 > span::after {
  content: '';
  position: absolute;
  top: -20px;
  display: block;
  height: 50px;
  aspect-ratio: 100/170;
}

.mainframe_ .free_space5 .goods_title h2 > span::before {
  left: -50px;
  background: url("/contents/proper/foods/event/hotpot/2025/img/title-bg01.png") center center / cover no-repeat;
  transform: rotate(25deg);
}

.mainframe_ .free_space5 .goods_title h2 > span::after {
  right: -50px;
  background: url("/contents/proper/foods/event/hotpot/2025/img/title-bg02.png") center center / cover no-repeat;
  transform: rotate(-25deg);
}

/* 挿し色 */
.mainframe_ .event_ .free_space5 .goods_title .c_set1 {
  color: #F1AA00;
}

.mainframe_ .event_ .free_space5 .goods_title .c_set2 {
  color: #d22319;
}

.mainframe_ .event_ .free_space5 .goods_title .c_set3 {
  color: #004191;
}

/* タイトルのリード文 */
.mainframe_ .event_ .free_space5 .goods_title p {
  margin-top: 10px;
  font-size: 1.6rem;
  line-height: 1.4;
  text-align: center;
}

/* 【PC】商品カード(.event_  .goods_  ul.StyleS_Frame_) 商品表示モード：リスト */
.mainframe_ .event_ .goods_  ul.StyleS_Frame_ {
  display: grid;
  gap: 20px 15px;
  grid-template-columns: repeat(4, 1fr);
}

.mainframe_ .event_ .goods_  ul.StyleS_Frame_ li {
  display: flex;
  flex-direction: column;
  min-height: 340px;
  border: none;
}

.mainframe_ .event_ .goods_  ul.StyleS_Frame_ li img {
  width: 100%;
}

/* 商品名 */
.mainframe_ .event_ .goods_  ul.StyleS_Frame_ li .name_ {
  display: block;
  margin-top: 10px;
  font-size: 1.5rem;
  line-height: 1.4;
  color: #000;
}

.mainframe_ .event_ .goods_  ul.StyleS_Frame_ li .name_ a {
  text-decoration: none;
}

/* 値段 */
.mainframe_ .event_ .goods_  ul.StyleS_Frame_ li .price_ {
  display: flex;
  justify-content: flex-end;
  align-items: end;
  flex-grow: 1;
  margin-top: 10px;
  font-size: 1.6rem;
  text-align: right;
  color: #000;
}

.mainframe_ .event_ .goods_  ul.StyleS_Frame_ li .price_::after {
  content: '(税込)';
  font-size: 1.4rem;
  color: #000;
}

/* コメント文 */
.mainframe_ .event_ .goods_  ul.StyleS_Frame_ li .small_ {
  display: none;
}

/* --------------------------------------------------------------------
【PC】下部回遊エリア(フリースペース2・4)
--------------------------------------------------------------------- */

/* 別タブへの遷移ボタン(.tab-switch_wrap)
================================================== */
.mainframe_ .tab-switch_wrap {
  position: relative;
  width: 100%;
  height: 80px;
}

.mainframe_ .tab-switch_wrap .tab-switch {
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-block;
  margin: 20px;
}

.mainframe_ .tab-switch_wrap .tab-switch button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.mainframe_ .tab-switch_wrap .tab-switch a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  color: #222;
  text-decoration: none;
}

.mainframe_ .tab-switch_wrap .tab-switch a::after {
  content: '▲';
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  aspect-ratio: 1;
  margin-left: 10px;
  border-radius: 999px;
  text-align: center;
  transition: all 0.3s ease;
}

/* 別タブへ（お肉派） */
.mainframe_ .tab-switch_wrap .tab-switch.meat a::after {
  background: #004191;
  border: 1px solid #004191;
  color: #f7f7f7;
}

.mainframe_ .tab-switch_wrap .tab-switch.meat a:hover::after {
  background: #fff;
  color: #004191;
}

/* 別タブへ（海鮮派） */
.mainframe_ .tab-switch_wrap .tab-switch.seafood a::after {
  background: #d22319;
  border: 1px solid #d22319;
  color: #f7f7f7;
}

.mainframe_ .tab-switch_wrap .tab-switch.seafood a:hover::after {
  background: #fff;
  color: #d22319;
}

/* 価格から探す（#price_navi_wrap）
================================================== */
.mainframe_ #price_navi_wrap {
  position: relative;
  margin-top: 60px;
  padding: 120px 10px;
  background: url("/contents/proper/foods/event/hotpot/2025/img/bg.jpg") center center / 230px repeat;
}

/* タイトル装飾 */
.mainframe_ #price_navi_wrap::before,
.mainframe_ #price_navi_wrap::after {
  content: '';
  position: absolute;
  z-index: 0;
  display: block;
  margin: 10px;
}

/* タイトル装飾（具材） */
.mainframe_ #price_navi_wrap::before {
  top: 0;
  left: 0;
  width: 200px;
  aspect-ratio: 170/130;
  background: url("/contents/proper/foods/event/hotpot/2025/img/title-bg05.png") center center / cover no-repeat;
}

/* タイトル装飾（鍋） */
.mainframe_ #price_navi_wrap::after {
  right: 0;
  bottom: 0;
  height: 200px;
  aspect-ratio: 130/140;
  background: url("/contents/proper/foods/event/hotpot/2025/img/title-bg06.png") center center / cover no-repeat;
}

.mainframe_ #price_navi_wrap .title_box {
  text-align: center;
}

.mainframe_ #price_navi_wrap .title_box .inner h2 {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
  color: #4b3838;
  letter-spacing: 0.1rem;
}

.mainframe_ #price_navi_wrap .title_box .inner p {
  margin-top: 10px;
  color: #222;
}

/* ボタン：価格リスト */
.mainframe_ #price_navi_wrap ul {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  margin-top: 20px;
}

.mainframe_ #price_navi_wrap ul li a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 70px;
  padding: 0 20px 0 5px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: left;
  text-decoration: none;
  color: #222;
  box-shadow: 0 2px 3px 0 rgb(61, 61, 61, 15%);
}

.mainframe_ #price_navi_wrap ul li a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  width: 10px;
  height: 10px;
  border-right: solid 1px #222;
  border-bottom: solid 1px #222;
  transform: translateY(-50%) rotate(-45deg);
}

/* マウスオーバー */
.mainframe_ #price_navi_wrap ul li a:hover {
  border: 1px solid #F1AA00;
  opacity: 1;
}

.mainframe_ #price_navi_wrap ul li a:hover::after {
  border-right: solid 1px #F1AA00;;
  border-bottom: solid 1px #F1AA00;;
}

/* ボタン：すべての商品を見る */
.mainframe_ #price_navi_wrap .btn_basic {
  margin-top: 40px;
}

.mainframe_ #price_navi_wrap .btn_basic a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70px;
  max-width: 400px;
  margin: 0 auto;
  background: #F1AA00;
  border: 1px solid #F1AA00;
  border-radius: 60px;
  font-size: 1.6rem;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 3px 0 rgb(61, 61, 61,15%);
  color: #fff;
}

.mainframe_ #price_navi_wrap .btn_basic a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  border-right: solid 1px #fff;
  border-bottom: solid 1px #fff;
  transform: translateY(-50%) rotate(-45deg);
}

.mainframe_ #price_navi_wrap .btn_basic a > span > span {
  font-weight: bold;
}

/* マウスオーバー */
.mainframe_ #price_navi_wrap .btn_basic a:hover {
  background: #fff !important;
  color: #000;
  opacity: 1;
}

.mainframe_ #price_navi_wrap .btn_basic a:hover::after {
  border-color: #000;
}

/* //TOPページ */

/* --------------------------------------------------------------------
【PC】商品一覧ページ（.hotpot_itemlist）
--------------------------------------------------------------------- */

/* 一番上のタイトルを消す */
.mainframe_ .m-title01_.m-title01_ev_ {
  display: none;
}

/* ヘッダー(.head)
================================================== */
.mainframe_ .hotpot_itemlist .head {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 160px;
  background: url("/contents/proper/foods/event/hotpot/2025/img/bg.jpg") center center / 230px repeat;
}

.mainframe_ .hotpot_itemlist .head .txt {
  position: relative;
  line-height: 1;
  text-align: center;
}

/* タイトル装飾 */
.mainframe_ .hotpot_itemlist .head .txt::before,
.mainframe_ .hotpot_itemlist .head .txt::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 110px;
  height: auto;
  aspect-ratio: 160 / 200;
  transform: translate(0, -50%);
}

/* タイトル装飾（左側） */
.mainframe_ .hotpot_itemlist .head .txt::before {
  left: -120px;
  background: url("/contents/proper/foods/event/hotpot/2025/img/title-bg03.png") center center / cover no-repeat;
}

/* タイトル装飾（右側） */
.mainframe_ .hotpot_itemlist .head .txt::after {
  right: -120px;
  background: url("/contents/proper/foods/event/hotpot/2025/img/title-bg04.png") center center / cover no-repeat;
}

/* タイトルテキスト */
.mainframe_ .hotpot_itemlist .head .txt span.txt_main {
  display: block;
  font-size: 3.2rem;
  font-weight: bold;
  color: #4b3838;
}

/* ナビメニュー（#navi_menu）
================================================== */
.mainframe_ .hotpot_itemlist #navi_menu {
  margin-top: 20px;
}

.mainframe_ .hotpot_itemlist #navi_menu ul {
  display: flex;
  justify-content: center;
  gap: 4px;
  width: 100%;
  border-bottom: 5px solid #743a0f;
}

.mainframe_ .hotpot_itemlist #navi_menu ul li {
  width: 100%;
}

.mainframe_ .hotpot_itemlist #navi_menu ul li a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70px;
  background: #fff;
  border: 1px solid #ded1d1;
  border-radius: 8px 8px 0 0;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  color: #743a0f;
  text-decoration: none;
}

.mainframe_ .hotpot_itemlist #navi_menu ul:has(  li.active-item) li a {
  border-bottom: none;
  border-radius: 8px 8px 0 0;
}

/* マウスオーバー */
.mainframe_ .hotpot_itemlist #navi_menu ul li a:hover {
  background: #F7EFE1;
  opacity: 1;
}

.mainframe_ .hotpot_itemlist #navi_menu ul li.active-item .note {
  background: #fff;
}

/* 【JS】アクティブボタン用CSS（.js-change-active-area）※active=ON
================================================== */

/* ナビボタン */
.mainframe_ #navi_menu.js-change-active-area ul .active-item {
  position: relative;
}

.mainframe_ #navi_menu.js-change-active-area ul .active-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0, 0%);
}

.mainframe_ #navi_menu.js-change-active-area ul .active-item a {
  background: #743a0f;
  border-color: #743a0f;
  color: #fff;
}

/* ボタン：トップに戻る */
.mainframe_ .hotpot_itemlist #around_button_wrap .btn_top {
  position: relative;
}

.mainframe_ .hotpot_itemlist #around_button_wrap .btn_top a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  max-width: 400px;
  margin: 0 auto;
  background: #F1AA00;
  border: 1px solid #F1AA00;
  border-radius: 60px;
  font-size: 1.6rem;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 3px 0 rgb(61, 61, 61,15%);
  color: #fff;
}

.mainframe_ .hotpot_itemlist #around_button_wrap .btn_top a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  border-right: solid 1px #fff;
  border-bottom: solid 1px #fff;
  transform: translateY(-50%) rotate(-45deg);
}

.mainframe_ .hotpot_itemlist #around_button_wrap .btn_top a > span > span {
  font-weight: bold;
}

/* マウスオーバー */
.mainframe_ .hotpot_itemlist #around_button_wrap .btn_top a:hover {
  background: #fff !important;
  color: #000;
  opacity: 1;
}

.mainframe_ .hotpot_itemlist #around_button_wrap .btn_top a:hover::after {
  border-color: #000;
}

/* //PC ここまで */


/* --------------------------------------------------------------------
【SP】「あったまるお鍋」ページ用CSS / .wrapper_:not(:has(.mainframe_)) .hotpot
--------------------------------------------------------------------- */

/* ナビメニュー（#navi_menu）
================================================== */
.wrapper_:not(:has(.mainframe_)) .hotpot #navi_menu {
  margin-top: 40px;
}

.wrapper_:not(:has(.mainframe_)) .hotpot #navi_menu ul {
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 3%;
}

.wrapper_:not(:has(.mainframe_)) .hotpot #navi_menu ul li a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70px;
  padding: 10px 0 15px;
  background: #743a0f;
  border: 1px solid #743a0f;
  border-radius: 3px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  box-shadow: 0 2px 3px 0 rgb(61, 61, 61, 15%);
}

.wrapper_:not(:has(.mainframe_)) .hotpot #navi_menu ul li a span.txt_sub {
  font-size: 1.2rem;
  font-weight: normal;
  letter-spacing: normal;
}

.wrapper_:not(:has(.mainframe_)) .hotpot #navi_menu ul li a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  width: 8px;
  height: 8px;
  border-right: solid 1px #fff;
  border-bottom: solid 1px #fff;
  transform: rotate(45deg);
}

/* --------------------------------------------------------------------
イベント出力コンテンツ（.event_）
--------------------------------------------------------------------- */

/* 各イベントブロックの余白 */
.wrapper_:not(:has(.mainframe_)) .event_ .free_space5 {
  margin: 40px 0 20px;
  padding-top: 40px;
}

/* 一番上のタイトルの余白 */
.wrapper_:not(:has(.mainframe_)) .event_ .free_space5:first-of-type {
  margin-top: 20px;
}

/* タブ切り替えコンテンツ（.js-tab-switch）(JS連動コンテンツ) */
.wrapper_:not(:has(.mainframe_)) .event_ .free_space5 .js-tab-switch div {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: auto;
}

/* 切り替えボタン */
.wrapper_:not(:has(.mainframe_)) .event_ .free_space5 .js-tab-switch button {
  width: 100%;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

.wrapper_:not(:has(.mainframe_)) .event_ .free_space5 .js-tab-switch button * {
  pointer-events: none;
}

.wrapper_:not(:has(.mainframe_)) .event_ .free_space5 .js-tab-switch button a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 80px;
  border-bottom: 4px solid #efefef;
  font-size: 2.4rem;
  font-weight: bold;
  color: #ccc;
  text-decoration: none;
  opacity: 1;
  letter-spacing: 0.08em;
  transition: border-bottom 0.3s ease, color 0.3s ease;
}

/* アクティブ状態の管理（お肉派） */
.wrapper_:not(:has(.mainframe_)) .event_ .free_space5 .js-tab-switch button#meat.active-item a {
  border-color: #d22319;
  color: #d22319;
}

/* アクティブ状態の管理（海鮮派） */
.wrapper_:not(:has(.mainframe_)) .event_ .free_space5 .js-tab-switch button#seafood.active-item a {
  border-color: #004191;
  color: #004191;
}

/* タイトル */
.wrapper_:not(:has(.mainframe_)) .event_ .free_space5 .goods_title {
  display: flex;
  flex-direction: column;
}

.wrapper_:not(:has(.mainframe_)) .event_ .free_space5 .goods_title h2 {
  position: relative;
  display: inline-block;
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
  color: #000;
  letter-spacing: 0.1rem;
}

.wrapper_:not(:has(.mainframe_)) .free_space5 .goods_title h2 > span {
  position: relative;
}

/* タイトル装飾 */
.wrapper_:not(:has(.mainframe_)) .free_space5 .goods_title h2 > span::before,
.wrapper_:not(:has(.mainframe_)) .free_space5 .goods_title h2 > span::after {
  content: '';
  position: absolute;
  top: -20px;
  display: block;
  height: 50px;
  aspect-ratio: 100/170;
}

.wrapper_:not(:has(.mainframe_)) .free_space5 .goods_title h2 > span::before {
  left: -50px;
  background: url("/contents/proper/foods/event/hotpot/2025/img/title-bg01.png") center center / cover no-repeat;
  transform: rotate(25deg);
}

.wrapper_:not(:has(.mainframe_)) .free_space5 .goods_title h2 > span::after {
  right: -50px;
  background: url("/contents/proper/foods/event/hotpot/2025/img/title-bg02.png") center center / cover no-repeat;
  transform: rotate(-25deg);
}

/* 挿し色 */
.wrapper_:not(:has(.mainframe_)) .event_ .free_space5 .goods_title .c_set1 {
  color: #F1AA00;
}

.wrapper_:not(:has(.mainframe_)) .event_ .free_space5 .goods_title .c_set2 {
  color: #d22319;
}

.wrapper_:not(:has(.mainframe_)) .event_ .free_space5 .goods_title .c_set3 {
  color: #004191;
}

/* タイトルのリード文 */
.wrapper_:not(:has(.mainframe_)) .event_ .free_space5 .goods_title p {
  margin-top: 10px;
  font-size: 1.6rem;
  line-height: 1.4;
  text-align: center;
}

/* 【SP】商品カード(.event_  .goods_  ul.goods_p_.goods_list_wrapper_) 商品表示モード：なし */
.wrapper_:not(:has(.mainframe_)) .event_ .goods_  ul.goods_p_.goods_list_wrapper_ {
  display: grid;
  gap: 30px 10px;
  grid-template-columns: repeat(2, 1fr);
  padding: 0 3%;
  border: none;
}

.wrapper_:not(:has(.mainframe_)) .event_ .goods_  ul.goods_p_.goods_list_wrapper_ li {
  padding: 0;
  border: none;
}

.wrapper_:not(:has(.mainframe_)) .event_ .goods_  ul.goods_p_.goods_list_wrapper_ li  a {
  padding: 0;
}

.wrapper_:not(:has(.mainframe_)) .event_ .goods_  ul.goods_p_.goods_list_wrapper_ .img_,
.wrapper_:not(:has(.mainframe_)) .event_ .goods_  ul.goods_p_.goods_list_wrapper_ img {
  display: block;
  width: 100%;
}

.wrapper_:not(:has(.mainframe_)) .event_ .goods_  ul.goods_p_.goods_list_wrapper_ .desc_ {
  display: block;
  padding: 0;
}

/* 商品名 */
.wrapper_:not(:has(.mainframe_)) .event_ .goods_  ul.goods_p_.goods_list_wrapper_ .desc_ .name_ {
  margin-top: 10px;
  font-size: 1.5rem;
  line-height: 1.4;
  color: #000;
  text-decoration: none;
}

/* 値段 */
.wrapper_:not(:has(.mainframe_)) .event_ .goods_  ul.goods_p_.goods_list_wrapper_ .desc_  .price_box .price_ {
  margin-top: 10px;
  font-size: 1.6rem;
  text-align: right;
  color: #000;
}

.wrapper_:not(:has(.mainframe_)) .event_ .goods_  ul.goods_p_.goods_list_wrapper_ .desc_  .price_box .price_::after {
  content: '(税込)';
  font-size: 1.4rem;
  color: #000;
}

/* コメント文 */
.wrapper_:not(:has(.mainframe_)) .event_ .goods_  ul.goods_p_.goods_list_wrapper_ .desc_ .small_ {
  display: none;
}

/* アイコン */
.wrapper_:not(:has(.mainframe_)) .event_ .goods_  ul.goods_p_.goods_list_wrapper_ .desc_  .icon_ {
  display: none;
}

/* --------------------------------------------------------------------
【SP】下部回遊エリア(フリースペース2・4)
--------------------------------------------------------------------- */

/* 別タブへの遷移ボタン(.tab-switch_wrap)
================================================== */
.wrapper_:not(:has(.mainframe_)) .tab-switch_wrap {
  position: relative;
  width: 100%;
  height: 80px;
}

.wrapper_:not(:has(.mainframe_)) .tab-switch_wrap .tab-switch {
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-block;
  margin: 20px;
}

.wrapper_:not(:has(.mainframe_)) .tab-switch_wrap .tab-switch button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.wrapper_:not(:has(.mainframe_)) .tab-switch_wrap .tab-switch a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  color: #222;
  text-decoration: none;
}

.wrapper_:not(:has(.mainframe_)) .tab-switch_wrap .tab-switch a::after {
  content: '▲';
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  aspect-ratio: 1;
  margin-left: 10px;
  border-radius: 999px;
  text-align: center;
  transition: all 0.3s ease;
}

/* 別タブへ（お肉派） */
.wrapper_:not(:has(.mainframe_)) .tab-switch_wrap .tab-switch.meat a::after {
  background: #004191;
  border: 1px solid #004191;
  color: #f7f7f7;
}

/* 別タブへ（海鮮派） */
.wrapper_:not(:has(.mainframe_)) .tab-switch_wrap .tab-switch.seafood a::after {
  background: #d22319;
  border: 1px solid #d22319;
  color: #f7f7f7;
}

/* 価格から探す（#price_navi_wrap）
================================================== */
.wrapper_:not(:has(.mainframe_)) #price_navi_wrap {
  position: relative;
  z-index: 0;
  margin-top: 60px;
  padding: 120px 3% 140px;
  background: url("/contents/proper/foods/event/hotpot/2025/img/bg.jpg") center center / 230px repeat;
}

/* タイトル装飾 */
.wrapper_:not(:has(.mainframe_)) #price_navi_wrap::before,
.wrapper_:not(:has(.mainframe_)) #price_navi_wrap::after {
  content: '';
  position: absolute;
  z-index: -1;
  display: block;
  margin: 10px 3%;
}

/* タイトル装飾（具材） */
.wrapper_:not(:has(.mainframe_)) #price_navi_wrap::before {
  top: 0;
  left: 0;
  height: clamp(100px, 20vw, 170px);
  max-height: 170px;
  min-height: 100px;
  aspect-ratio: 170/130;
  background: url("/contents/proper/foods/event/hotpot/2025/img/title-bg05.png") center center / cover no-repeat;
}

/* タイトル装飾（鍋） */
.wrapper_:not(:has(.mainframe_)) #price_navi_wrap::after {
  right: 0;
  bottom: 0;
  height: clamp(120px, 20vw, 170px);
  max-height: 170px;
  min-height: 120px;
  aspect-ratio: 130/140;
  background: url("/contents/proper/foods/event/hotpot/2025/img/title-bg06.png") center center / cover no-repeat;
}

.wrapper_:not(:has(.mainframe_)) #price_navi_wrap .title_box {
  margin: 0 0 20px;
  text-align: center;
}

.wrapper_:not(:has(.mainframe_)) #price_navi_wrap .title_box .inner h2 {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1;
  color: #000;
  letter-spacing: 0.1rem;
}

.wrapper_:not(:has(.mainframe_)) #price_navi_wrap .title_box .inner p {
  margin-top: 10px;
  font-size: 1.6rem;
  color: #222;
}

/* ボタン：価格リスト */
.wrapper_:not(:has(.mainframe_)) #price_navi_wrap ul {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(1, 1fr);
  width: 100%;
}

.wrapper_:not(:has(.mainframe_)) #price_navi_wrap ul li a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  padding: 10px 0;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  color: #222;
  box-shadow: 0 2px 3px 0 rgb(61, 61, 61, 15%);
}

.wrapper_:not(:has(.mainframe_)) #price_navi_wrap ul li a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  width: 10px;
  height: 10px;
  border-right: solid 1px #222;
  border-bottom: solid 1px #222;
  transform: translateY(-50%) rotate(-45deg);
}

/* ボタン：すべての商品を見る */
.wrapper_:not(:has(.mainframe_)) #price_navi_wrap .btn_basic a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  max-width: 400px;
  margin: 0 auto;
  background: #F1AA00;
  border: 1px solid #F1AA00;
  border-radius: 60px;
  font-size: 1.6rem;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 3px 0 rgb(61, 61, 61,15%);
  color: #fff;
}

.wrapper_:not(:has(.mainframe_)) #price_navi_wrap .btn_basic a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  border-right: solid 1px #fff;
  border-bottom: solid 1px #fff;
  transform: translateY(-50%) rotate(-45deg);
}

.wrapper_:not(:has(.mainframe_)) #price_navi_wrap .btn_basic {
  width: 90%;
  margin: 0 auto;
  padding: 20px 0 0;
}

.wrapper_:not(:has(.mainframe_)) #price_navi_wrap .btn_basic a > span > span {
  font-weight: bold;
}

/* //TOPページ */

/* --------------------------------------------------------------------
【SP】商品一覧ページ（.hotpot_itemlist）
--------------------------------------------------------------------- */

/* 一番上のタイトルを消す */
.wrapper_:not(:has(.mainframe_)) .m-title01_.m-title01_ev_ {
  display: none;
}

/* ヘッダー(.head)
================================================== */
.wrapper_:not(:has(.mainframe_)) .hotpot_itemlist .head {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  background: url("/contents/proper/foods/event/hotpot/2025/img/bg.jpg") center center / 230px repeat;
}

.wrapper_:not(:has(.mainframe_)) .hotpot_itemlist .head .txt {
  position: relative;
  line-height: 1;
  text-align: center;
}

/* タイトル装飾 */
.wrapper_:not(:has(.mainframe_)) .hotpot_itemlist .head .txt::before,
.wrapper_:not(:has(.mainframe_)) .hotpot_itemlist .head .txt::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 60px;
  height: auto;
  aspect-ratio: 160 / 200;
  transform: translate(0, -50%);
}

/* タイトル装飾（左側） */
.wrapper_:not(:has(.mainframe_)) .hotpot_itemlist .head .txt::before {
  left: -65px;
  background: url("/contents/proper/foods/event/hotpot/2025/img/title-bg03.png") center center / cover no-repeat;
}

/* タイトル装飾（右側） */
.wrapper_:not(:has(.mainframe_)) .hotpot_itemlist .head .txt::after {
  right: -65px;
  background: url("/contents/proper/foods/event/hotpot/2025/img/title-bg04.png") center center / cover no-repeat;
}

/* タイトルテキスト */
.wrapper_:not(:has(.mainframe_)) .hotpot_itemlist .head .txt span.txt_main {
  display: block;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.4;
  color: #4b3838;
}

/* ナビメニュー（#navi_menu）
================================================== */
.wrapper_:not(:has(.mainframe_)) .hotpot_itemlist #navi_menu {
  margin-top: 20px;
}

.wrapper_:not(:has(.mainframe_)) .hotpot_itemlist #navi_menu ul {
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 3%;
}

.wrapper_:not(:has(.mainframe_)) .hotpot_itemlist #navi_menu ul li:first-child {
  grid-column: 1 / -1;
}

.wrapper_:not(:has(.mainframe_)) .hotpot_itemlist #navi_menu ul li {
  width: 100%;
}

.wrapper_:not(:has(.mainframe_)) .hotpot_itemlist #navi_menu ul li a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70px;
  padding: 10px 0 15px;
  background: #fff;
  border: 1px solid #743a0f;
  border-radius: 3px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  color: #743a0f;
  text-decoration: none;
}

.wrapper_:not(:has(.mainframe_)) .hotpot_itemlist #navi_menu ul li a span.txt_sub {
  font-size: 1.2rem;
  font-weight: normal;
  letter-spacing: normal;
}

.wrapper_:not(:has(.mainframe_)) .hotpot_itemlist #navi_menu ul li a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  width: 8px;
  height: 8px;
  border-right: solid 1px #743a0f;
  border-bottom: solid 1px #743a0f;
  transform: rotate(45deg);
}

/* 【JS】アクティブボタン用CSS（.js-change-active-area）※active=ON
================================================== */

/* ナビボタン */
.wrapper_:not(:has(.mainframe_)) #navi_menu.js-change-active-area ul .active-item {
  position: relative;
}

.wrapper_:not(:has(.mainframe_)) #navi_menu.js-change-active-area ul .active-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0, 0%);
}

.wrapper_:not(:has(.mainframe_)) #navi_menu.js-change-active-area ul .active-item a {
  background: #743a0f;
  border-color: #743a0f;
  color: #fff;
}

.wrapper_:not(:has(.mainframe_)) .hotpot_itemlist #navi_menu ul .active-item a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  width: 8px;
  height: 8px;
  border-right: solid 1px #fff;
  border-bottom: solid 1px #fff;
  transform: rotate(45deg);
}


/* タイトル（#title_list） */
.wrapper_:not(:has(.mainframe_)) .hotpot_itemlist #title_list {
  margin-top: 20px;
  border-top: 4px solid #743a0f;
  border-bottom: 1px solid #743a0f;
}

.wrapper_:not(:has(.mainframe_)) .hotpot_itemlist #title_list p {
  padding: 10px 0;
  font-size: 2.0rem;
  font-weight: bold;
  text-align: center;
  color: #743a0f;
}

.wrapper_:not(:has(.mainframe_)) #title_list.js-change-active-area p {
  display: none;
}

.wrapper_:not(:has(.mainframe_)) #title_list.js-change-active-area p.active-item {
  display: block;
}

/* ボタン：トップに戻る
================================================== */
.wrapper_:not(:has(.mainframe_)) .hotpot_itemlist #around_button_wrap .btn_top {
  position: relative;
  z-index: 1;
  width: 90%;
  margin: 0 auto;
}

.wrapper_:not(:has(.mainframe_)) .hotpot_itemlist #around_button_wrap .btn_top a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  max-width: 400px;
  margin: 0 auto;
  background: #F1AA00;
  border: 1px solid #F1AA00;
  border-radius: 60px;
  font-size: 1.6rem;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 3px 0 rgb(61, 61, 61, 15%);
  color: #fff;
}

.wrapper_:not(:has(.mainframe_)) .hotpot_itemlist #around_button_wrap .btn_top a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  border-right: solid 1px #fff;
  border-bottom: solid 1px #fff;
  transform: translateY(-50%) rotate(-45deg);
}

.wrapper_:not(:has(.mainframe_)) .hotpot_itemlist #around_button_wrap .btn_top a > span > span {
  font-weight: bold;
}

/* //SP ここまで */