@charset "UTF-8";
/*--------------------
汎用設定
--------------------*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*::-moz-selection {
  color: #fff;
  background: #FFE211;
}

*::selection {
  color: #fff;
  background: #FFE211;
}

html {
  font-size: 14px;
  font-family: fot-seurat-pron, sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1.7;
}

body {
  overflow-x: hidden;
  background: #FFA500;
}

a {
  color: #0066c0;
}

p:not(:last-of-type) {
  margin-bottom: 1rem;
}

p strong {
  color: #FFA500;
  font-size: 1.5rem;
  font-family: bokutoh-ruika, sans-serif;
  font-weight: normal;
  font-style: italic;
}

img {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.red {
  color: red;
}

.strong {
  font-size: 1.2rem;
  font-weight: bold;
}

img {
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  html {
    font-size: 16px;
    line-height: 1.7;
  }
}

/*--------------------
ロード画面
--------------------*/
#splash {
  display: none;
  margin-top: -80px;
  position: fixed;
  width: 100%;
  min-height: calc(var(--vh, 1vh) * 100);
  z-index: 999;
  background: #FFA500;
  background: linear-gradient(45deg, orange 0%, #ffe211 100%);
  text-align: center;
  color: #fff;
}

#splash #splash__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#splash #mask .st0 {
  fill: none;
  stroke: #fff;
  stroke-width: 40;
  /*線の太さを指定する*/
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  stroke-dasharray: 1500;
  /* 線の間隔を指定する */
  stroke-dashoffset: 1500;
  /* 線の位置を指定する */
}

/*--------------------
header
--------------------*/
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}

header .header__wrap {
  padding: 10px 20px;
  margin: 10px;
  background: #FFA500;
  border: 2px solid #fff;
  border-radius: 50px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 40% 1fr;
      grid-template-columns: 40% 1fr;
}

header .header__wrap .header__wrap--logo,
header .header__wrap .header__wrap--list {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

header .header__wrap .header__wrap--logo {
  padding: 0 2px;
}

header .header__wrap .header__wrap--logo img {
  max-width: 200px;
  width: 100%;
}

header .header__wrap .header__wrap--list {
  justify-self: flex-end;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[3];
      grid-template-columns: repeat(3, minmax(0, 1fr));
}

header .header__wrap .header__wrap--list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .header__wrap .header__wrap--list li a img {
  max-width: 80%;
}

header .header__wrap .header__wrap--list li a span {
  height: 11px;
  display: inline-block;
  font-size: 10px;
  font-weight: bold;
  color: #fff;
  -webkit-transform: scale(0.8) translateY(-2px);
          transform: scale(0.8) translateY(-2px);
}

header .header__wrap .header__wrap--list li.pc {
  display: none;
}

header .header__menu {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  padding: 80px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(55, 55, 55, 0.7);
  background-image: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1) 10px, transparent 0, transparent 20px);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  top: 0;
}

header .header__menu.show {
  visibility: visible;
  opacity: 1;
}

