@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');
/*基本設定*/ :root {
  --panfes-txt-color: #7c2201; /*ブラウン*/
  --panfes-color: #e94709; /*オレンジ*/
  --panfes-color-sub: #e50060; /*ピンク*/
}
/*----------------------------------------
PC/SP共通
----------------------------------------*/
　　/*loading*/
  /* 初期状態 */
  body {
    opacity: 0;
    transition: opacity 0.8s ease;
	
  }

body.pc.view{background: #fffcd3;}

  body.is-loaded {
    opacity: 1;
  }

  /* Loading画面 */
  #loading {
    position: fixed;
    inset: 0;
    background: #fffcd3;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease;
  }

  #loading.is-hide {
    opacity: 0;
    pointer-events: none;
  }

#loading img {
  width: 120px;
  animation: poyo 1.8s ease-in-out infinite;
}

@keyframes poyo {
  0% {
    transform: scale(1);
  }

  20% {
    transform: scale(1.08, 0.92);
  }

  40% {
    transform: scale(0.92, 1.08);
  }

  60% {
    transform: scale(1.04, 0.96);
  }

  80% {
    transform: scale(0.98, 1.02);
  }

  100% {
    transform: scale(1);
  }
}

/*ヘッダーフッター削除*/
body.panfes #main_header, body.panfes .footer.shopsearch, body.panfes .bnrArea, body.panfes .colGuide, body.panfes footer, body.panfes #contents > h2::after, body.panfes #contents .p_title h2::after {
  display: none;
}


body.panfes.view.pc #contents {
  position: relative;
  background: url(bg_con.jpg) no-repeat;
  background-attachment: fixed;
  background-position: center top;
}

body.panfes #contents-main > .inner {
  width: 480px;
  margin: 0 auto;
  padding: 90px 24px 10px;
  background: url(bg.png) no-repeat center top #f7c6d2;
  background-size: 100% auto;
  border-left: 1px solid var(--panfes-txt-color);
  border-right: 1px solid var(--panfes-txt-color);
}

body.panfes .lead {
  color: var(--panfes-color-sub);
  line-height: 1.6em;
  font-size: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid #fff;
  border-radius: 10px;
  margin: 20px 0 0;
  padding: 16px 20px;
  font-weight: 700;
  text-align: center;
}
body.panfes h1 {
  width: 94%;
  margin: 0 auto;
	text-align: center;
}
body.panfes h1 img{
aspect-ratio: 160 / 209;}
/*shoplist*/
body.panfes #panfes_shoplist {
  margin: 24px auto;
}
body.panfes #panfes_shoplist .search {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  color: var(--panfes-txt-color);
}
body.panfes #panfes_shoplist .search .settit::before {
  font-family: "Font Awesome 5 Free";
  content: "\f002";
  font-size: 16px;
  margin: 0 8px 0 -20px;
  font-weight: bold;
  padding: 16px 0 2px;
}
body.panfes #panfes_shoplist .search .button {
  display: flex;
  gap: 6px;
  margin: 8px 0 16px;
  padding: 0;
  list-style: none;
}
body.panfes #panfes_shoplist .search .button button {
  width: calc((100% - 24px) / 3);
  cursor: pointer;
  font-size: 18px;
  line-height: 46px;
  font-weight: bold;
  color: var(--panfes-color);
  border: 2px solid var(--panfes-color);
  border-radius: 999px;
  background: #fff;
  font-family: "Montserrat", sans-serif;
}
body.panfes #panfes_shoplist .search .button button.active {
  background: var(--panfes-color);
  color: #fff;
  position: relative;
}
body.panfes #panfes_shoplist .search .button button.active::after {
  font-family: "Font Awesome 5 Free", "Rozha One", serif;
  font-size: 30px;
  line-height: 0;
  font-weight: bold;
  content: "\f0d7";
  color: var(--panfes-color);
  margin-bottom: 8px;
  display: block;
  position: absolute;
  bottom: -10px;
  left: 0;
  text-align: center;
  width: 100%;
}
body.panfes #panfes_shoplist .shoplist {
  opacity: 1;
  transition: opacity 0.25s ease;
}
body.panfes #panfes_shoplist .shoplist.is-hide {
  opacity: 0;
}
body.panfes #panfes_shoplist .shoplist .item {
  position: relative;
  background: url("bg_shop_center1.png") top center / 100% auto repeat-y;
  margin: 0 0 20px;
  padding: 44px 45px 30px 36px;
}
/* top */
body.panfes #panfes_shoplist .shoplist .item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 595 / 160;
  background:
    url("bg_shop_top1.png") top center / 100% auto no-repeat;
  z-index: 2;
}
/* bottom */
body.panfes #panfes_shoplist .shoplist .item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  aspect-ratio: 595 / 60;
  background:
    url("bg_shop_bottom1.png") bottom center / 100% auto no-repeat;
  z-index: 2;
}

/*背景の切り替え*/

body.panfes #panfes_shoplist .shoplist .item:nth-of-type(odd) {
  background: url("bg_shop_center3.png") top center / 100% auto repeat-y;
}
/* top */
body.panfes #panfes_shoplist .shoplist .item:nth-of-type(odd)::before {
  background:
    url("bg_shop_top3.png") top center / 100% auto no-repeat;
}
body.panfes #panfes_shoplist .shoplist .item:nth-of-type(odd)::after {
  background:
    url("bg_shop_bottom3.png") bottom center / 100% auto no-repeat;
}





