@charset "UTF-8";
:root {
  --maincolor: #3294cd;
  --subcolor: #fff;
  --textcolor: #3a3a3a;
  --container: 1200px;
}

/* ======== ↓ common ↓ ======== */
#shopnui {
  font-size: 16px;
  font-family: "M PLUS 2", sans-serif;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--textcolor);
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
}

@media screen and (min-width: 801px) and (max-width: 1200px) {
  #shopnui {
    font-size: 1.32vw;
  }
}

@media screen and (max-width: 800px) {
  #shopnui {
    font-size: max(2.2vw,12px);
  }
}

#shopnui * {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#shopnui *:before, #shopnui *:after {
  content: none;
  visibility: visible;
  height: initial;
}

#shopnui a {
  opacity: 1;
  color: inherit;
  background-color: transparent;
  text-decoration: none !important;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

#shopnui a.hover {
  color: var(--maincolor);
  background-color: transparent;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#shopnui ul, #shopnui ol {
  list-style: none;
}

#shopnui img {
  max-width: 100%;
  height: auto;
  display: block;
}

#shopnui .cover {
  width: 100%;
  max-width: none;
  height: auto;
}

#shopnui .sectionWrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

#shopnui .widthWrapper {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 1220px) {
  #shopnui .widthWrapper {
    padding-left: 2%;
    padding-right: 2%;
  }
}

@media screen and (max-width: 800px) {
  #shopnui .widthWrapper {
    padding-left: 4%;
    padding-right: 4%;
  }
}

#shopnui .insideWrapper {
  position: relative;
  width: 80%;
  max-width: inherit;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#shopnui :root {
  --c-flex-gap: 2%;
}

#shopnui .c-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#shopnui .c-flex.gap > * {
  margin-left: var(--c-flex-gap);
}

#shopnui .c-flex.gapLarge > * {
  margin-left: calc(var(--c-flex-gap) * 2);
}

#shopnui .c-flex:not(.c-flex-reverse) > *:first-child {
  margin-left: 0;
}

#shopnui .c-flex--2 > * {
  width: calc(100% / 2);
}

#shopnui .c-flex--2.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(2 - 1))) / 2);
}

#shopnui .c-flex--2.gap > *:nth-child(2n+1) {
  margin-left: 0;
}

#shopnui .c-flex--3 > * {
  width: calc(100% / 3);
}

#shopnui .c-flex--3.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(3 - 1))) / 3);
}

#shopnui .c-flex--3.gap > *:nth-child(3n+1) {
  margin-left: 0;
}

#shopnui .c-flex--4 > * {
  width: calc(100% / 4);
}

#shopnui .c-flex--4.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(4 - 1))) / 4);
}

#shopnui .c-flex--4.gap > *:nth-child(4n+1) {
  margin-left: 0;
}

#shopnui .c-flex--5 > * {
  width: calc(100% / 5);
}

#shopnui .c-flex--5.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(5 - 1))) / 5);
}

#shopnui .c-flex--5.gap > *:nth-child(5n+1) {
  margin-left: 0;
}

#shopnui .c-flex--6 > * {
  width: calc(100% / 6);
}

#shopnui .c-flex--6.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(6 - 1))) / 6);
}

#shopnui .c-flex--6.gap > *:nth-child(6n+1) {
  margin-left: 0;
}

#shopnui .c-flex--end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

#shopnui .c-flex--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#shopnui .c-flex--between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#shopnui .c-flex--alignEnd {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

#shopnui .c-flex--alignCenter {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#shopnui .c-flex--wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#shopnui .c-flex--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

#shopnui .c-flex--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#shopnui .alignCenter {
  text-align: center;
}

#shopnui .alignRight {
  text-align: right;
}

#shopnui .alignLeft {
  text-align: left;
}

#shopnui img.alignCenter {
  margin-left: auto;
  margin-right: auto;
}

#shopnui img.alignLeft {
  margin-left: 0;
  margin-right: auto;
}

#shopnui img.alignRight {
  margin-left: auto;
  margin-right: 0;
}

#shopnui .lh-10 {
  line-height: 1;
}

#shopnui .lh-15 {
  line-height: 1.5;
}

#shopnui .lh-20 {
  line-height: 2;
}

#shopnui .font-10 {
  font-size: 10px !important;
}

#shopnui .font-12 {
  font-size: 12px !important;
}

#shopnui .font-14 {
  font-size: 14px !important;
}

#shopnui .font-16 {
  font-size: 16px !important;
}

#shopnui .font-18 {
  font-size: 18px !important;
}

