/* breadcrumbs */
.breadcrumbs {
  font-size: 12px;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
}

.breadcrumbs li:not(:last-of-type)::after {
  content: '›';
  margin: 0 8px 0 4px;
}

.x {
  background: var(--text-inverted);
  border: 1px solid var(--divider-02);
  padding: 32px 16px 16px;
  position: relative;
  margin: 16px 0;
}

.x_label {
  background: var(--text-03);
  color: var(--text-inverted);
  font-size: 12px;
  display: inline-block;
  padding: 2px 12px;
  position: absolute;
  left: 0;
  top: 0;
}

.x_list {
  display: flex;
  font-size: 12px;
  flex-wrap: wrap;
}

.x_list li {
  display: flex;
  width: 50%;
}

.x_list li:before {
  content: '□';
  padding-right: 4px;
}

.x_name {
  width: 116px;
}

.x_memo {
  font-size: 12px;
  font-weight: normal;
  margin: 0 4px;
}

.x_star {
  color: #AC6501;
}

@media screen and (max-width:880px) {
  .x_memo {
    font-size: 10px;
  }
}

@media screen and (max-width:600px) {
  .x_list {
    display: block;
  }

  .x_list li {
    width: 100%;
  }

  .x_name {
    width: 132px;
  }
}

.y_with_p {
  padding: 16px;
  width: auto;
}

.y_yellow {
  background: rgb(213 94 56 / 10%);
}
.y_blue {
  background: rgb(88 154 204 / 10%);
}
.y_green {
  background: rgb(146 184 152 / 10%);
}

.y_name::before {
  content: '□';
}

.y_description {
  font-size: 12px;
  padding: 0 8px;
}

.y_reccomend {
  background: rgb(204 141 105 / 10%);
  border-radius: 8px;
  padding: 12px;
}

.y_items {
  overflow: scroll;
  display: flex;
  align-items: center;
}

.y_item {
  border-radius: 8px;
  box-shadow: inset 0px -2px 0px rgba(0, 0, 0, 0.2);
  padding: 4px 8px;
  background: #fff;
  margin: 8px 4px;
  width: 20%;
  min-width: 110px;
}

.y_item_title {
  font-size: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 30px;
}

.y_item_image {
  display: block;
  margin: 0 auto 4px;
  height: 52px;
  width: 52px;
}

.y_read {
  color: var(--text-03);
  font-size: 10px;
  margin-left: 16px;
  position: relative;
}

.y_read::before {
  content: '》';
  top: 50%;
  left: -12px;
  transform: translate(0, -50%);
  position: absolute;
}

.article_wrapper .article_top {
  align-items: center;
  background: linear-gradient(var(--primary-main-01) 50%, rgba(0, 0, 0, 0) 50%), rgb(255 255 255 / 0%);
  display: flex;
  height: 200px;
  justify-content: center;
  position: relative;
  width: 100%;
}

.article_wrapper .article_top_thumbnail {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.article_wrapper .article_top_thumbnail_img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: -1;
}

.article_wrapper .article_top_decorate {
  align-items: center;
  border: 1px solid var(--background);
  display: flex;
  height: 100%;
  justify-content: center;
  padding: 12px 0;
  width: 95%;
}

.article_title_wrapper {
  background: #fff;
  box-shadow: inset 0px -2px 0px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
  min-width: 300px;
  padding: 12px 16px;
  text-align: center;
}

.article_title_wrapper .article_caption {
  background: var(--background);
  color: var(--text-inverted);
  display: inline-block;
  min-width: 120px;
  padding: 0 4px;
  letter-spacing: 1.6px;
}

.article_title_wrapper .article_title {
  margin: 4px 0;
  letter-spacing: 2px;
  font-size: 28px;
  font-weight: 600;
  white-space: pre-wrap;
}

.article_wrapper .related_article {
  border-bottom: 1px solid var(--divider-02);
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  margin-bottom: 40px;
}

.article_wrapper .related_article_item a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.article_wrapper .related_article_sign {
  color: var(--primary-main-01);
}

.article_wrapper .related_article_item {
  padding: 0 8px;
  width: 50%;
}

.article_wrapper .article_report {
  color: var(--text-03);
  display: block;
  padding: 8px 0;
}

