@charset "UTF-8";
/* 共通カラー */
/* ブレイクポイント */
/* メディアクエリ */
.section--gray {
  background: #f6f7f7;
  padding: 30px 0;
}
@media screen and (min-width: 520px) {
  .section--gray {
    padding: 50px 0;
  }
}
@media screen and (min-width: 760px) {
  .section--gray {
    padding: 30px 0 70px;
  }
}

.product {
  max-width: 1100px;
  width: 94%;
  margin: 0 auto;
}
.product__description {
  text-align: center;
  padding-top: 25px;
  line-height: 2;
}
.product__description a {
  color: #f00;
}
.product__description a:hover {
  opacity: 0.6;
}
.product__body {
  background: #fff;
  padding: 20px;
  margin-top: 20px;
}
@media screen and (min-width: 760px) {
  .product__body {
    padding: 50px;
    margin-top: 40px;
  }
}
.product__select {
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 1.4rem;
}
@media screen and (min-width: 960px) {
  .product__select {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 760px) {
  .product__select {
    margin-bottom: 20px;
  }
}
.product__list {
  display: flex;
  flex-wrap: wrap;
}

.menu__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 760px) {
  .menu__list {
    justify-content: space-between;
    flex-wrap: nowrap;
  }
}
.menu__item {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #000;
  background: #fff;
  width: 30%;
  text-align: center;
  padding: 10px 6px;
  line-height: 1.5;
  margin-left: 1%;
  margin-right: 1%;
  margin-bottom: 2%;
  cursor: pointer;
  font-size: 1.2rem;
}
@media screen and (min-width: 520px) {
  .menu__item {
    padding: 10px;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 760px) {
  .menu__item {
    width: 190px;
    margin-right: 20px;
    margin-left: 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 960px) {
  .menu__item {
    padding: 18px 10px;
  }
}
@media screen and (min-width: 760px) {
  .menu__item:last-of-type {
    margin-right: 0;
  }
}
.menu__item--black {
  color: #000;
  border: 1px solid #000;
}
.menu__item--black:hover {
  color: #fff;
  background: #000;
  transition: 0.3s;
}
.menu__item--active-black {
  background: #000;
  color: #fff;
}
.menu__item--pink {
  color: #c31c7d;
  border: 1px solid #c31c7d;
}
.menu__item--pink:hover {
  color: #fff;
  background: #c31c7d;
  transition: 0.3s;
}
.menu__item--active-pink {
  background: #c31c7d;
  color: #fff;
}
.menu__item--blue {
  color: #72bce6;
  border: 1px solid #72bce6;
}
.menu__item--blue:hover {
  color: #fff;
  background: #72bce6;
  transition: 0.3s;
}
.menu__item--active-blue {
  background: #72bce6;
  color: #fff;
}
.menu__item--yellow {
  color: #ffbb0b;
  border: 1px solid #ffbb0b;
}
.menu__item--yellow:hover {
  color: #fff;
  background: #ffbb0b;
  transition: 0.3s;
}
.menu__item--active-yellow {
  background: #ffbb0b;
  color: #fff;
}
.menu__item--green {
  color: #0f8012;
  border: 1px solid #0f8012;
}
.menu__item--green:hover {
  color: #fff;
  background: #0f8012;
  transition: 0.3s;
}
.menu__item--active-green {
  background: #0f8012;
  color: #fff;
}

.container {
  display: none;
  position: relative;
  transition: all 0.3s;
}
.container:hover:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  z-index: 2;
  left: 0;
  top: 0;
}
.container--active {
  width: 48%;
  margin: 10px 1%;
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
}
@media screen and (min-width: 760px) {
  .container--active {
    width: 31%;
    margin: 20px 1.1%;
  }
}
.container__group--gift {
  margin-top: auto;
}
.container__img img {
  width: 100%;
}
.container__title {
  font-weight: bold;
  padding-top: 10px;
}
@media screen and (min-width: 760px) {
  .container__title {
    padding-top: 20px;
  }
}
.container__info {
  font-size: 1.2rem;
  display: inline-block;
  padding: 8px;
  background: #f6f7f7;
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 1.5;
}
@media screen and (min-width: 960px) {
  .container__info {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 760px) {
  .container__info {
    margin-top: 20px;
  }
}
.container__tag {
  font-size: 1.2rem;
  display: inline-block;
  margin-bottom: 6px;
  padding: 6px 8px;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .container__tag {
    font-size: 1.4rem;
  }
}
.container__tag--pink {
  color: #c31c7d;
  border: 1px solid #c31c7d;
}
.container__tag--blue {
  color: #72bce6;
  border: 1px solid #72bce6;
}
.container__tag--yellow {
  color: #ffbb0b;
  border: 1px solid #ffbb0b;
}
.container__tag--green {
  color: #0f8012;
  border: 1px solid #0f8012;
}