#shopnui .font-20 {
  font-size: 20px !important;
}

#shopnui .font-22 {
  font-size: 22px !important;
}

#shopnui .font-24 {
  font-size: 24px !important;
}

#shopnui .font-26 {
  font-size: 26px !important;
}

#shopnui .font-28 {
  font-size: 28px !important;
}

#shopnui .font-30 {
  font-size: 30px !important;
}

@media screen and (min-width: 801px) and (max-width: 1200px) {
  #shopnui .font-10 {
    font-size: 0.83333vw !important;
  }
  #shopnui .font-12 {
    font-size: 1vw !important;
  }
  #shopnui .font-14 {
    font-size: 1.16667vw !important;
  }
  #shopnui .font-16 {
    font-size: 1.33333vw !important;
  }
  #shopnui .font-18 {
    font-size: 1.5vw !important;
  }
  #shopnui .font-20 {
    font-size: 1.66667vw !important;
  }
  #shopnui .font-22 {
    font-size: 1.83333vw !important;
  }
  #shopnui .font-24 {
    font-size: 2vw !important;
  }
  #shopnui .font-26 {
    font-size: 2.16667vw !important;
  }
  #shopnui .font-28 {
    font-size: 2.33333vw !important;
  }
  #shopnui .font-30 {
    font-size: 2.5vw !important;
  }
}

@media screen and (max-width: 800px) {
  #shopnui .font-10 {
    font-size: 1.25vw !important;
  }
  #shopnui .font-12 {
    font-size: 1.5vw !important;
  }
  #shopnui .font-14 {
    font-size: 1.75vw !important;
  }
  #shopnui .font-16 {
    font-size: 2vw !important;
  }
  #shopnui .font-18 {
    font-size: 2.25vw !important;
  }
  #shopnui .font-20 {
    font-size: 2.5vw !important;
  }
  #shopnui .font-22 {
    font-size: 2.75vw !important;
  }
  #shopnui .font-24 {
    font-size: 3vw !important;
  }
  #shopnui .font-26 {
    font-size: 3.25vw !important;
  }
  #shopnui .font-28 {
    font-size: 3.5vw !important;
  }
  #shopnui .font-30 {
    font-size: 3.75vw !important;
  }
}

#shopnui .mt-10 {
  margin-top: 1em !important;
}

#shopnui .mt-15 {
  margin-top: 1.5em !important;
}

#shopnui .mt-20 {
  margin-top: 2em !important;
}

#shopnui .mt-25 {
  margin-top: 2.5em !important;
}

#shopnui .mt-30 {
  margin-top: 3em !important;
}

#shopnui .mt-35 {
  margin-top: 3.5em !important;
}

#shopnui .mt-40 {
  margin-top: 4em !important;
}

#shopnui .mt-45 {
  margin-top: 4.5em !important;
}

#shopnui .mt-50 {
  margin-top: 5em !important;
}

#shopnui .u-note {
  padding-left: 1em;
  text-indent: -1em;
  display: inline-block;
}

#shopnui .u-marker {
  padding: 0 0.2em;
  margin: 0 0.2em;
  background: var(--maincolor);
  color: #fff;
}

#shopnui .u-maincolor {
  color: var(--maincolor);
}

#shopnui .u-subcolor {
  color: var(--subcolor);
}

#shopnui .u-hidden {
  display: none;
  visibility: hidden;
}

#shopnui .c-blockLink a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#shopnui [data-ruby] {
  position: relative;
  display: inline-block;
  line-height: 1;
}

#shopnui [data-ruby]:before {
  content: attr(data-ruby);
  position: absolute;
  top: -1.2em;
  left: 50%;
  font-size: max(0.3em,8px);
  line-height: 1;
  text-align: center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

@media screen and (min-width: 801px) {
  #shopnui .sp {
    display: none !important;
  }
  #shopnui a[href^="tel:"] {
    pointer-events: none;
  }
}

@media screen and (max-width: 800px) {
  #shopnui .pc {
    display: none !important;
  }
}

/* ======== ↑ End common ↑ ======== */
/* ======== ↓ main ↓ ======== */
#cduWrap {
  width: 100%;
  background: #fff;
}

#cduFooter {
  max-width: 1016px;
}

#shopnui .parallaxWrapper {
  position: relative;
}

#shopnui .parallax {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
  z-index: -1;
}

#shopnui .parallax .bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 105vh;
}
@media screen and (max-width: 800px) {
  #shopnui .parallax {
    background-size: auto 100vh;
  }
}

