@font-face {
  font-family: SHanSanH;
  src: url("//staticcdn.bandaihobbysite.cn/fonts/SourceHanSansCN-Heavy.otf");
}
@font-face {
  font-family: SHanSanB;
  src: url("//staticcdn.bandaihobbysite.cn/fonts/SourceHanSansCN-Bold.otf");
}
@font-face {
  font-family: SHanSanM;
  src: url("//staticcdn.bandaihobbysite.cn/fonts/SourceHanSansCN-Medium.otf");
}
@font-face {
  font-family: SHanSanR;
  src: url("//staticcdn.bandaihobbysite.cn/fonts/SourceHanSansCN-Regular.otf");
}
@font-face {
  font-family: Leefont;
  src: url("//staticcdn.bandaihobbysite.cn/fonts/Leefont蒙黑体.ttf") format("truetype");
}
@font-face {
  font-family: Freeman-Regular;
  src: url("//staticcdn.bandaihobbysite.cn/fonts/Freeman-Regular.ttf") format("truetype");
}

:root {
  --textcolor: #fff;
  --container: 750px;
  --red: #c90000;
  --yellow: #ffb700;
  --cream: #fff2bd;
}

body{margin:0;padding:0;color:#000;font-size:15px;line-height:1.7;width:100%;min-height:100%;font-family:SHanSanB,sans-serif;}
img{max-width:100%;}

#contents {
  width: 100%;
  min-height: 100vh;
  color: var(--textcolor);
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0;
  overflow: hidden;
  position: relative;
}

#contents * {
  box-sizing: border-box;
}

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

#contents .mainWrapper {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  background: #e9e9e9;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

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

#contents .parallax .bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 105vh;
}

#contents .parallax.--body .bg {
  background: url(../images/body_bg.png) no-repeat center/cover;
}

.hero {
  margin: 0;
}

