/* ***************************************************

****************************************************** */


@media print,
screen and (min-width:768px) {}

/*============================================================
ul.each_link
=============================================================*/
ul.each_link {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 10px;
}

ul.each_link li {
  margin: 15px;
}

ul.each_link li a {
  display: inline-block;
  position: relative;
  color: #fff;
  background: #ff2b5d;
  border-radius: 50px;
  padding: 14px 40px 14px 18px;
  font-weight: 700;
  text-decoration: none;
}

ul.each_link li:first-of-type a {

  background: #a664c4;

}

ul.each_link li:nth-of-type(2) a {

  background: #2b9cff;

}

ul.each_link li a .each_arrow {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.6em 0.4em;
  border-top-color: currentColor;
  border-bottom: 0;
  margin: 0 0 0 10px;
  transition: all 0.2s;
  position: absolute;
  bottom: 21px;
}

ul.each_link li a:hover .each_arrow {
  bottom: 18px;

}

/*============================================================
company_info
=============================================================*/
ul.each_item li {
  padding: 20px;
}

ul.each_item li a {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  text-decoration: none;
  color: #000;
  background: #fff;
  box-shadow: 0px 0px 14px -4px #b6b6b6;
  border-radius: 20px;
  padding: 20px;

}

ul.each_item li a h4 {
  font-weight: 900;
  
  font-size: clamp(1.25rem, 1.071rem + 0.89vw, 2rem);
}
#milk_beverage ul.each_item li a h4 {
  
  color: #a664c4;
  
}
#yo_gurt ul.each_item li a h4 {
  
  color: #2b9cff;
  
}
#health_support ul.each_item li a h4 {
  
  color: #ff2b5d;
  
}
ul.each_item li a figure img {
  width: auto;
  height: 100%;
  max-height: 200px;
  border-radius: 0;
  transition: transform .3s ease;
}

ul.each_item li a:hover figure img {
  transform: scale(1.05);
}

ul.each_item li p span {
  display: inline-block;
  font-size: clamp(1.2rem, 1rem + 1vw, 1.4rem);
  margin: 5px 0 0 0;

}

ul.each_item li p.component {
  text-align: left;
  color: #666;

  font-size: clamp(1rem, 1rem + 0.11vw, 1.2rem);

}


ol.nutrients {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: auto 0 0 0;

}

ol.nutrients li {
  list-style: none;
  padding: 0;
  margin: 3px;
}

ol.nutrients li p {
  padding: 5px 10px;
  color: #fff;
  
  font-size: clamp(1rem, 1rem + 0.11vw, 1.2rem);
  border-radius: 3px;
}
#milk_beverage ol.nutrients li p {
  
  background: #a664c4;
  
}
#yo_gurt ol.nutrients li p {
  
  background: #2b9cff;
  
}
#health_support ol.nutrients li p {
  
  background: #ff2b5d;
  
}