header .header__menu .header__menu--list {
  max-width: 90%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[3];
      grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

header .header__menu .header__menu--list li {
  text-align: center;
}

header .header__menu .header__menu--list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .header__menu .header__menu--list li a img {
  max-width: 90%;
}

header .header__menu .header__menu--list li a span {
  height: 13px;
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

@media screen and (min-width: 768px) {
  header {
    width: 100%;
    left: 50%;
    background: #FFA500;
    background: -webkit-gradient(linear, right top, left top, from(orange), to(#ffe211));
    background: linear-gradient(-90deg, orange 0%, #ffe211 100%);
    border-bottom: 2px solid #fff;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  header .header__wrap {
    width: 90%;
    max-width: 880px;
    margin: 0 auto;
    padding: 10px 0;
    border: none;
    background: transparent;
    -ms-grid-columns: 200px 1fr;
        grid-template-columns: 200px 1fr;
  }
  header .header__wrap .header__wrap--logo {
    padding: 0;
  }
  header .header__wrap .header__wrap--list {
    -ms-grid-columns: (minmax(0, 1fr))[6];
        grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  header .header__wrap .header__wrap--list li {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  header .header__wrap .header__wrap--list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header .header__wrap .header__wrap--list li a img {
    max-width: 50%;
  }
  header .header__wrap .header__wrap--list li a span {
    height: 13px;
    font-size: 11px;
    letter-spacing: 0.01rem;
    -webkit-transform: scale(1) translateY(0px);
            transform: scale(1) translateY(0px);
  }
  header .header__wrap .header__wrap--list li.pc {
    display: block;
  }
  header .header__wrap .header__wrap--list li.sp {
    display: none;
  }
  header .header__wrap .header__wrap--list li:hover {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  header .header__menu {
    visibility: hidden;
  }
}

/*--------------------
main,section共通
--------------------*/
.main__white {
  background: #fff;
}

section {
  padding: 60px 10px;
}

section.orange {
  background: #ffc97d;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1) 10px, transparent 0, transparent 20px);
}

section.orange h2 {
  color: #FFA500;
  border: 3px solid #FFA500;
  -webkit-box-shadow: 1px 1px 0 #FFA500, 2px 2px 0 #FFA500, 3px 3px 0 #FFA500;
          box-shadow: 1px 1px 0 #FFA500, 2px 2px 0 #FFA500, 3px 3px 0 #FFA500;
}

section.orange > .content {
  background: #fff;
  border: 3px solid #FFA500;
  -webkit-box-shadow: 2px 2px 0 #FFA500, 4px 4px 0 #FFA500, 6px 6px 0 #FFA500;
          box-shadow: 2px 2px 0 #FFA500, 4px 4px 0 #FFA500, 6px 6px 0 #FFA500;
}

section.orange > .content::before, section.orange > .content::after {
  background: #FFA500;
}

section.yellow {
  background: #fff07b;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2) 10px, transparent 0, transparent 20px);
}

section.yellow h2 {
  color: #FFE211;
  border: 3px solid #FFE211;
  -webkit-box-shadow: 1px 1px 0 #FFE211, 2px 2px 0 #FFE211, 3px 3px 0 #FFE211;
          box-shadow: 1px 1px 0 #FFE211, 2px 2px 0 #FFE211, 3px 3px 0 #FFE211;
}

section.yellow > .content {
  background: #fff;
  border: 3px solid #FFE211;
  -webkit-box-shadow: 2px 2px 0 #FFE211, 4px 4px 0 #FFE211, 6px 6px 0 #FFE211;
          box-shadow: 2px 2px 0 #FFE211, 4px 4px 0 #FFE211, 6px 6px 0 #FFE211;
}

section.yellow > .content::before, section.yellow > .content::after {
  background: #FFE211;
}

section h2 {
  display: inline-block;
  padding: 0 1.7rem;
  border-radius: 40px;
  font-family: bokutoh-ruika, sans-serif;
  font-size: 1.7rem;
  font-weight: normal;
  letter-spacing: 0.1rem;
  word-break: keep-all;
  background: #fff;
  position: absolute;
  top: -27px;
  left: 10px;
}

section h3 {
  margin-bottom: 1rem;
  padding-bottom: 2px;
  font-size: 1.3rem;
  font-weight: normal;
  font-family: bokutoh-ruika, sans-serif;
  color: #0084CF;
  position: relative;
}

section h3::after {
  content: "";
  width: 100%;
  height: 3px;
  background: -webkit-gradient(linear, right top, left top, from(orange), to(#ffe211));
  background: linear-gradient(-90deg, orange 0%, #ffe211 100%);
  border-radius: 20px;
  position: absolute;
  bottom: 2px;
  left: 0;
}

section > .content {
  padding: 40px 20px;
  border: 3px solid #FFA500;
  border-radius: 1rem;
  -webkit-box-shadow: 2px 2px 0 #FFA500, 4px 4px 0 #FFA500, 6px 6px 0 #FFA500;
          box-shadow: 2px 2px 0 #FFA500, 4px 4px 0 #FFA500, 6px 6px 0 #FFA500;
  position: relative;
}

section > .content ul {
  margin-bottom: 1rem;
}

section > .content p img {
  border: 1px solid #ddd;
}

@media screen and (min-width: 768px) {
  /*--------------------
  main,section共通
  --------------------*/
  .main__white {
    background: #fff;
  }
  section {
    padding: 80px 0;
  }
  section > .content {
    width: 90%;
    max-width: 880px;
    margin: 0 auto;
    padding: 80px;
    position: relative;
  }
  section > .content::before, section > .content::after {
    content: "";
    width: 80px;
    height: 80px;
    background: #FFA500;
    border: 4px solid #fff;
    position: absolute;
  }
  section > .content::before {
    top: 0px;
    right: 0px;
    border-top-right-radius: 1rem;
    -webkit-clip-path: polygon(100% 0, 0 0, 100% 100%);
            clip-path: polygon(100% 0, 0 0, 100% 100%);
  }
  section > .content::after {
    bottom: 0px;
    left: 0px;
    border-bottom-left-radius: 1rem;
    -webkit-clip-path: polygon(0 100%, 0 0, 100% 100%);
            clip-path: polygon(0 100%, 0 0, 100% 100%);
  }
}

/*--------------------
TOP
--------------------*/
#top {
  margin-top: 0;
  height: 100vh;
  height: calc(var(--vh_top, 1vh) * 100);
  position: relative;
}

#top::before {
  content: "";
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1) 10px, transparent 0, transparent 20px), linear-gradient(225deg, orange 0%, #ffec5c 100%);
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  z-index: -1;
}

#top h1 {
  width: 95%;
  max-width: 390px;
  position: absolute;
  top: 53.5%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}

@media screen and (min-width: 768px) {
  #top {
    max-height: 950px;
  }
  #top h1 {
    width: 100%;
    max-width: 1000px;
  }
}

@media screen and (min-width: 1024px) {
  #top {
    max-height: 1200px;
    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;
  }
  #top::before {
    position: fixed;
  }
  #top h1 {
    max-width: 1400px;
    position: fixed;
  }
  #top h1 img {
    max-height: 100%;
  }
}

/*--------------------
about
--------------------*/
#about {
  padding-top: 65px;
  position: relative;
}

