@charset "UTF-8";
/* CSS Document */
/* =================================
  Variables
================================= */
/* =================================
	COMMON CSS  基本スマホサイズ
================================= */
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
img {
/* PCの右クリック禁止 */
  pointer-events: none;
/* SPの長押し禁止 */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  user-select: none;
}
a {
  text-decoration: none;
  font-weight: 700;
}
body {
  font-family: "M PLUS Rounded 1c", "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
  font-weight: 500;
  color: #622b30;
  background-image: url("../images/common/LINE_kirby_base01.jpg");
}
.container {
  text-align: center;
}
.container article {
  padding: 40px 22px;
  position: relative;
}
h2 {
  color: #622b30;
  font-size: 24px;
  font-weight: 700;
  display: grid;
  width: max-content;
  grid-template: auto/20px auto 20px;
  grid-gap: 10px;
  place-items: center;
  margin: 0 auto 0.5rem;
}
h2:before,
h2:after {
  content: "";
  background-image: url("../images/common/pupupu_icon-star.svg");
  width: 20px;
  height: 20px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
}
h3 {
  color: #622b30;
  font-size: 18px;
  font-weight: 500;
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  line-height: 1.8rem;
  background-image: url("../images/common/underline.svg");
  background-repeat: repeat-x;
  background-size: 100% 6px;
  background-position: left 1.1rem;
  padding-bottom: 0.5rem;
}
.label {
  background-color: #c84453;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  border-radius: 4px;
  display: block;
  width: 84px;
  padding: 2px;
  margin: 0 auto 0.25rem;
}
.h3-label {
  font-size: 14px;
  background-color: #fcd78b;
  width: 94px;
  margin: auto;
  border-radius: 4px;
  padding: 4px 0;
}
p.attention {
  font-size: 10px;
}
.shopinfo-bg,
.special-bg {
  background-color: #faf2e5;
  display: grid;
}
.novelty-bg,
.goods-bg {
  background-image: url("../images/common/LINE_kirby_base02.png"), url("../images/common/LINE_kirby_base02.png");
  background-position: left -20px top, right -20px top 60px;
  background-repeat: repeat-y, repeat-y;
  background-size: 30% auto, 30% auto;
}
section:has(.web),
.special-example {
  position: relative;
}
.friends {
  position: absolute;
  filter: drop-shadow(0px 0px 1px #e0cfb2);
  pointer-events: none;
}
.friends.wagon {
  top: 2.5%;
  left: 2%;
  max-width: 180px;
  width: 20%;
  aspect-ratio: 388/233;
}
.friends.web {
  top: -22%;
  left: -2%;
  max-width: 160px;
  min-width: 80px;
  width: 22%;
  aspect-ratio: 25/13;
}
.friends.web-2 {
  display: none;
  aspect-ratio: 12/7;
}
.friends.notes {
  bottom: 0.5%;
  right: 6%;
  max-width: 140px;
  width: 22%;
  aspect-ratio: 4/3;
}
.friends.special-1 {
  z-index: 1;
  right: 1%;
  top: 0;
  width: 18%;
  max-width: 100px;
  bottom: 0;
  aspect-ratio: 67/90;
}
.friends.special-1 img {
  position: absolute;
  top: 40%;
  bottom: 0;
  margin: auto 0;
}
.friends.special-2 {
  display: none;
  aspect-ratio: 67/90;
}
.friends.bottom {
  width: 30%;
  max-width: 200px;
  margin: auto;
  right: 0;
  left: 0;
  position: relative;
  margin-bottom: 1rem;
  aspect-ratio: 5/3;
}
.friends.infotop {
  width: 18%;
  max-width: 85px;
  top: 1.5%;
  left: 6%;
  aspect-ratio: 154/173;
}
.friends.infobottom {
  width: 30%;
  max-width: 160px;
  bottom: 1%;
  right: 2%;
  aspect-ratio: 813/416;
}
.head-menu-btn {
  position: fixed;
  right: 15px;
  top: 15px;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  background-color: #622b30;
  z-index: 11;
}
.head-menu-btn span {
  position: absolute;
  left: 10px /* 左右の余白 */;
  width: 30px /* 線の長さ (ボタン幅 - 左右余白x2) */;
  height: 4px /* 線の太さ */;
  background-color: #fff /* 線の色 */;
  border-radius: 4px;
  transition: all 0.4s /* ★アニメーションの速度 */;
  display: block;
}
.head-menu-btn.menu-close span:nth-of-type(1) {
  top: 13px;
}
.head-menu-btn.menu-close span:nth-of-type(2) {
  top: 23px;
}
.head-menu-btn.menu-close span:nth-of-type(3) {
  top: 33px;
}
.head-menu-btn.menu-open span:nth-of-type(1) {
  top: 23px /* 真ん中の位置に移動 */;
  transform: rotate(45deg);
}
.head-menu-btn.menu-open span:nth-of-type(2) {
  opacity: 0;
}
.head-menu-btn.menu-open span:nth-of-type(3) {
  top: 23px /* 真ん中の位置に移動 */;
  transform: rotate(-45deg);
}
.head-menu-list {
  position: fixed;
  width: 80%;
  right: 0;
  border-radius: 0 0 0 12px;
  box-shadow: 2px -2px 0px 2px #fff inset, 0px 0px 0px 100vh rgba(98,43,48,0.5);
  background-color: #622b30;
  color: #fff;
  font-weight: 500;
  text-align: center;
  z-index: 10;
}
.head-menu-list .head-menu-logo {
  height: 80px;
  background-color: #fff;
  text-align: left;
  padding: 15px 20px;
}
.head-menu-list .head-menu-logo img {
  height: 50px;
  aspect-ratio: 101/40;
}
.head-menu-list .head-menu {
  display: grid;
  padding: 60px 0 80px;
  grid-gap: 30px;
}
.mainvisual {
  width: auto;
}
.mainvisual img {
  padding: 10% 0 5%;
  width: 75%;
  margin: auto;
  max-width: 580px;
  display: block;
  text-align: center;
}
.mainvisual:after {
  content: "";
  background-image: url("../images/common/pupupu26_main-line.png");
  width: 100%;
  height: 12vh;
  max-height: 100px;
  display: block;
  background-size: cover;
  background-repeat: repeat-x;
}
.main-card {
  margin: auto;
  width: fit-content;
  margin: 0 0 1rem;
  padding: 0.25rem 0;
  background-color: #fbd68b;
}
.container article.shopinfoBox {
  padding-top: 0.5rem;
}
section.shopinfo,
section.notes {
  border: 8px solid transparent;
  border-image-source: url("../images/common/pupupu26_section-line.svg");
  border-image-slice: 15;
  border-image-repeat: stretch;
  padding: 20px 10px;
  margin-bottom: 20px;
}
.info-card {
  display: grid;
  grid-gap: 20px;
  margin-top: 20px;
}
.infocell-grid {
  display: grid;
  font-size: 10px;
}
.infocell-grid ul {
  display: grid;
  box-shadow: 0 0 0 1px #622b30;
}
.infocell-grid li {
  display: grid;
  grid-template: auto/6.5rem auto;
}
.infocell-grid li span {
  padding: 6px;
  align-content: center;
}
.infocell-grid li span.area {
  border-right: 1px solid #622b30;
  border-bottom: 1px solid #622b30;
}
.infocell-grid li span.shops {
  border-bottom: 1px solid #622b30;
}
.infocell-grid li:last-child span {
  border-bottom: none;
}
.info-cell .info-image {
  aspect-ratio: 784/327;
}
.infoNotes {
  font-size: 20px;
  font-weight: bolder;
  width: 174px;
  height: 50px;
  border-radius: 25px;
  background-color: #b0d64d;
  box-shadow: 0 0 0 3px #82c72c inset, 0 0 0 6px #622b30 inset;
  display: grid;
  place-content: center;
  grid-template: auto/auto auto;
  grid-gap: 8px;
  margin: 40px auto 20px;
}
.infoNotes p {
  margin-right: 0.5rem;
}
.infoNotes:before {
  content: "";
  background-image: url("../images/common/pupupu26_icon-arrowR.svg");
  width: 24px;
  height: 20px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  align-self: center;
}
.webShop {
  font-size: 18px;
  font-weight: bolder;
  width: 200px;
  height: 42px;
  border-radius: 22px;
  display: grid;
  place-content: center;
  grid-template: auto/auto auto;
  grid-gap: 8px;
  margin: auto;
  cursor: default;
}
.webShop p {
  margin-right: 0.5rem;
}
.webShop:before {
  content: "";
  width: 24px;
  height: 20px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  align-self: center;
}
.webShop.disabled {
  background-color: #b6b3ae;
  box-shadow: 0 0 0 3px #94918d inset;
  color: #7d7a77;
}
.webShop.disabled:before {
  background-image: url("../images/common/pupupu26_icon-cart.svg");
}
.novelty {
  padding: 20px;
  border-radius: 6px;
}
.novelty h3 {
  background-image: none;
  display: grid;
  grid-template: auto/auto auto;
  place-items: center;
  grid-gap: 8px;
  margin: auto;
  width: fit-content;
}
.novelty .h3label {
  font-size: 12px;
  background-color: #c84453;
  color: #fff;
  border-radius: 4px;
  width: 60px;
  height: 22px;
  line-height: 22px;
}
.novelty .disc {
  text-align: left;
  font-size: 14px;
  padding: 0 0.75rem;
}
.novelty .disc .attention {
  font-size: 10px;
  position: relative;
  padding-left: 1.2em;
}
.novelty .disc .attention:before {
  display: inline-block;
  content: "※";
  position: absolute;
  left: 0;
}
.novelty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 20px;
}
.n-1 {
  background-color: #ffdee3;
}
.n-2 {
  background-color: #d3e890;
}
.novelty-img {
  background-color: #fff;
  width: 100%;
  margin-bottom: 10px;
  aspect-ratio: 16/9;
  border-radius: 4px;
}
.novelty-img img {
  border-radius: 4px;
}
.special-img {
  width: 100%;
  aspect-ratio: 15/9;
  margin-bottom: 10px;
}
.specialBox .disc {
  text-align: left;
  font-size: 14px;
}
.specialBox .disc .attention {
  font-size: 12px;
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 0.3rem;
}
.specialBox .disc .attention:before {
  display: inline-block;
  content: "※";
  position: absolute;
  left: 0;
}
.special-example {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 10px;
}
.special-example .label {
  font-size: 10px;
  line-height: 10px;
  width: 46px;
  height: 16px;
  align-content: center;
}
.special-example ul {
  display: grid;
  grid-gap: 2px;
}
.special-example li {
  background-color: #f5deb5;
  padding: 6px 2rem;
  border-radius: 4px;
  line-height: 1rem;
  margin-bottom: 20px;
  position: relative;
}
.special-example li:after {
  content: "";
  background-image: url("../images/common/pupupu26_icon-arrowD.svg");
  position: absolute;
  top: 100%;
  left: 0;
  height: 20px;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.special-example li:last-child:after {
  background-image: none;
}
.goodsBox .goods-list-inner {
  text-align: left;
}
.goodsBox .attention {
  text-align: left;
  font-size: 12px;
  line-height: 1rem;
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 0.5rem;
}
.goodsBox .attention:before {
  display: inline-block;
  content: "※";
  position: absolute;
  left: 0;
}
.goods-list-inner {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  margin-bottom: 10px;
}
.goods-list-item {
  background-color: #faf2e5;
  padding: 8px;
  border-radius: 4px;
  display: grid;
  grid-template: auto 1fr/100%;
}
.goods-list-item .item-img {
  width: 100%;
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 4px;
  margin-bottom: 8px;
  position: relative;
}
.goods-list-item .item-img .label {
  position: absolute;
  top: 4px;
  left: 4px;
  font-size: 12px;
  padding: 2px 6px;
  width: auto;
  color: #622b30;
  background-color: #f5a54e;
}
.goods-list-item .item-img img {
  border-radius: 4px;
}
.goods-list-item .item-disc {
  font-size: 14px;
  padding: 0 2px;
  display: grid;
  grid-template-rows: 1fr auto;
}
.goods-list-item .item-disc .item-name {
  margin-bottom: 12px;
}
.goods-list-item .item-disc .item-price {
  text-align: right;
  font-size: 12px;
}
article.snsBox {
  padding: 0 22px 40px;
}
.sns-x {
  width: fit-content;
  display: block;
  margin: auto;
  padding: 0 1rem;
  max-width: 460px;
  aspect-ratio: 214/43;
}
footer small {
  font-size: 14px;
  text-align: center;
  background-image: url("../images/common/pupupu26_main-line2-pc.png");
  background-size: cover;
  background-repeat: repeat-x;
  background-position: center bottom;
  display: flex;
  align-items: end;
  aspect-ratio: 67/21;
  width: 100%;
  max-height: 140px;
  justify-content: center;
  text-align: center;
  padding-bottom: 0.5rem;
}
body#info-notes {
  background-color: #faf2e5;
  background-image: none;
}
#info-notes .infoNotes {
  margin: 0px auto 20px;
}
#info-notes .infoNotes:before {
  background-image: url("../images/common/pupupu26_icon-arrowL.svg");
}
.notes .label {
  width: 114px;
}
.notes .label:not(:first-child) {
  margin-top: 24px;
}
.notes ul {
  display: grid;
  grid-gap: 8px;
}
.notes li {
  text-align: left;
  font-size: 12px;
}
.notes .attention {
  position: relative;
  padding-left: 1.2em;
}
.notes .attention:before {
  display: inline-block;
  content: "※";
  position: absolute;
  left: 0;
}
.notes .dot {
  position: relative;
  padding-left: 1.2em;
}
.notes .dot:before {
  content: "";
  background-image: url("../images/common/pupupu_icon-star.svg");
  width: 12px;
  height: 12px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  left: 0;
  top: 4px;
}
.notes-example {
  text-align: center;
  font-size: 10px;
  background-color: #f5deb5;
  padding: 6px 16px;
  border-radius: 4px;
  line-height: 1rem;
  margin-bottom: 20px;
  position: relative;
  width: fit-content;
  margin: auto;
}
.notes-example ul {
  grid-template: auto auto auto/auto auto auto;
  width: fit-content;
  margin: auto;
}
@media screen and (min-width: 960px) {
  .head-menu-btn {
    right: 30px;
    top: 30px;
    width: 60px;
    height: 60px;
  }
  .head-menu-btn span {
    left: 15px;
  }
  .head-menu-btn.menu-close span:nth-of-type(1) {
    top: 18px;
  }
  .head-menu-btn.menu-close span:nth-of-type(2) {
    top: 28px;
  }
  .head-menu-btn.menu-close span:nth-of-type(3) {
    top: 38px;
  }
  .head-menu-btn.menu-open span:nth-of-type(1) {
    top: 28px /* 真ん中の位置に移動 */;
  }
  .head-menu-btn.menu-open span:nth-of-type(3) {
    top: 28px /* 真ん中の位置に移動 */;
  }
  .head-menu-list {
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    font-size: 24px;
  }
  .head-menu-list .head-menu {
    padding: 60px 0;
  }
  .head-menu-list .head-menu-logo {
    height: 120px;
    padding: 20px 60px;
  }
  .head-menu-list .head-menu-logo img {
    height: 80px;
  }
  .container {
    overflow: hidden;
  }
  .container article {
    padding: 60px 22px;
  }
  .wrapper {
    transform: rotate(0.03deg);
  }
  .wrapper article {
    max-width: 960px;
    margin: auto;
  }
  .wrapper h2 {
    font-size: 36px;
    margin-bottom: 1.5rem;
    grid-gap: 14px;
  }
  .wrapper h2:before,
  .wrapper h2:after {
    width: 24px;
    height: 24px;
  }
  .wrapper h3 {
    font-size: 24px;
    line-height: 2.5rem;
    background-size: 100% 8px;
    background-position: left 1.5rem;
  }
  .wrapper .label {
    font-size: 14px;
    width: 102px;
    padding: 2px 0;
    margin-bottom: 0.5rem;
  }
  .wrapper .h3-label {
    font-size: 16px;
    width: 104px;
    padding: 6px 0;
  }
  .wrapper p.attention {
    font-size: 14px;
    line-height: 1.5em;
  }
  .wrapper .shopinfoBox h2 {
    margin-bottom: 1.3rem;
  }
  .mainvisual {
    padding: 5% 0 0;
  }
  .mainvisual img {
    padding: 0 0 5%;
  }
  .mainvisual:after {
    max-height: 150px;
    background-size: contain;
    aspect-ratio: 731/71;
    height: auto;
  }
  .container article.shopinfoBox {
    padding-top: 1rem;
  }
  .main-card {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0;
    border-radius: 4px;
  }
  .main-card img {
    width: 85%;
    margin: auto;
  }
  section.shopinfo,
  section.notes {
    border: 14px solid transparent;
    border-image-source: url("../images/common/pupupu26_section-line.svg");
    border-image-slice: 15;
    padding: 30px 40px;
  }
  .novelty-bg,
  .goods-bg {
    background-size: 15% auto, 15% auto;
  }
  .info-cell {
    font-size: 20px;
    line-height: 1.2em;
  }
  .infocell-grid {
    font-size: 14px;
  }
  .infocell-grid li {
    display: grid;
    grid-template: auto/12rem auto;
  }
  .infocell-grid li span {
    padding: 0.75rem;
  }
  .webShop {
    width: 260px;
    height: 50px;
    border-radius: 25px;
    font-size: 24px;
    margin-bottom: 10px;
  }
  .webShop:before {
    height: 26px;
    width: 26px;
  }
  .webShop.disabled {
    box-shadow: 0 0 0 4px #94918d inset;
  }
  .infoNotes {
    box-shadow: 0 0 0 4px #82c72c inset, 0 0 0 8px #622b30 inset;
    font-size: 28px;
    width: 280px;
    height: 70px;
    border-radius: 35px;
    line-height: 1em;
    grid-gap: 16px;
  }
  .infoNotes p {
    margin-right: 0.5em;
  }
  .infoNotes:before {
    background-image: url("../images/common/pupupu26_icon-arrowR.svg");
    width: 33px;
    height: 30px;
  }
  .novelty .h3label {
    font-size: 14px;
    width: 72px;
    height: 26px;
    line-height: 26px;
  }
  .novelty .disc {
    font-size: 16px;
    line-height: 1.3em;
  }
  .novelty .disc p:first-child {
    margin-bottom: 0.3em;
  }
  .novelty .disc .attention {
    font-size: 14px;
    line-height: 1.5em;
  }
  .special-img {
    aspect-ratio: 2593/1219;
    margin-bottom: 20px;
  }
  section.special {
    border: 14px solid transparent;
    border-image-source: url("../images/common/pupupu26_section-line.svg");
    border-image-slice: 15;
    padding: 30px 40px;
  }
  section.special .disc {
    padding: 0 4rem;
    font-size: 20px;
    line-height: 1.3em;
  }
  section.special .disc .attention {
    font-size: 14px;
    line-height: 1.5em;
  }
  .special-example {
    font-size: 14px;
    margin-top: 20px;
  }
  .special-example .label {
    font-size: 14px;
    line-height: 14px;
    width: 60px;
    height: 24px;
  }
  .special-example ul {
    width: 480px;
    margin: auto;
    grid-gap: 14px;
  }
  .special-example li {
    padding: 12px;
    line-height: 1.5em;
  }
  .special-example li:after {
    margin-top: 8px;
    background-size: contain;
  }
  .goods-list-inner {
    font-size: 16px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 20px;
    margin-bottom: 20px;
  }
  .goods-list-item {
    padding: 10px;
  }
  .goods-list-item .item-disc .item-name {
    padding-left: 6px;
    font-size: 14px;
  }
  .goods-list-item .item-disc .item-price {
    font-size: 14px;
  }
  article.snsBox {
    padding: 40px 22px;
  }
  footer small {
    font-size: 16px;
    aspect-ratio: 160/23;
    max-height: 180px;
    background-size: contain;
    padding-bottom: 0.75rem;
  }
  article.notesBox {
    padding-top: 100px;
  }
  section.notes {
    padding: 60px 100px;
  }
  section.notes .label {
    background-color: transparent;
    color: #c84453;
    font-size: 20px;
    width: auto;
    text-align: left;
    font-weight: bolder;
    position: relative;
    padding-left: 1.2em;
  }
  section.notes .label:before {
    content: "";
    background-image: url("../images/common/pupupu_icon-star2.svg");
    width: 20px;
    height: 20px;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    left: 0;
    top: 5px;
  }
  section.notes ul {
    grid-gap: 10px;
  }
  section.notes li {
    font-size: 16px;
    line-height: 1.3em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: rotate(0.03deg);
    display: inline-block;
  }
  section.notes .dot:before {
    width: 14px;
    height: 14px;
    top: 3px;
  }
  section.notes .notes-example {
    font-size: 14px;
    padding: 10px 80px;
  }
  section.notes .notes-example ul {
    grid-gap: 6px;
  }
  section.notes .infoNotes {
    margin-bottom: 40px;
  }
  section.notes .infoNotes:before {
    background-image: url("../images/common/pupupu26_icon-arrowL.svg");
  }
}
@media screen and (min-width: 960px) and (max-width: 1100px) {
  .friends.web {
    top: 90%;
    left: -2%;
  }
  .friends.notes {
    right: 1%;
    bottom: 1%;
    max-width: 160px;
  }
  .friends.special-1 {
    display: none;
  }
  .friends.special-2 {
    display: block;
    bottom: 1%;
    right: 1%;
    width: 14%;
    max-width: 200px;
  }
  .friends.infotop {
    width: 16%;
    max-width: 160px;
    left: 66%;
  }
  .friends.infobottom {
    max-width: 260px;
    left: 1%;
    bottom: -2%;
  }
}
@media screen and (min-width: 1100px) {
  .friends {
    filter: drop-shadow(0px 0px 2px #d4bf9f);
  }
  .friends.web {
    top: 90%;
    left: -10%;
    width: 30%;
    max-width: 200px;
  }
  .friends.web-2 {
    display: block;
    width: 25%;
    right: -11%;
    top: -30%;
    margin: 0 auto;
  }
  .friends.notes {
    right: 1%;
    bottom: 1%;
    max-width: 160px;
  }
  .friends.special-1 {
    display: none;
  }
  .friends.special-2 {
    display: block;
    bottom: 1%;
    right: 1%;
    width: 14%;
    max-width: 200px;
  }
  .friends.bottom {
    max-width: 240px;
    margin-top: 1rem;
  }
  .friends.infotop {
    width: 16%;
    max-width: 160px;
    left: 66%;
  }
  .friends.infobottom {
    max-width: 260px;
    left: -5%;
    bottom: -2%;
  }
}
@media screen and (min-width: 580px) and (max-width: 960px) {
  .novelty-bg,
  .goods-bg {
    background-size: 20% auto, 20% auto;
  }
}