#shopnui h2.heading {
  font-family: "プフ ピクニック", "Puhu Picnic", sans-serif;
  font-size: 60px;
  text-align: center;
  width: 10.067em;
  margin: 0 auto;
  padding-bottom: 0.35em;
}

#shopnui h2.heading .en {
  display: block;
  color: #fedd01;
  line-height: 1.2;
}

#shopnui h2.heading .ja {
  font-size: 56.66%;
  display: block;
  color: #fff;
  line-height: 1;
}

#shopnui h2.heading.js-scroll {
  -webkit-transition: 0.5s cubic-bezier(0.33, 0, 0.33, 1.5) 0.3s;
  transition: 0.5s cubic-bezier(0.33, 0, 0.33, 1.5) 0.3s;
  opacity: 0;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
}

#shopnui h2.heading.is-scroll {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

@media screen and (max-width: 1220px) {
  #shopnui h2.heading {
    font-size: 5vw;
  }
}

@media screen and (max-width: 800px) {
  #shopnui h2.heading {
    font-size: 7vw;
  }
}

#shopnui .c-btn a {
  font-size: 26px;
  text-align: center;
  width: 100%;
  max-width: 23.077em;
  min-height: 2.385em;
  color: #fff;
  background: #0097c2;
  border-radius: 3em;
  padding: 0.25em 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  position: relative;
  -webkit-transition: 0.05s;
  transition: 0.05s;
}

#shopnui .c-btn a:hover {
  background: #1db6e0;
  -webkit-transform: scale(0.97);
          transform: scale(0.97);
}

@media screen and (min-width: 801px) and (max-width: 1200px) {
  #shopnui .c-btn a {
    font-size: 2.16vw;
  }
}

@media screen and (max-width: 800px) {
  #shopnui .c-btn a {
    font-size: min(3.25vw,26px);
  }
}

#shopnui .c-search form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

#shopnui .c-search input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

#shopnui .c-search input[type="text"] {
  width: 319px;
  background: #f5f5f5;
  border: 1px solid var(--maincolor);
  border-radius: 3em;
  padding: 0.75em;
}

#shopnui .c-search button,
#shopnui .c-search input[type="image"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

#shopnui .c-search button[type="submit"],
#shopnui .c-search input[type="image"] {
  width: 40px;
  aspect-ratio: 1 / 1;
  background: var(--maincolor);
  border: initial;
  border-radius: 50%;
  position: relative;
}

#shopnui .c-search button[type="submit"] img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 52.5%;
}

#shopnui .c-itemList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 75px 20px;
  font-weight: 500;
}

#shopnui .c-itemList > li {
  max-width: 285px;
}

#shopnui .c-itemList figure + *, #shopnui .c-itemList .title + * {
  margin-top: 1em;
}

#shopnui .c-itemList .price {
  font-size: 14px;
}

#shopnui .c-itemList .price .value {
  font-size: 142.86%;
}

#shopnui .c-itemList a img {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

#shopnui .c-itemList a:hover img {
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}

@media screen and (min-width: 801px) {
  #shopnui .c-itemList > li {
    width: calc(calc(100% - 60px) / 4);
  }
}

@media screen and (max-width: 1220px) {
  #shopnui .c-itemList {
    gap: 6.25vw 20px;
  }
  #shopnui .c-itemList .price {
    font-size: 1.16vw;
  }
}

@media screen and (max-width: 800px) {
  #shopnui .c-itemList {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #shopnui .c-itemList .price {
    font-size: max(2.2vw,12px);
  }
  #shopnui .c-itemList > li {
    width: calc(calc(100% - 20px) / 2);
  }
}

#shopnui .c-copyright {
  font-size: 14px;
  text-align: center;
}

#shopnui #totop {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 10;
  -webkit-transition: 2s cubic-bezier(0.2, 0, 0, 1);
  transition: 2s cubic-bezier(0.2, 0, 0, 1);
}

#shopnui #totop:not(.active) {
  right: -100%;
}

@media screen and (max-width: 800px) {
  #shopnui #totop {
    bottom: 13.5vw;
    max-width: 20vw;
  }
}

#shopnui .contentsHeader {
  border-bottom: 1px solid #e1e1e1;
}

#shopnui .contentsHeader .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5% 4.5% 0.4% 1.7%;
}

#shopnui .contentsHeader .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

#shopnui .contentsHeader .logo img.brand {
  width: 10.4vw;
  max-width: 104px;
}

#shopnui .contentsHeader .logo img.shop {
  width: 38.9vw;
  max-width: 389px;
}

@media screen and (max-width: 1220px) {
  #shopnui .contentsHeader .c-search input {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  #shopnui .contentsHeader .c-search input[type="text"] {
    max-width: 40vw;
  }
}