.videoSection {
  height: 575px;
  margin-top: 48px;
  padding-top: 58px;
  background:
    url(../images/video_bg.png) no-repeat center top/100% 100%,
    linear-gradient(180deg, #e9e9e9 0 52px, var(--cream) 52px 100%);
  position: relative;
}

.videoCard {
  display: block;
  width: 680px;
  max-width: 90.6667%;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.videoCard .playIcon {
  width: 96px;
  height: 96px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-top: 25px;
}

.pager span,
.pager button {
  appearance: none;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 3px solid #111;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.pager span.active,
.pager button.active {
  background: #111;
}

body.videoModalOpen {
  overflow: hidden;
}

.videoModal {
  box-sizing: border-box;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 40px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.videoModal * {
  box-sizing: border-box;
}

.videoModal.isOpen {
  display: flex;
}

.videoModalBackdrop {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(0, 0, 0, .82);
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
}

.videoModalPanel {
  width: min(1000px, 90vw);
  position: relative;
  z-index: 1;
}

.videoModalFrame {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.videoModalFrame video,
.videoModalFrame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.videoModalClose {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  background: rgba(0, 0, 0, .55);
  cursor: pointer;
  position: absolute;
  right: -22px;
  bottom: calc(100% + 16px);
}

.videoModalClose::before,
.videoModalClose::after {
  content: "";
  width: 24px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
}

.videoModalClose::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.videoModalClose::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.pointSection {
  padding: 48px 0 75px;
  background-color: var(--cream);
  color: #000;
}

.pointCard {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: start;
  gap: 40px;
  width: 680px;
  max-width: 90.6667%;
  margin: 0 auto 26px;
  padding: 18px 18px 18px 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffd31a 0%, #ffa100 100%);
  box-shadow: 0 6px 10px rgba(124, 83, 0, .22);
}

.pointCard:last-child {
  margin-bottom: 0;
}

.pointCard img {
  width: 260px;
  height: 151px;
  border-radius: 9px;
  object-fit: cover;
}

.pointLabel {
  display: inline-flex;
  min-width: 140px;
  height: 32px;
  margin: 0 0 13px;
  padding: 0 16px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #000;
  color: #ffd928;
  font-family: Freeman-Regular, SHanSanB, sans-serif;
  font-size: 26px;
}

.pointText h2 {
  margin: 0 0 8px;
  color: #000;
  font-family: Leefont, SHanSanB, sans-serif;
  font-size: 34px;
  line-height: 1.08;
  white-space: nowrap;
}

.pointText p:last-child {
  margin: 0;
  color: #000;
  font-size: 23px;
  line-height: 1.25;
}

.lineupSection {
  height: 1700px;
  margin-top: -16px;
  padding: 60px 0 0;
  background: url(../images/product_bg.png) no-repeat center top/100% 100%;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 2;
}

.sectionTitle h2,
.productSection h2 {
  margin: 0;
  font-family: Leefont, SHanSanB, sans-serif;
  font-size: 62px;
  letter-spacing: 0;
}

.sectionTitle p {
  margin: 0 0 10px;
  color: #000;
  font-size: 36px;
}

.sectionTitle small {
  display: block;
  color: #000;
  font-size: 21px;
  font-family: SHanSanB, sans-serif;
  line-height: 1.2;
}

.lineupGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 58px 30px;
  width: 680px;
  max-width: 90.6667%;
  margin: 58px auto;
}

.lineupItem {
  display: grid;
  grid-template-rows: 305px 38px 42px;
  row-gap: 14px;
  align-items: start;
  min-width: 0;
}

.lineupItem img {
  align-self: end;
  width: 305px;
  height: 305px;
  object-fit: contain;
  margin: 0 auto;
}

.lineupItem h3 {
  margin: 0;
  font-size: 32px;
  line-height: 1;
}

.lineupItem .metalNameTag {
  display: inline-flex;
  margin-left: 8px;
  padding: 0 8px;
  align-items: center;
  border-radius: 10px;
  background: #fff;
  color: #f27a73;
  font-size: 26px;
  line-height: 1.2;
}

.chips {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.chips button {
  appearance: none;
  display: inline-flex;
  min-width: 118px;
  height: 45px;
  padding: 0 12px;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--red);
  border-radius: 999px;
  background: #fff;
  color: var(--red);
  cursor: pointer;
  font-family: inherit;
  font-size: 22px;
  line-height: 1;
  white-space: nowrap;
}

.chips button.active {
  background: var(--red);
  color: #fff;
}

.chips .num,
.secretItem .num {
  display: inline-flex;
  width: 24px;
  height: 24px;
  margin-right: 4px;
  align-items: center;
  justify-content: center;
  border: 2px solid currentColor;
  border-radius: 5px;
  font-style: normal;
  line-height: 1;
  transform: rotate(45deg);
}

.chips .num {
  flex: none;
}

.chips .num::after,
.secretItem .num::after {
  content: attr(data-num);
  display: block;
  font-size: 22px;
  line-height: 1;
  transform: rotate(-45deg);
}

.secretItem img {
  width: 330px;
  margin: 0 auto;
}

.secretItem p {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 18px 0 0;
  font-size: 32px;
  line-height: 1;
}

.secretItem .num {
  width: 34px;
  height: 34px;
  margin-right: 7px;
  border-radius: 7px;
}

.secretItem .num::after {
  font-size: 30px;
}

.gallerySection {
  margin-top: -16px;
  padding: 130px 0 108px;
  background: #ffc6cb;
  position: relative;
  z-index: 1;
}

.galleryFrame {
  width: 680px;
  max-width: 90.6667%;
  margin: 0 auto;
  position: relative;
}

.galleryViewport {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(125, 65, 65, .28);
}

.galleryTrack {
  display: flex;
  height: 100%;
  transition: transform .35s ease;
}

.galleryTrack img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arrow {
  width: 34px;
  height: 34px;
  padding: 0;
  border: 3px solid var(--red);
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.arrow::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 0 auto;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.arrow.prev {
  left: -16px;
}

.arrow.prev::before {
  border-right: 10px solid var(--red);
  transform: translateX(-1px);
}

.arrow.next {
  right: -16px;
}

.arrow.next::before {
  border-left: 10px solid var(--red);
  transform: translateX(1px);
}

.arrow:active {
  background: var(--red);
}

.arrow.prev:active::before {
  border-right-color: #fff;
}

.arrow.next:active::before {
  border-left-color: #fff;
}

.pager.red {
  gap: 20px;
  margin-top: 33px;
}

.pager.red span,
.pager.red button {
  appearance: none;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 3px solid var(--red);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.pager.red span.active,
.pager.red button.active {
  background: var(--red);
}

.productSection {
  height: 1400px;
  margin-top: -16px;
  padding: 60px 0 0;
  background: url(../images/product_bg2.png) no-repeat center top/100% 100%;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 2;
}

.productSection h2 {
  font-size: 58px;
}

.displayPhoto {
  width: 680px;
  max-width: 90.6667%;
  margin: 40px auto 60px;
  border-radius: 18px;
  box-shadow: 0 7px 14px rgba(63, 15, 114, .28);
}

.releaseDate {
  margin: 0 0 70px;
  font-family: Leefont, SHanSanB, sans-serif;
  font-size: 58px;
  line-height: 1.12;
}

.productInfo {
  display: grid;
  grid-template-columns: 336px minmax(0, 1fr);
  align-items: start;
  width: 680px;
  max-width: 90.6667%;
  margin: 0 auto;
  color: #000;
  text-align: left;
  position: relative;
}

.productInfo > img {
  transform: translateY(-22px);
}

.infoBox {
  padding: 20px 22px 18px;
  border: 3px solid #000;
  border-radius: 0 12px 12px 0;
  border-left-width: 0;
}

.infoBox h3 {
  margin: 0 0 18px;
  font-size: 42px;
  font-family: Leefont, SHanSanB, sans-serif;
  line-height: 1;
}

.infoBox dl {
  margin: 0;
  font-size: 25px;
  line-height: 1.18;
}

.infoBox dt {
  display: inline;
  font-family: SHanSanH, sans-serif;
}

.infoBox dd {
  display: inline;
  margin: 0;
  font-family: SHanSanR, sans-serif;
}

.infoBox dd::after {
  content: "";
  display: block;
  margin-bottom: 7px;
}

.infoBox dt:first-of-type {
  display: block;
}

.infoBox dt:first-of-type + dd {
  display: block;
}

.price {
  display: flex !important;
  align-items: flex-end;
  font-family: SHanSanB, sans-serif!important;
  line-height: 1;
}

.price strong {
  margin-right: 8px;
  font-size: 66px;
  line-height: .95;
}

.price span {
  font-size: 20px;
  font-family: SHanSanR, sans-serif;
  line-height: 1.2;
}

.productNotes {
  width: 325px;
  color: #000;
  font-size: 13px;
  text-align: left;
  position: absolute;
  right: 32px;
  top: 1182px;
}

.productNotes p {
  margin: 0;
  padding-left: 1em;
  text-indent: -1em;
}

.productNotes p:nth-child(2) {
  padding-left: 0;
  text-indent: 0;
}

.copyright {
  color: #000;
  font-size: 18px;
  text-align: left;
  position: absolute;
  left: 38px;
  top: 1295px;
}

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

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

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

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

.js-scroll.fadeInPop {
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.4s cubic-bezier(0.2, 0, 0.2, 1.6) 0.3s, transform 0.4s cubic-bezier(0.2, 0, 0.2, 1.6) 0.3s;
}

.js-scroll.fadeInBright {
  opacity: 0;
  filter: brightness(0);
  transition: opacity 1s ease 0.3s, filter 1s ease 0.3s;
}

.js-scroll.fadeInMaskDown {
  mask-image: linear-gradient(#000 45%, transparent 55%);
  mask-size: 100% 300%;
  mask-position: 0 100%;
  transition: mask-position 1.2s linear 0.3s;
}

.js-scroll.fadeInMaskSlide {
  mask-image: linear-gradient(90deg, #000 45%, transparent 55%);
  mask-size: 300% 100%;
  mask-position: 100% 0;
  transition: mask-position 1s linear 0.3s;
}

.js-scroll.delay1 {
  transition-delay: 0.42s;
}

.js-scroll.delay2 {
  transition-delay: 0.54s;
}

.js-scroll.delay3 {
  transition-delay: 0.66s;
}

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

.js-scroll.is-scroll.fadeInBright {
  opacity: 1;
  filter: brightness(1);
}

.js-scroll.is-scroll.fadeInMaskDown,
.js-scroll.is-scroll.fadeInMaskSlide {
  mask-position: 0 0;
}

@media (prefers-reduced-motion: reduce) {
  .js-scroll,
  .js-scroll.fadeInUp,
  .js-scroll.fadeInLeft,
  .js-scroll.fadeInRight,
  .js-scroll.fadeInZoom,
  .js-scroll.fadeInPop,
  .js-scroll.fadeInBright,
  .js-scroll.fadeInMaskDown,
  .js-scroll.fadeInMaskSlide {
    opacity: 1;
    filter: none;
    mask-image: none;
    transform: none;
    transition: none;
  }
}

@media (max-width: 750px){
  #contents .parallax {
    height: 162vw;
  }

  .videoSection {
    height: 76.1333vw;
    margin-top: 6.4vw;
    padding-top: 7.7333vw;
  }

  .videoCard {
    border-radius: 2.4vw;
  }

  .videoCard .playIcon {
    width: 12.8vw;
    height: 12.8vw;
  }

  .pager {
    gap: 2.9333vw;
    margin-top: 2vw;
  }

  .pager span,
  .pager button,
  .pager.red span,
  .pager.red button {
    width: 2.4vw;
    height: 2.4vw;
    border-width: .5333vw;
  }

  .videoModal {
    padding: 5.3333vw;
  }

  .videoModalPanel {
    width: 90vw;
  }

  .videoModalClose {
    width: 9.0667vw;
    height: 9.0667vw;
    border-width: .4vw;
    right: 0;
    bottom: calc(100% + 3.2vw);
  }

  .videoModalClose::before,
  .videoModalClose::after {
    width: 4.8vw;
    height: .5333vw;
  }

  .pointSection {
    padding: 6.4vw 0 10vw;
  }

  .pointCard {
    grid-template-columns: minmax(0, 1fr) 34.6667vw;
    align-items: start;
    gap: 5.3333vw;
    height: auto;
    margin-bottom: 3.4667vw;
    padding: 2.4vw 2.4vw 2.4vw 3.2vw;
    border-radius: 2.4vw;
    box-shadow: 0 .8vw 1.3333vw rgba(124, 83, 0, .22);
  }

  .pointCard img {
    width: 34.6667vw;
    height: 20.1333vw;
    border-radius: 1.2vw;
  }

  .pointLabel {
    min-width: 18.6667vw;
    height: 4.2667vw;
    margin-bottom: 1.7333vw;
    padding: 0 2.1333vw;
    font-size: 3.4667vw;
  }

  .pointText h2 {
    margin-bottom: 1.0667vw;
    font-size: 4.5333vw;
  }

  .pointText p:last-child {
    font-size: 3.2vw;
    line-height: 1.25;
  }

  .lineupSection {
    height: 226.6667vw;
    margin-top: -2.1333vw;
    padding: 8vw 0 0;
  }

  .sectionTitle h2 {
    font-size: 8.2667vw;
  }

  .sectionTitle p {
    margin: 0 0 1.3333vw;
    font-size: 4.8vw;
  }

  .sectionTitle small {
    font-size: 2.8vw;
  }

  .lineupGrid {
    gap: 7.7333vw 4vw;
    margin: 7.7333vw auto;
  }

  .lineupItem img {
    width: 40.6667vw;
    height: 40.6667vw;
  }

  .lineupItem {
    grid-template-rows: 40.6667vw 5.0667vw 5.6vw;
    row-gap: 1.8667vw;
  }

  .lineupItem h3 {
    margin: 0;
    font-size: 4.2667vw;
  }

  .lineupItem .metalNameTag {
    margin-left: 1.0667vw;
    padding: 0 1.0667vw;
    border-radius: 1.3333vw;
    font-size: 3.4667vw;
  }

  .chips {
    gap: 1.6vw;
  }

  .chips button {
    min-width: 15.7333vw;
    height: 6vw;
    padding: 0 1.6vw;
    border-width: .4vw;
    font-size: 2.9333vw;
  }

  .chips .num,
  .secretItem .num {
    width: 3.2vw;
    height: 3.2vw;
    margin-right: .5333vw;
    border-width: .2667vw;
    border-radius: .6667vw;
  }

  .chips .num::after,
  .secretItem .num::after {
    font-size: 2.9333vw;
  }

  .secretItem img {
    width: 44vw;
  }

  .secretItem p {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2.4vw;
    font-size: 4.2667vw;
  }

  .secretItem .num {
    width: 4.5333vw;
    height: 4.5333vw;
    margin-right: .9333vw;
    border-width: .2667vw;
    border-radius: .9333vw;
  }

  .secretItem .num::after {
    font-size: 4vw;
  }

  .gallerySection {
    margin-top: -2.1333vw;
    padding: 17.3333vw 0 14.4vw;
  }

  .galleryViewport {
    border-radius: 2.4vw;
    box-shadow: 0 .8vw 1.6vw rgba(125, 65, 65, .28);
  }

  .arrow {
    width: 4.5333vw;
    height: 4.5333vw;
    border-width: .4vw;
  }

  .arrow::before {
    border-top-width: 1.0667vw;
    border-bottom-width: 1.0667vw;
  }

  .arrow.prev {
    left: -2.1333vw;
  }

  .arrow.prev::before {
    border-right-width: 1.3333vw;
  }

  .arrow.next {
    right: -2.1333vw;
  }

  .arrow.next::before {
    border-left-width: 1.3333vw;
  }

  .pager.red {
    gap: 2.6667vw;
    margin-top: 4.4vw;
  }

  .pager.red button {
    width: 2.4vw;
    height: 2.4vw;
    border-width: .4vw;
  }

  .productSection {
    height: 193.6667vw;
    margin-top: -2.1333vw;
    padding: 8vw 0 0;
  }

  .productSection h2 {
    font-size: 7.7333vw;
  }

  .displayPhoto {
    margin: 5.3333vw auto 8vw;
    border-radius: 2.4vw;
    box-shadow: 0 .9333vw 1.8667vw rgba(63, 15, 114, .28);
  }

  .releaseDate {
    margin-bottom: 9.3333vw;
    font-size: 7.7333vw;
  }

  .productInfo {
    grid-template-columns: 44.8vw minmax(0, 1fr);
    gap: 0;
    width: 90.6667vw;
  }

  .productInfo > img {
    width: auto;
    max-width: 100%;
    transform: translateY(-2.9333vw);
  }

  .infoBox {
    min-height: 0;
    padding: 2.6667vw 2.9333vw 2.4vw;
    border-width: .5333vw;
    border-radius: 0 1.6vw 1.6vw 0;
    border-left-width: 0;
  }

  .infoBox h3 {
    margin-bottom: 2.4vw;
    font-size: 5.6vw;
  }

  .infoBox dl {
    font-size: 3.3333vw;
  }

  .price strong {
    margin-right: 1.0667vw;
    font-size: 8.8vw;
  }

  .price span {
    font-size: 2.6667vw;
  }

  .productNotes {
    width: 43.3333vw;
    font-size: 1.7333vw;
    right: 4.2667vw;
    top: 166.6vw;
  }

  .copyright {
    width: auto;
    font-size: 2.4vw;
    white-space: nowrap;
    left: 5.0667vw;
    top: 181.6667vw;
  }
}

@media (max-width: 560px){
  .pointText h2 {
    white-space: nowrap;
  }

  .pointText p:last-child {
    line-height: 1.22;
  }
}

/*footer*/
footer{background-color:#323232;color:#fff;overflow:hidden;}
footer .note{display:flex;width:95%;margin:0 auto;align-items:flex-start;padding:15px 0;justify-content:center;}
footer .note a{width:81px;margin-right:10px;flex:none;}
footer .note span{font-size:14px;}
footer .note a:last-child{display:none;width:220px;}
footer .footer_beian{font-size:12px;color:#fff;text-align:center;margin-bottom:10px;}
footer .footer_beian a{color:#fff;display:inline-block;}
footer img{width:auto;}
footer img.pc{height:56px;}
footer img.mb{display:none;}
.footer__copyright{font-size:14px;padding:50px 0 20px;text-align:center;}

@media (max-width: 760px){
  .footer__copyright{font-size:12px;}
  footer .note a{width:47px;}
  footer .note a img{width:47px;height:47px;}
  footer .note span{font-size:12px;}
  footer img.pc{display:none;}
  footer img.mb{display:block;margin:auto;height:40px;}
}

@media (min-width: 760px) {
  footer .note span{font-size:12px;}
  footer .note a{width:60px;}
  footer .note a img{width:60px;height:60px;}
}

@media (min-width: 980px) {
  footer .note span{margin-right: 10px;}
  footer .note a:last-child{display: block;}
}
