.c-main{
  font-family: 'Noto Sans JP', sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #000;
}
.c-wrapper{
  background-size: cover;
}

.c-heading-l1{
  font-size: 28px;
  text-align: center;
  letter-spacing: -0.5px;
  line-height: 1.15;
}


/* Banner */
.c-banners{
  display: flex;
  column-gap: min(calc((16 / var(--pc))*100vw),16px);
  max-width: min(calc((910 / var(--pc))*100vw),910px);
  /*overflow-y: hidden;*/
}
.c-banners-item{
  width: calc(100% / 3);
}
.c-banners-item_link{
  transition: var(--transition);
}
.c-banners-item_link:hover{
  opacity: 0.7;
}
@media all and (max-width:960px) {
  .c-banners{
    flex-wrap: nowrap;
    justify-content: unset;
    overflow-x: scroll;
    column-gap: 0;
  }
  .c-banners-item{
    min-width: 40%;
    margin: 0 4px;
  }
}

/* Tag */
.c-tag_list{
  width: min(calc((1160 / var(--pc))*100vw),1160px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 6px;
  row-gap: 8px;
}
.c-tag_list-item{
  font-size: 14px;
  line-height: 1;
  padding: max(calc((10 / var(--pc))*100vw),10px) max(calc((16 / var(--pc))*100vw),16px);
  border-radius: 999px;
  background-color: #fff;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid #000;
}
.c-tag_list-item:hover{
  opacity: 0.7;
}
.c-tag_list-item::before{
  content: "#";
}
@media all and (max-width:960px) {
  .c-tag_list{
    width: 100%;
    row-gap: 4px;
  }
  .c-tag_list-item{
    font-size: 11px;
    padding: 6px 7px;
  }
}

/* Sort */
.c-sort{
  background-color: #fff;
  display: flex;
  padding: min(calc((20 / var(--pc))*100vw),20px) min(calc((70 / var(--pc))*100vw),70px);
  border-radius: 999px;
}
.c-sort_title{
  font-size: 16px;
  font-weight: 700;
  padding-right: min(calc((40 / var(--pc))*100vw),40px);
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.c-sort_title::after{
  content: "";
  width: 1px;
  height: 25px;
  background: #000;
  position: absolute;
  right: 6px;
}
.c-sort_list{
  display: flex;
  padding-left: min(calc((40 / var(--pc))*100vw),40px);
}
.c-result_sort_button{
  border: 0;
  background-color: transparent;
  font-size: 16px;
  color: #888;
  font-weight: 500;
  padding-right: min(calc((30 / var(--pc))*100vw),30px);
  cursor: pointer;
}
.c-result_sort_button[data-sort="on"]{
  font-weight: 700;
}
.c-sort_list-item{
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.c-sort_list-item:last-child .c-result_sort_button{
  padding-right: 0;
}
@media all and (max-width:960px) {
  .c-sort{
    padding: 0;
    margin: 0 34px;
    height: 46px;
  }
  .c-sort_title{
    font-size: 13px;
    padding-right: 0;
    flex: 1;
    justify-content: center;
  }
  .c-sort_title::after{
    right: 0;
  }
  .c-result_sort_button{
    width: 100%;
    font-size: 13px;
    line-height: 1;
    padding: 16px 0;
  }
}

/* Rank */
.c-rank{
  display: flex;
  padding-bottom: 24px;
}
.c-rank_flag{
  width: 48px;
  min-width: 48px;
  height: 42px;
  min-height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 16px;
}
.c-rank_flag::before{
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 24px solid transparent;
  border-left: 0px solid transparent;
  border-top: 8px solid inherit;
  border-bottom: 8px solid transparent;
  position: absolute;
  bottom: -16px;
  left:0;
}
.c-rank_flag::after{
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 0px solid transparent;
  border-left: 24px solid transparent;
  border-bottom: 8px solid transparent;
  position: absolute;
  bottom: -16px;
  right:0;
}
.c-rank_flag img{
  width: auto !important;
}
@media all and (max-width:960px) {
  .c-rank{
    padding-bottom: 0;
  }
  .c-ranking .swiper-button_wrapper{
    display: none;
  }
  .c-rank_flag{
    width: 24px;
    min-width: 24px;
    height: 16px;
    min-height: 16px;
    margin-right: 8px;
  }
  .c-rank_flag img{
    width: auto;
    height: 8px;
    margin-top: 3px;
  }
}

/* Slider */
.c-slider_list_title{
  font-size: 18px;
  font-weight: 500;
  margin-top:min(calc((17 / var(--pc))*100vw),17px);
  letter-spacing: -0.5px;
  color: #000;
}
.c-slider_list_image{
  overflow: hidden;
}
.c-slider_list_image img{
  transition: var(--transition);
  object-fit: cover;
  aspect-ratio: 880 / 544;
}
.c-slider_list_image img:hover{
  transform: scale(1.05);
}
@media all and (max-width:960px) {
  .c-slider_list_title{
    font-size: 14px;
  }
}

/* Pick up Static */
.c-pickup_list-static{
  display: flex;
  justify-content: center;
  column-gap: 16px;
  padding-top: min(calc((33 / var(--pc))*100vw),33px);
}

.c-pickup_list_image{
  overflow: hidden;
  opacity: 1;
  transition: all 600ms ease;
}
.c-pickup_list_image:hover{
  opacity: 0.7;
  cursor: pointer;
}
.c-pickup_list_image img{
  transition: var(--transition);
  object-fit: cover;
  aspect-ratio: 752 / 462;
  height: min(calc((228 / var(--pc))*100vw),228px);
  width: auto;
}

@media all and (min-width:1390px) {
  .c-pickup_list_image img{
    max-height: 210px;
  }
}

@media all and (max-width:960px) {
  .c-pickup_list-static{
    column-gap: 8px;
    padding: min(calc((33 / var(--pc))*100vw),33px) 13px 0;
  }
  .c-pickup_list_image img{
    max-height: 120px;
    width: 100%;
    height: auto;
  }
  .c-pickup_list-static.--2col .c-pickup_list_image img{
    max-height: 190px;
  }
}

/* Card */
.c-card_list{
  display: flex;
  flex-wrap: wrap;
  column-gap: min(calc((18 / var(--pc))*100vw),18px);
}
.c-card_list-item{
  width: calc((100% / 3) - min(calc((12 / var(--pc))*100vw),12px));
  margin-bottom: min(calc((41 / var(--pc))*100vw),41px);
  transition: var(--transition);
}
.c-card_list-item:hover{
  opacity: 0.7;
}
.c-card_list-item_bottom{
  margin-top: min(calc((16 / var(--pc))*100vw),16px);
}
.c-card_list-item_title{
  color: #000;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 1.4;
}
.c-card_list-item_image{
  overflow: hidden;
}
.c-card_list-item_image img{
  transition: var(--transition);
  object-fit: cover;
  aspect-ratio: 880 / 544;
  vertical-align: bottom;
}
.c-card_list-item_image img:hover{
  transform: scale(1.05);
}
.c-card_list-item_category{
  margin-top: min(calc((11 / var(--pc))*100vw),11px);
}
.c-card_list-item_category_list{
  display: flex;
}
.c-card_list-item_category_list-item{
  color: #5e5e5e;
  font-size: 14px;
  line-height: 1.3;
  padding-left: min(calc((24 / var(--pc))*100vw),24px);
  display: flex;
  align-items: flex-end;
}
.c-card_list-item_category_list-item:not(:first-child){
  margin-left: min(calc((16 / var(--pc))*100vw),16px);
}
.c-card_list-item_category_list-item::before{
  content: "";
  position: absolute;
  background: #5e5e5e;
  left: 0;
}
.c-card_list-item_category_list-item[data-category="time"]::before{
  width: min(calc((19 / var(--pc))*100vw),19px);
  height: min(calc((22 / var(--pc))*100vw),22px);
  mask: url("../../img/common/icon/clock.svg") no-repeat center center / contain;
  -webkit-mask: url("../../img/common/icon/clock.svg") no-repeat center center / contain;
}
.c-card_list-item_category_list-item[data-category="time"]::after{
  content: "分";
}
.c-card_list-item_category_list-item[data-category="cal"]::before{
  width: min(calc((15 / var(--pc))*100vw),15px);
  height: min(calc((20 / var(--pc))*100vw),20px);
  mask: url("../../img/common/icon/fire.svg") no-repeat center center / contain;
  -webkit-mask: url("../../img/common/icon/fire.svg") no-repeat center center / contain;
}
.c-card_list-item_category_list-item[data-category="cal"]::after{
  content: "kcal";
}
.c-card_list-item_category_list-item[data-category="salt"]::before{
  width: min(calc((10 / var(--pc))*100vw),10px);
  height: min(calc((21 / var(--pc))*100vw),21px);
  mask: url("../../img/common/icon/salt.svg") no-repeat center center / contain;
  -webkit-mask: url("../../img/common/icon/salt.svg") no-repeat center center / contain;
}
.c-card_list-item_category_list-item[data-category="salt"]::after{
  content: "g";
}
@media all and (max-width:960px) {
  .c-card_list-item{
    width: calc((100% / 2) - min(calc((4 / var(--sp))*100vw),4px));
    margin-bottom: 26px;
  }
  .c-card_list-item_bottom{
    margin-top: 8px;
  }
  .c-card_list-item_title{
    font-size: min(calc((14 / var(--sp))*100vw),14px);
  }
  .c-card_list-item_category{
    margin-top: min(calc((8 / var(--sp))*100vw),8px);
  }
  .c-card_list-item_category_list-item{
    font-size: min(calc((11 / var(--sp))*100vw),11px);
    padding-left: min(calc((14 / var(--sp))*100vw),14px);
  }
  .c-card_list-item_category_list-item:not(:first-child){
    margin-left: min(calc((4 / var(--sp))*100vw),4px);
  }
  .c-card_list-item_category_list-item[data-category="time"]{
    padding-left: min(calc((18 / var(--sp))*100vw),18px);
  }
  .c-card_list-item_category_list-item[data-category="time"]::before{
    width: min(calc((14 / var(--sp))*100vw),14px);
    height: min(calc((15 / var(--sp))*100vw),15px);
  }
  .c-card_list-item_category_list-item[data-category="cal"]::before{
    width: min(calc((12 / var(--sp))*100vw),12px);
    height: min(calc((13 / var(--sp))*100vw),13px);
  }
  .c-card_list-item_category_list-item[data-category="salt"]::before{
    width: min(calc((12 / var(--sp))*100vw),12px);
    height: min(calc((12 / var(--sp))*100vw),12px);
  }
}

.c-no-data{
  font-size: 16px;
  margin-bottom: 16px;
}

.c-pill{
  padding: 15px 35px;
  font-size: 20px;
}

/* top-search */
.c-top-search_label{
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
}
.c-top-search_title{
  position: absolute;
  top: calc((20 / var(--pc))*100vw);
  left: 50%;
  transform: translateX(-50%);
  width: calc((460 / var(--pc))*100vw);
}
.c-top-search_input{
  width: 560px;
  height: min(calc((60 / var(--pc))*100vw),60px);
  font-size: 14px;
  font-weight: 500;
  padding: 0 30px 0 70px;
  border-radius: 999px;
  border: 1px solid #000;
}
.c-top-search_input:focus-visible{
  outline: none;
}
.c-top-search_input::placeholder{
  color: #adadad;
  padding-left: 110px;
}
.c-top-search_label::before{
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 34px;
  background: #000;
  transform: translateY(-50%);
  mask: url(../../img/common/icon/loupe.svg) no-repeat center center / contain;
  -webkit-mask: url(../../img/common/icon/loupe.svg) no-repeat center center / contain;
  z-index: 1;
}
@media all and (min-width:1366px) {
  .c-top-search_title{
    top: calc((25 / var(--pc))*100vw);
  }
}
@media all and (max-width:960px) {
  .c-top-search_label{
    bottom: 22px;
  }
  .c-top-search_title{
    top: max(calc((30 / var(--sp))*100vw),30px);
    width: calc((245 / var(--sp))*100vw);
  }
  .c-top-search_input{
    width: max(calc((660 / 750)*100vw),300px);
    height: 36px;
    font-size: 12px;
    padding: 0 1em 0 4em;
  }
  .c-top-search_input::placeholder{
    padding-left: max(calc((30 / 750)*100vw),30px);
  }
  .c-top-search_label::before{
    width: 12px;
    height: 12px;
    left: 20px;
  }
}
@media all and (max-width:375px) {
  .c-top-search_title{
    top: calc((20 / var(--sp))*100vw);
  }
}

/* top-tag */
.c-top-tag_list{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.c-top-tag_list-item_tag{
  font-weight: 500;
  letter-spacing: 1px;
}
.c-top-tag_list-item_tag::before{
  content: "#";
}
@media all and (min-width:961px) {
  .c-top-tag_list{
    justify-content: center;
    column-gap: 11px;
    max-width: 960px;
    height: 47px;
    margin: 0 auto;
  }
  .c-top-tag_list-item_tag{
    font-size: 14px;
    color: #000;
  }
}
@media all and (max-width:960px) {
  .c-top-tag_list{
    justify-content: flex-start;
    column-gap: 10px;
    height: 35px;
    overflow-x: auto;
    padding-left: 14px;
  }
  .c-top-tag_list-item{
    flex-shrink: 0;
  }
  .c-top-tag_list-item_tag{
    font-size: 12px;
    flex-shrink: 0;
  }
}

/* Rank */
.c-ranking{
  padding: min(calc((54 / var(--pc))*100vw),54px) 0 min(calc((66 / var(--pc))*100vw),66px);
  background: url(../../img/brand/main-light-min.png);
  background-size: cover;
}
.c-ranking h2{
  padding-top: 20px;
  margin-right: min(calc((86 / var(--pc))*100vw),86px);
}
@media all and (min-width:1366px) {
  .c-ranking h2{
    margin-right: 0;
  }
}
.c-ranking .c-heading-l1{
  padding-top: min(calc((16 / var(--pc))*100vw),16px);
  position: relative;
  left: min(calc((-50 / var(--pc))*100vw),-50px);
}
.c-ranking .c-slider_list_title{
  margin-top: min(calc((9 / var(--pc))*100vw),9px);
}
.c-ranking .i-crown::after{
  bottom: 10px;
  right: -60px;
}
.c-ranking .swiper{
  padding:0 min(calc((16 / var(--pc))*100vw),16px) 0 max(calc((100 / var(--pc))*100vw),100px);
}
.c-ranking .swiper-wrapper{
  padding-top: min(calc((41 / var(--pc))*100vw),41px);
}
.c-ranking .swiper-slide{
  max-width: 500px;
}
.c-ranking .swiper-button_wrapper{
  top: min(calc((35 / var(--pc))*100vw),35px);
}
@media all and (max-width:960px) {
  .c-ranking{
    margin-top: 32px;
    padding: 0;
  }
  .c-ranking .swiper-wrapper{
    padding-top: 16px;
  }
  .c-ranking .swiper{
    padding: 30px 6px 20px 13px;
  }
  .c-ranking .swiper h2{
    padding-top: 0;
    margin-right: 5px;
  }
  .c-ranking .swiper h2 img{
    height: 16px;
    width: auto;
  }
  .c-ranking .i-crown::after{
    bottom: 6px;
    right: -35px;
  }
}

@media all and (max-width:960px) and (min-width:640px) {
  .c-ranking .swiper{
    padding-left:34px;
padding-right:34px;
}
.c-ranking .swiper h2 img{
  height: 21px;
}
}

/* Loading */
.c-loading{
  text-align: center;
  padding: 100px 0;
}
.c-loading__text{
  font-size: 32px;
  position: relative;
  color: #ccc;
  width: 195px;
  height: 48px;
  margin: 0 auto;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 4px;
  font-weight: 600;
}
.c-loading__text::after {
  content: "LOADING";
  position: absolute;
  width: 195px;
  height: 48px;
  top: 0;
  left: 0;
  color: #000;
  clip: rect(0,0,48px,0);
  transition: clip 1.5s linear;
  animation: loading 2s linear 1s infinite forwards;
}
@keyframes loading {
  0% {
    clip: rect(0,0,48px,0);
  }
  100% {
    clip: rect(0,195px,48px,0);
  }
}

.c-loading__modal{
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff9f1;
  z-index:100000;
  overflow: hidden;
}
.c-loading__modal[data-display="off"]{
  display: none;
}
.c-loading__modal__container{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.c-loading__modal__container .c-loading{
  padding: 30px 0 0;
}
.c-loading__modal__container .c-loading__text{
  font-size: 14px;
}
.c-loading__modal__logo img {
  width: 200px;
}
@media all and (max-width:960px) {
  .c-loading__text {
    font-size: 18px;
    letter-spacing: 6px;
    transform: translateX(3px);
    width: fit-content;
  }
  .c-loading__text::after{
    width: fit-content;
  }
  .c-loading__modal__container .c-loading__text{
    font-size: 11px;
    letter-spacing: 4px;
  }
  .c-loading__modal__container .c-loading {
    padding: 23px 0 0;
  }
  .c-loading__modal__logo img{
    width: 150px;
    height: auto;
  }
}