@media screen and (max-width: 800px) {
  #shopnui .contentsHeader .logo {
    margin-left: 2.5vw;
  }
  #shopnui .contentsHeader .logo img.brand {
    max-width: 13.87vw;
  }
  #shopnui .contentsHeader .logo img.shop {
    max-width: 51.87vw;
  }
  #shopnui .contentsHeader .c-search {
    position: relative;
  }
  #shopnui .contentsHeader .c-search:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  #shopnui .contentsHeader .c-search.is-active:after {
    pointer-events: none;
  }
  #shopnui .contentsHeader .c-search.is-active input[type="text"] {
    pointer-events: auto;
    opacity: 1;
  }
  #shopnui .contentsHeader .c-search input[type="text"] {
    position: absolute;
    top: 1.5vw;
    right: calc(100% + 2vw);
    bottom: 0;
    max-width: 80vw;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}

#shopnui .p-kv {
  padding: 20px 0 25px;
  position: relative;
}

#shopnui .p-kv_slider {
  position: relative;
}

#shopnui .p-kv_slider .swiper-slide {
  width: 65.2vw;
  max-width: 785px;
}
#shopnui .p-kv_slider .swiper-slide img {
  width: 98%;
  height: auto;
  margin: 0 auto;
}

#shopnui .p-kv_slider .swiper-controls {
  padding: 40px 2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

#shopnui .p-kv_slider .swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
  -webkit-transform: none !important;
          transform: none !important;
}

#shopnui .p-kv_slider .swiper-pagination-bullet, #shopnui .p-kv_slider .swiper-pagination > a {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  font-size: 0;
  background: #a1a1a1;
  width: 19px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: block;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  overflow: hidden;
  position: relative;
}

#shopnui .p-kv_slider .swiper-pagination-bullet:after, #shopnui .p-kv_slider .swiper-pagination > a:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0%;
  height: 100%;
  background: var(--maincolor);
  -webkit-transition: 0.3s cubic-bezier(0, 0.5, 0.5, 1);
  transition: 0.3s cubic-bezier(0, 0.5, 0.5, 1);
}

#shopnui .p-kv_slider .swiper-pagination-bullet-active:after, #shopnui .p-kv_slider .swiper-pagination-bullet.is-active:after, #shopnui .p-kv_slider .swiper-pagination > a-active:after, #shopnui .p-kv_slider .swiper-pagination > a.is-active:after {
  width: 100%;
  left: 0;
  right: auto;
}

#shopnui .p-kv_slider .swiper-play {
  width: 30px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 2px solid var(--maincolor);
  cursor: pointer;
  position: relative;
}

#shopnui .p-kv_slider .swiper-play:after {
  content: '';
  position: absolute;
  top: 0;
  left: 4px;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-left: 12px solid var(--maincolor);
  border-right: 0;
}

#shopnui .p-kv_slider .swiper-play.is-pause:after {
  left: 0;
  width: 12px;
  height: 12px;
  border: none;
  background: -webkit-gradient(linear, left top, right top, color-stop(33.33%, var(--maincolor)), color-stop(33.33%, transparent), color-stop(66.66%, transparent), color-stop(66.66%, var(--maincolor)));
  background: linear-gradient(90deg, var(--maincolor) 33.33%, transparent 33.33%, transparent 66.66%, var(--maincolor) 66.66%);
}

#shopnui .p-kv .dec {
  position: absolute;
  /*
  left: 8.1%;
  */
  left: 11%;
  bottom: -4.4%;
  width: 11.4%;
  z-index: 1;
}

#shopnui .p-kv .dec img {
  -webkit-transform-origin: 45% bottom;
          transform-origin: 45% bottom;
  -webkit-animation: yura 0.8s ease-in-out 0s infinite alternate forwards running;
          animation: yura 0.8s ease-in-out 0s infinite alternate forwards running;
}

@media screen and (max-width: 1220px) {
  #shopnui .p-kv_slider .swiper-controls {
    padding: 4% 0 2%;
  }
}

@media screen and (max-width: 800px) {
  #shopnui .p-kv_slider .swiper-slide img {
    width: 100%;
    margin: 0 auto;
  }
  #shopnui .p-kv_slider .swiper-controls {
    gap: 4vw;
  }
  #shopnui .p-kv_slider .swiper-pagination {
    gap: 4vw;
  }
  #shopnui .p-kv_slider .swiper-pagination-bullet, #shopnui .p-kv_slider .swiper-pagination > a {
    width: 3vw;
  }
  #shopnui .p-kv .dec {
    left: 2%;
    width: 15%;
  }
}