.article_wrapper .article_report::before {
  content: '💬';
  left: -2px;
  position: relative;
}

@media screen and (max-width:750px) {
  .article_wrapper .related_article {
    flex-wrap: wrap;
  }
  .article_wrapper .related_article_item {
    width: 100%;
  }
}

.category_note {
  font-size: 12px;
  text-align: center;
  margin-bottom: 4px;
}

.category_note::after {
  background: var(--background);
  border-radius: 20px;
  color: var(--text-inverted);
  content: '⌵';
  line-height: 1;
  position: relative;
  top: -2px;
  padding: 0 4px 4px;
}

.category_leads {
  display: flex;
  justify-content: space-evenly;
  position: relative;
}

.category_leads a {
  width: 100%;
}

.category_lead {
  border: 1px solid var(--text-03);
  text-align: center;
  margin: 0 4px;
  padding: 4px 12px 4px 0;
  border-radius: 20px;
  position: relative;
}

.category_lead::after {
  background: var(--background);
  border-radius: 20px;
  color: var(--text-inverted);
  content: '⌵';
  line-height: 1;
  padding: 0 4px 4px;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translate(0, -50%);
}

.category_lead_yellow::after {
  background: var(--article-yellow);
}
.category_lead_blue::after {
  background: var(--article-blue);
}
.category_lead_green::after {
  background: var(--article-green);
}

.article_index {
  font-size: 20px;
  font-weight: 600;
  margin: 28px 0;
  padding: 0 8px;
  position: relative;
  border-left: 4px solid var(--primary-main-01);
}

.article_index:before {
  position: absolute;
  content: '';
  left: -4px;
  bottom: 0;
  width: 4px;
  height: 50%;
  background-color: pink;
}

.y_table {
  border-spacing: 4px;
}

.y_table th {
  background: var(--primary-main-02);
  font-weight: 300;
  padding: 4px;
  min-width: 60px;
}

.y_table .td_sub {
  color: var(--text-02);
  margin: 4px 0;
}

.y_table .td_link {
  color: var(--primary-main-01);
}

.y_table .td_link::before {
  content: '▶︎';
  left: 2px;
  position: relative;
}

.tweet_wrapper {
  height: 300px;
  width: 212px;
}

.twitter-tweet {
  transform: scale(0.8);
  transform-origin: left top;
  width: 250px !important;
}

.promotion {
  color: var(--text-03);
  font-size: 10px;
  margin: 4px 0;
}