#about .scrolldown {
  display: none;
}

#about::before {
  content: "";
  width: 100%;
  height: 20vw;
  background-image: url(../img/frame-blue.svg);
  background-size: cover;
  background-position: center;
  position: absolute;
  top: -20vw;
  left: 0;
}

#about::after {
  content: "";
  width: 100%;
  height: 19vw;
  background-image: url(../img/frame.svg);
  background-size: cover;
  background-position: center;
  position: absolute;
  top: -19vw;
  left: 0;
}

@media screen and (min-width: 768px) {
  #about::before {
    content: "";
    width: 100%;
    height: 35vw;
    background-image: url(../img/frame-blue.svg);
    background-size: cover;
    background-position: center;
    position: absolute;
    top: -35vw;
    left: 0;
  }
  #about::after {
    content: "";
    width: 100%;
    height: 30vw;
    background-image: url(../img/frame.svg);
    background-size: cover;
    background-position: center;
    position: absolute;
    top: -30vw;
    left: 0;
  }
}

/*--------------------
news
--------------------*/
#news .news__wrap--list dt {
  font-family: bokutoh-ruika, sans-serif;
  color: #0084CF;
}

/*--------------------
information
--------------------*/
#information a:hover {
  text-decoration: underline;
}

/*--------------------
goods
--------------------*/
#goods .goods__wrap .list__change {
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 2px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#goods .goods__wrap .list__change ul {
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 5px;
}

#goods .goods__wrap .list__change ul li {
  max-width: 38px;
  padding: 4px;
  border: 1px solid #FFA500;
  border-radius: 2px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-filter: grayscale(1) brightness(1.2);
          filter: grayscale(1) brightness(1.2);
}

#goods .goods__wrap .list__change ul li.on {
  border: 1px solid #FFA500;
  -webkit-filter: grayscale(0) brightness(1);
          filter: grayscale(0) brightness(1);
}

#goods .goods__wrap .goods__wrap--list {
  margin-bottom: 0;
  display: -ms-grid;
  display: grid;
  gap: 10px;
}

#goods .goods__wrap .goods__wrap--list.list1x1 {
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

#goods .goods__wrap .goods__wrap--list.list2x2 {
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
}

#goods .goods__wrap .goods__wrap--list.list3x3 {
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
}

#goods .goods__wrap .goods__wrap--list.list3x3 .list-item .list-item__data {
  display: none;
}

#goods .goods__wrap .goods__wrap--list .list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 2px solid #FFA500;
  border-bottom: 6px solid #FFA500;
  border-radius: 1rem;
  overflow: hidden;
}

#goods .goods__wrap .goods__wrap--list .list-item .list-item__img {
  margin-bottom: 0;
  border-bottom: 1px dotted #FFA500;
}

#goods .goods__wrap .goods__wrap--list .list-item .list-item__img img {
  border: none;
}

#goods .goods__wrap .goods__wrap--list .list-item .list-item__data {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  display: -ms-grid;
  display: grid;
  padding: 5px;
}

#goods .goods__wrap .goods__wrap--list .list-item .list-item__data p:not(:last-of-type) {
  margin-bottom: 5px;
}

#goods .goods__wrap .goods__wrap--list .list-item .list-item__data .price {
  margin-top: auto;
  font-size: 1.1rem;
  color: #0084CF;
  font-weight: bold;
}

#goods .goods__wrap .goods__wrap--list .list-item .list-item__data .price span {
  font-size: 1rem;
}

@media screen and (min-width: 768px) {
  #goods .goods__wrap .list__change {
    display: none;
  }
  #goods .goods__wrap .goods__wrap--list {
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
  }
  #goods .goods__wrap .goods__wrap--list.list1x1 {
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
  }
  #goods .goods__wrap .goods__wrap--list.list2x2 {
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
  }
  #goods .goods__wrap .goods__wrap--list.list3x3 {
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
  }
  #goods .goods__wrap .goods__wrap--list .list-item .list-item__img {
    overflow: hidden;
  }
  #goods .goods__wrap .goods__wrap--list .list-item .list-item__img img {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  #goods .goods__wrap .goods__wrap--list .list-item .list-item__img:hover img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  #goods .goods__wrap .goods__wrap--list .list-item .list-item__data {
    line-height: 1.5;
  }
  #goods .goods__wrap .goods__wrap--list .list-item .list-item__data .title {
    font-size: 0.8rem;
  }
  #goods .goods__wrap .goods__wrap--list .list-item .list-item__data .price {
    font-size: 1rem;
    color: #0084CF;
    font-weight: bold;
    text-align: right;
  }
  #goods .goods__wrap .goods__wrap--list .list-item .list-item__data .price span {
    font-size: 0.8rem;
  }
}