#shopnui .p-newItem {
  padding-top: 80px;
}

#shopnui .p-newItem .c-itemList {
  margin-top: 65px;
}

#shopnui .p-newItem .c-btn {
  margin-top: 80px;
}

@media screen and (max-width: 1220px) {
  #shopnui .p-newItem {
    padding-top: 8%;
  }
  #shopnui .p-newItem .c-itemList {
    margin-top: 6%;
  }
  #shopnui .p-newItem .c-btn {
    margin-top: 8%;
  }
}

#shopnui .p-recommend {
  margin-top: 82px;
  padding: 110px 0 140px;
  /*
  -webkit-animation: recommendBg 10s linear 0s infinite normal forwards running;
          animation: recommendBg 10s linear 0s infinite normal forwards running;
          */
}

@-webkit-keyframes recommendBg {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 425px 235px;
  }
}

@keyframes recommendBg {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 425px 235px;
  }
}

#shopnui .p-recommend .c-itemList {
  margin-top: 65px;
}

@media screen and (max-width: 1220px) {
  #shopnui .p-recommend {
    margin-top: 8%;
    padding: 10% 0 14%;
  }
  #shopnui .p-recommend .c-itemList {
    margin-top: 6%;
  }
}

#shopnui .p-brand {
  padding-top: 75px;
}

#shopnui .p-brand_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  margin-top: 100px;
}

#shopnui .p-brand_list a {
  display: block;
}

#shopnui .p-brand_list a:hover {
  -webkit-filter: contrast(0.8) brightness(1.2);
          filter: contrast(0.8) brightness(1.2);
  -webkit-animation: bound 0.4s cubic-bezier(0.33, 0, 0.33, 1) 0s 1 normal forwards running;
          animation: bound 0.4s cubic-bezier(0.33, 0, 0.33, 1) 0s 1 normal forwards running;
}

@media screen and (max-width: 1220px) {
  #shopnui .p-brand {
    padding-top: 7%;
  }
  #shopnui .p-brand_list {
    margin-top: 10%;
  }
}

@media screen and (max-width: 800px) {
  #shopnui .p-brand_list {
    gap: 4vw;
  }
}

#shopnui .p-character {
  margin-top: 170px;
  padding: 87px 0 60px;
}

#shopnui .p-character_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.25em 7em;
  font-size: 20px;
  font-weight: 500;
  margin-top: 50px;
  padding: 0 3.5%;
}

#shopnui .p-character_list > li a {
  color: #53c8f8;
  border-bottom: 1px solid currentColor;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

#shopnui .p-character_list > li a:hover {
  color: #0097c2;
  border-color: transparent;
}

@media screen and (min-width: 801px) {
  #shopnui .p-character_list > li {
    width: calc(calc(100% - 7em) / 2);
  }
}

@media screen and (max-width: 1220px) {
  #shopnui .p-character {
    margin-top: 17%;
    padding: calc(5% + 30px) 0 6%;
  }
  #shopnui .p-character_list {
    font-size: 1.67vw;
    margin-top: 5%;
  }
}

@media screen and (max-width: 800px) {
  #shopnui .p-character_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.25em 1.5em;
    font-size: 4vw;
    padding: 0;
  }
}

/* Animation */
.js-scroll.fadeInUp {
  opacity: 0;
  -webkit-transition: 0.6s ease 0.3s;
  transition: 0.6s ease 0.3s;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.js-scroll.fadeInLeft {
  opacity: 0;
  -webkit-transition: 0.6s ease 0.3s;
  transition: 0.6s ease 0.3s;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
}

.js-scroll.fadeInRight {
  opacity: 0;
  -webkit-transition: 0.6s ease 0.3s;
  transition: 0.6s ease 0.3s;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}

.js-scroll.fadeInZoom {
  opacity: 0;
  -webkit-transition: 0.6s ease 0.3s;
  transition: 0.6s ease 0.3s;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.js-scroll.is-scroll.fadeInUp, .js-scroll.is-scroll.fadeInLeft, .js-scroll.is-scroll.fadeInRight, .js-scroll.is-scroll.fadeInZoom {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

@-webkit-keyframes bound {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  75% {
    -webkit-transform: scale(0.97);
            transform: scale(0.97);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes bound {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  75% {
    -webkit-transform: scale(0.97);
            transform: scale(0.97);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes yura {
  0% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  100% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
}

@keyframes yura {
  0% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  100% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
}

/* ======== ↑ End main ↑ ======== */