.t_food_container {
  max-height: 540px;
  max-width: 100%;
  margin-bottom: 12px;
  overflow: auto;
  position: relative;
}
.t_food_point {
  border: 1px solid var(--divider);
  border-radius: 8px;
  font-size: 12px;
  margin: 12px 0;
  padding: 12px;
}
.t_food_wrapper {
  border-collapse: collapse; 
}
.t_food_wrapper input[type='checkbox']{
  accent-color: #ef5f5f;
  opacity: 0.6;
  margin-bottom: 8px;
}
.t_food_wrapper tr {
  font-size: 10px;
  line-height: 1.2;
}
.t_food_wrapper td {
  border-bottom: 1px solid var(--divider-02);
  height: 1px; /* ios safariで高さが大きくなる問題の対応*/
}
.t_food_wrapper .th_middle {
  min-width: 116px;
}
.t_food_wrapper .th_semiwide {
  min-width: 160px;
}
.t_food_wrapper .th_wide {
  min-width: 200px;
}
.t_food_memo_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 8px 0;
}
.t_filter_btn {
  background: var(--text-inverted);
  border: 1px solid var(--primary-main-01);
  border-radius: 16px;
  color: var(--primary-main-01);
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  padding: 4px;
}
.t_wrapper {
  text-align: left;
}
.t_wrapper li {
  margin-left: 16px;
  list-style: initial;
}
.t_fixed_left {
  background: var(--text-inverted);
  box-shadow: inset -2px 0px 0px rgba(0, 0, 0, 0.2);
  position: sticky;
  left: 0;
  text-align: left;
  min-width: 70px;
  z-index: 10;
}
.t_fixed_top {
  background: var(--text-01);
  color: var(--text-inverted);
  position: sticky;
  top: 0;
  min-width: 56px;
  white-space: pre-wrap;
  z-index: 11;
}
.t_fixed_main {
  z-index: 12;
}
.t_with_bg {
  background: #fff8f6;
}
.t_bold {
  font-weight: 600;
}
.t_num {
  font-family: Verdana, futura, 'Century Gothic', sans-serif;
  font-size: 14px;
  font-weight: 600;
}
.t_num_red_1 {
  color: #e8553a;
}
.t_num_red_2 {
  color: #e78c20;
}
.t_num_red_3 {
  color: #c29b0f;
}
.t_num_red_4 {
  color: #99b402;
}
.t_company_name {
  color: var(--primary-main-01);
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.t_btn {
  box-shadow: inset -2px -2px 0px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  background: #d7360e;
  color: #fff;
  padding: 12px 0;
}

.s_title_wrapper {
  margin: 16px 0;
}
.s_company_name {
  color: var(--primary-main-01);
  font-weight: 600;
}
.s_pickups li {
  margin: 8px 0;
  position: relative;
}
.s_pickup_title {
  display: inline-block;
  font-weight: 600;
  margin: 0 4px;
}
.s_pickup_title::before {
  content: '𓌉𓇋';
  position: relative;
  left: -4px;
}
.s_pickup_star {
  font-family: futura, 'Century Gothic', sans-serif;
}
.s_btn {
  background: #d7360e;
  border-radius: 24px;
  box-shadow: inset 0px -4px 0px rgba(0, 0, 0, 0.2);
  color: var(--text-inverted);
  display: block;
  margin: 24px auto 40px;
  padding: 8px 24px;
  text-align: center;
  max-width: 300px;
}
.s_features {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 16px 0;
  position: relative;
}
.s_detail_content {
  display: none;
}
.open_content {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0, #fff 70%);
  color: var(--text-02);
  font-size: 12px;
  bottom: 0;
  padding-top: 60px;
  position: absolute;
  text-align: center;
  width: 100%;
}
.open_content::after {
  content: '⌵';
  line-height: 1;
  position: relative;
  top: -2px;
  right: -4px;
}

@media screen and (min-width:600px) {
  .s_infos {
    width: 50%;
  }
}
.s_infos th {
  background: var(--primary-main-02);
  font-size: 10px;
  font-weight: 300;
  padding: 8px 4px;
  width: 78px;
}
.s_infos td {
  padding: 8px 4px;
}
.s_campaign {
  border: 1px solid var(--primary-main-01);
  border-radius: 4px;
  font-size: 12px;
  padding: 8px 16px;
  position: relative;
  top: 20px;
  background-color: #fff;
  margin: 0 auto;
  width: 300px;
  max-width: 400px;
  width: 90%;
}
.s_campaign::before, .s_campaign::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.s_campaign::before {
  border: solid 10px transparent;
  border-top: solid 10px var(--primary-main-01)
}
.s_campaign::after {
  border: solid 9px transparent;
  border-top: solid 9px #fff;
  margin-top: 0px;
}
.s_campaign_title {
  background: var(--text-inverted);
  color: var(--primary-main-01);
  font-weight: bold;
  text-align: center;
  padding: 0 8px;
  position: absolute;
  top: -8px;
  left: 50%; /* 左から50%の位置 */
  transform: translateX(-50%);
}
.text_◯ {
  color: green;
  white-space: pre-wrap;
}
.text_× {
  color: #d7360e;
  font-size: 16px;
}
.t_food_wrapper .text_冷凍,
.t_food_wrapper .text_冷蔵 ,
.t_food_wrapper .text_ミールキット {
  position: relative;
  z-index: 1;
}
.t_food_wrapper .text_冷凍::before,
.t_food_wrapper .text_冷蔵::before,
.t_food_wrapper .text_ミールキット:before {
  font-size: 30px;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 0.2;
  position: absolute;
  z-index: -1;
}
.t_food_wrapper .text_冷凍::before {
  content: '❄️';
}
.t_food_wrapper .text_冷蔵::before {
  content: '💧';
}
.t_food_wrapper .text_ミールキット::before {
  content: '🥕';
}
.s_plan_name {
  font-size: 14px;
  font-weight: 600;
}