/*--------------------
access
--------------------*/
#access .access__wrap .access__wrap--list {
  display: -ms-grid;
  display: grid;
  gap: 40px;
}

#access .access__wrap .access__wrap--list .list-item .list-item__wrap .list-item__wrap--map {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}

#access .access__wrap .access__wrap--list .list-item .list-item__wrap .list-item__wrap--map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

#access .access__wrap .access__wrap--list .list-item .list-item__wrap .list-item__wrap--data {
  margin-bottom: 1rem;
}

#access .access__wrap .access__wrap--list .list-item .list-item__wrap .list-item__wrap--data dt {
  color: #FFA500;
  font-size: 1.2rem;
  padding-left: 1.2rem;
  position: relative;
}

#access .access__wrap .access__wrap--list .list-item .list-item__wrap .list-item__wrap--data dt::before {
  content: "■";
  font-size: 1.2rem;
  position: absolute;
  top: 49%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#access .access__wrap .access__wrap--list .list-item .list-item__wrap .list-item__wrap--data dd:not(:last-of-type) {
  margin-bottom: 1rem;
}

#access .access__wrap .access__wrap--list .list-item .list-item__wrap a:hover {
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  #access .access__wrap .access__wrap--list {
    gap: 80px;
  }
}

/*--------------------
link
--------------------*/
@media screen and (min-width: 1024px) {
  #link a:hover {
    text-decoration: underline;
  }
}

/*--------------------
Twitter
--------------------*/
#twitter .twitter__wrap {
  text-align: center;
}

#twitter .twitter__wrap .twitter__wrap--btn {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 4px;
  background: #37a4dd;
  border-radius: 40px;
  overflow: hidden;
}

#twitter .twitter__wrap .twitter__wrap--btn a {
  padding: 10px;
  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: 10px;
  border: 1px solid #fff;
  border-radius: 40px;
}

#twitter .twitter__wrap .twitter__wrap--btn a svg {
  width: 30px;
  height: 30px;
}

#twitter .twitter__wrap .twitter__wrap--btn a svg path {
  fill: #fff;
}

#twitter .twitter__wrap .twitter__wrap--btn a span {
  padding-top: 2px;
  font-size: 1.2rem;
  color: #fff;
}

/*--------------------
footer
--------------------*/
footer {
  padding: 40px 0;
  background: #FFA500;
}

footer .footer__share {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 40px;
  text-align: center;
}

footer .footer__share .footer__share--title {
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .footer__share .footer__share--title span {
  margin: 0 0.5rem;
}

footer .footer__share .footer__share--title::before, footer .footer__share .footer__share--title::after {
  content: "";
  height: 2px;
  border-radius: 2px;
  background: #000;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

footer .footer__share .footer__share--list {
  padding-bottom: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  border-bottom: 2px solid #000;
}

footer .footer__share .footer__share--list li {
  width: 50px;
  height: 50px;
  display: inline-block;
  border-radius: 50%;
  background: #000;
}

footer .footer__share .footer__share--list li a {
  width: 100%;
  height: 100%;
  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;
}

footer .footer__share .footer__share--list li a svg {
  height: 55%;
  width: 55%;
  margin: 0;
  padding: 0;
}

footer .footer__share .footer__share--list li a svg path {
  fill: #FFA500;
}

footer small p {
  margin-bottom: 0.5rem !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
  font-size: 8px;
  text-align: center;
}

footer small p:first-of-type {
  margin-bottom: 1rem !important;
}

footer small p:first-of-type img {
  width: 50%;
  max-width: 250px;
}

footer small p:last-of-type img {
  height: 12px;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

@media screen and (min-width: 1024px) {
  footer .footer__share .footer__share--list li {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  footer .footer__share .footer__share--list li a svg path {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  footer .footer__share .footer__share--list li:hover {
    background: #0084CF;
  }
  footer .footer__share .footer__share--list li:hover a svg path {
    fill: #fff;
  }
  footer small p {
    margin-bottom: 0.5rem !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 4px;
    font-size: 8px;
    text-align: center;
  }
  footer small p:first-of-type {
    margin-bottom: 1rem !important;
  }
  footer small p:first-of-type img {
    width: 50%;
    max-width: 250px;
  }
  footer small p:last-of-type img {
    height: 12px;
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
}
