/*!
 * ポイントUPカレンダー ウィジェット スタイル (kaunet TOP)
 */
.kau-puc__list {
  background: #fdf6f7;
}
.kau-puc__list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  justify-content: space-between;
  padding: 8px;
  margin: 0;
  list-style: none;
}
.kau-puc__list li {
  background: #FFF;
  border: 1px solid #dbdbdb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  position: relative;
  transition: all .3s ease;
  width: 48.4%;
  list-style: none;
}
.kau-puc__list li:hover {
  border-color: #f29600;
}
.kau-puc__list li a {
  color: #333;
  display: flex;
  align-items: center;
  flex: 1;
  font-size: 13px;
  font-weight: bold;
  min-height: 60px;
  padding: 4px 56px 4px 8px;
  text-decoration: none;
}
.kau-puc__list li a:hover {
  opacity: 1;
  text-decoration: none;
}
.kau-puc__list li a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 60px auto;
  transition: all .3s ease;
}
.kau-puc__list li a:hover:before {
  opacity: .7;
}
.kau-puc__list li a span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  padding-left: 12px;
  position: relative;
  overflow: hidden;
}
.kau-puc__list li a span:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 5px;
  height: 90%;
  background: #f29600;
}
.kau-puc__banner {
  margin: 0;
}
.kau-puc__banner a {
  display: block;
}
.kau-puc__banner img {
  width: 100%;
  height: auto;
  display: block;
}
.kau-puc__list:empty {
  display: none;
}
@media screen and (max-width:699px) {
  .kau-puc,
  .kau-puc__list {
    max-width: 100%;
  }
}