body.panfes #panfes_shoplist .shoplist .item.popular {
  background: url("bg_shop_center.png") top center / 100% auto repeat-y;
}
/* top */
body.panfes #panfes_shoplist .shoplist .item.popular::before {
  background:
    url("bg_shop_top.png") top center / 100% auto no-repeat;
}
body.panfes #panfes_shoplist .shoplist .item.popular::after {
  background:
    url("bg_shop_bottom.png") bottom center / 100% auto no-repeat;
}

body.panfes #panfes_shoplist .shoplist .item.popular:nth-of-type(odd) {
  background: url("bg_shop_center2.png") top center / 100% auto repeat-y;
}
/* top */
body.panfes #panfes_shoplist .shoplist .item.popular:nth-of-type(odd)::before {
  background:
    url("bg_shop_top2.png") top center / 100% auto no-repeat;
}
body.panfes #panfes_shoplist .shoplist .item.popular:nth-of-type(odd)::after {
  background:
    url("bg_shop_bottom2.png") bottom center / 100% auto no-repeat;
}



body.panfes #panfes_shoplist .shoplist .item {
  display: none;
}
body.panfes #panfes_shoplist .shoplist .item.is-show {
  display: block;
  min-height: 60px;
}
body.panfes #panfes_shoplist .shoplist .item dl {
  position: relative;
  z-index: 3;
}
body.panfes #panfes_shoplist .shoplist .item dl:before {
  content: "";
  background-size: contain;
  width: 80px;
  height: 80px;
  position: absolute;
  right: 0;
  top: -20px;
	z-index: 4;
}
body.panfes #panfes_shoplist .shoplist .item[data-day~="0"] dl:before {
  background-image: url("icn_allday.png");
}
body.panfes #panfes_shoplist .shoplist .item[data-day~="22"] dl:before {
  background-image: url("icn_day22.png");
}

body.panfes #panfes_shoplist .shoplist .item[data-day~="22"][data-day~="23"] dl:before {background-image: url("icn_day22_23.png");}
body.panfes #panfes_shoplist .shoplist .item[data-day~="22"][data-day~="24"] dl:before {background-image: url("icn_day22_24.png");}


body.panfes #panfes_shoplist .shoplist .item[data-day~="23"] dl:before {background-image: url("icn_day23.png");}

body.panfes #panfes_shoplist .shoplist .item[data-day~="23"][data-day~="24"] dl:before {background-image: url("icn_day23_24.png");}
body.panfes #panfes_shoplist .shoplist .item[data-day~="24"] dl:before {background-image: url("icn_day24.png");}
body.panfes #panfes_shoplist .shoplist .item dl dt {
  font-weight: bold;
  font-size: 18px;
  color: var(--panfes-color);
}
body.panfes #panfes_shoplist .shoplist .item dl dt p span {
  background: linear-gradient(transparent 60%, #ffee71 60%);
}

body.panfes #panfes_shoplist .shoplist .item.popular dl dt p span{
	 background: linear-gradient(transparent 60%, #fff 60%);
}

body.panfes #panfes_shoplist .shoplist .item dl dt img {
  width: 90%;
  max-width: 260px;
	  aspect-ratio: 10 / 7;
  margin: 0 auto 8px;
  display: block;
}
body.panfes #panfes_shoplist .shoplist .item dl dd {
  font-size: 16px;
  margin: 4px 0 0 0;
  
  text-align: justify;
  work-break: break-all;
}

body.panfes .attention li{
	display: inline;
	font-size: 12px;
}

body.panfes .attention li:before{
	content: "※";
}



body.panfes .return a{
    display: block;
    width: 80%;
    max-width: 240px;
    margin: 40px auto 0;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    line-height: 48px;
    color: #fff;
    background: var(--panfes-color-sub);
    border-radius: 100px;
}

body.panfes .copyright{
	margin: 20px 0 0;
	text-align: center;
}

body.panfes .copyright p{
	font-size: 10px;
}

/* pc */
body.panfes.view.pc #contents h2 {
  position: fixed;
  width: auto;
  top: 20px;
  left: 30px;
  padding: 0;
  background: none;
	z-index: 5;
}
body.panfes.view #main {
  background: none;
}

/* sp */
body.panfes.sp.view #contents h2{padding: 4px 0 14px;}
body.panfes.sp.view #contents h2 img{
	width: auto;
	height: 30px;
}

body.panfes.sp #contents-main > .inner{
	border: none;
	padding-top: 70px;
}

body.panfes.sp .lead{
	padding: 12px 16px;
	font-size: 14px;
}

body.panfes.sp #panfes_shoplist .search {
	font-size: 16px;}

body.panfes.sp #panfes_shoplist .search .button{    margin: 6px 0 10px;}

body.panfes.sp #panfes_shoplist .search .button button{
	font-size: 16px;
}

body.panfes.sp #panfes_shoplist .shoplist .item dl dt {

    font-size: 16px;
}
body.panfes.sp #panfes_shoplist .shoplist .item dl dd {
	font-size: 14px;
    line-height: 1.4em;}

body.panfes.sp #panfes_shoplist .shoplist .item dl:before {
    width: 70px;
	height: 70px;
right: -16px;}

body.panfes.sp .to-top {
    bottom: 10px;
}

body.panfes .copyright{
	margin: 20px -20px 0;
	color: #666;
}

@media (max-width:375px) {}
@media (max-width:360px) {}
@media (max-width:320px) {}



.img_objfit img {
  object-position: 100% 0;
}
