body {
  overflow-x: hidden;
  background: #fff;
  font-family: "Hiragino Sans", "Meiryo", verdana, "Osaka", "MS PGothic", Sans-Serif;
  color: #3B3B3B;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

.loading {
  position: fixed;
  inset: 0;
  z-index: 99;
  height: 100svh;
  background-color: #262626;
}

.loading__inner {
  width: 100%;
  height: inherit;
  display: grid;
  place-content: center;
  row-gap: 10px;
}

.loading__text {
  font-size: max(12px, 1rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2;
  text-align: center;
  color: #fff;
}

.loading__logo {
  margin: 0 auto;
  width: min(100px, 100%);
}
.loading__logo img {
  width: 100%;
  height: auto;
}

.color-w {
  color: #fff;
}

.jp {
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.en {
  font-family: "Baskervville", serif;
  font-weight: 400;
  font-style: normal;
}

.space-m {
  margin-bottom: 3rem;
}

a {
  color: #262626;
}

header {
  width: 100%;
  position: fixed;
  z-index: 98;
  background: #fff;
}
header .header__inner {
  padding: 1rem 1.5rem;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
header .header__inner .logo {
  width: 150px;
}
header .header__inner .logo img {
  width: 100%;
}
header .header__inner .menu {
  width: 85%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
header .header__inner .menu ul {
  width: 65%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  margin-right: 1.75rem;
}
header .header__inner .menu ul li {
  margin-right: 1.5rem;
}
header .header__inner .menu ul li a {
  font-size: 0.875rem;
  font-weight: 600;
}
header .header__inner .menu .more {
  width: 180px;
}

.more {
  display: block;
  color: #fff;
  background: #CF2E2E;
  border-radius: 100px;
  padding: 1rem;
  text-align: center;
  font-weight: bold;
  font-size: 0.9rem;
  vertical-align: middle;
}
.more img {
  vertical-align: top;
  width: 16px;
  height: auto;
}

#slider {
  position: relative;
}

#slider img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.8s;
}

#slider img.show {
  opacity: 1;
}

.hero {
  width: 95%;
  margin: 0 auto;
  position: relative;
  padding-top: 15%;
}
.hero figure {
  width: 100%;
  height: 90vh;
  border-radius: 24px;
}
.hero figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.hero .catch {
  display: grid;
  place-content: center;
  position: absolute;
  top: 11%;
  left: 4%;
  z-index: 2;
}
.hero .catch .en_txt {
  font-size: 7rem;
  font-family: "Noto Serif JP", serif;
}
.hero .catch p {
  margin-bottom: 1rem;
}
.hero .jp_txt {
  display: grid;
  place-content: center;
  position: absolute;
  top: 14%;
  right: 4%;
  z-index: 2;
}
.hero .jp_txt p {
  font-size: 1.3rem;
}
.hero .top-hero__scroll {
  z-index: 10;
  position: absolute;
  top: 50%;
  right: 5%;
}
.hero .top-hero__scroll__inner {
  position: relative;
}
.hero .top-hero__scroll__inner .circle {
  animation: 10s linear infinite rotation1;
}
@keyframes rotation1 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.hero .top-hero__scroll__inner .arrow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  animation: fluffy 3s infinite;
}
@keyframes fluffy {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

.about {
  height: 70vh;
  position: relative;
}
.about__inner {
  width: 80%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  margin: 0 auto;
  padding-top: 15%;
}
.about__inner .symbol {
  width: 5%;
  margin-top: -5%;
}
.about__inner .symbol img {
  width: 100%;
}
.about__inner h3 {
  width: 10%;
  writing-mode: vertical-rl;
  text-orientation: upright;
  line-height: 2rem;
  font-size: 1.5rem;
}
.about__inner .disc {
  width: 35%;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
.about__inner .disc p {
  margin-left: 1.5rem;
}
.about__inner .image {
  width: 45%;
  border: solid 1px #eee;
}
.about__inner .image img {
  width: 100%;
}

.about2 {
  width: 100%;
  height: 100vh;
  margin-top: 10%;
  position: relative;
}
.about2__inner {
  background: url(../../assets/images/about.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
.about2__inner .disc {
  position: absolute;
  bottom: 15%;
  right: 5%;
  width: 300px;
}
.about2__inner .disc .ttl {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.about2__inner .disc .txt {
  line-height: 1.5rem;
  font-size: 0.875rem;
}

.row, .section, section {
  position: relative;
  overflow: hidden;
}

.section, section {
  padding: 40px 0;
  text-align: center;
}

section:nth-child(1) {
  border-bottom: 1px solid rgb(255, 252, 225);
  color: white;
}

.container-fluid {
  width: 95%;
  padding-right: 5%;
  padding-left: 0%;
  margin-right: auto;
  margin-left: auto;
}
.container-fluid .horiz-gallery-strip {
  padding-left: 2.5%;
}
.container-fluid .horiz-gallery-wrapper {
  margin-bottom: 5%;
}
.container-fluid .pin-spacer {
  margin-bottom: 12rem !important;
}
.container-fluid .horiz-gallery-strip,
.container-fluid .horiz-gallery-wrapper {
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
  position: relative;
}
.container-fluid .horiz-gallery-strip .project-wrap,
.container-fluid .horiz-gallery-wrapper .project-wrap {
  width: 70vw;
  padding: 2rem;
  box-sizing: content-box;
}
.container-fluid .horiz-gallery-strip .project-wrap__inner,
.container-fluid .horiz-gallery-wrapper .project-wrap__inner {
  background: #FAFAFA;
  padding: 2rem;
  border-radius: 1rem;
  height: 100%;
}
.container-fluid .horiz-gallery-strip .project-wrap__inner .ttlgroup,
.container-fluid .horiz-gallery-wrapper .project-wrap__inner .ttlgroup {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.container-fluid .horiz-gallery-strip .project-wrap__inner .ttlgroup .ttl,
.container-fluid .horiz-gallery-wrapper .project-wrap__inner .ttlgroup .ttl {
  text-align: left;
  font-size: 1rem;
  line-height: 1.5rem;
  margin-bottom: 4rem;
}
.container-fluid .horiz-gallery-strip .project-wrap__inner .ttlgroup .num,
.container-fluid .horiz-gallery-wrapper .project-wrap__inner .ttlgroup .num {
  font-size: 5rem;
  line-height: 1rem;
}
.container-fluid .horiz-gallery-strip .project-wrap__inner .txtbox,
.container-fluid .horiz-gallery-wrapper .project-wrap__inner .txtbox {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.container-fluid .horiz-gallery-strip .project-wrap__inner .txtbox .ttl2,
.container-fluid .horiz-gallery-wrapper .project-wrap__inner .txtbox .ttl2 {
  width: 15vw;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 2rem;
  font-weight: bold;
  line-height: 2.5rem;
  margin-right: 8rem;
  text-align: left;
}
.container-fluid .horiz-gallery-strip .project-wrap__inner .txtbox .txt,
.container-fluid .horiz-gallery-wrapper .project-wrap__inner .txtbox .txt {
  width: 40vw;
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-align: left;
  font-size: 1rem;
}
.container-fluid .horiz-gallery-strip .project-wrap__inner .txtbox .txt p,
.container-fluid .horiz-gallery-wrapper .project-wrap__inner .txtbox .txt p {
  margin-left: 1rem;
}
.container-fluid .horiz-gallery-strip .project-wrap__inner .txtbox .image,
.container-fluid .horiz-gallery-wrapper .project-wrap__inner .txtbox .image {
  width: 40vw;
}
.container-fluid .horiz-gallery-strip .project-wrap__inner .txtbox .image img,
.container-fluid .horiz-gallery-wrapper .project-wrap__inner .txtbox .image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}
.container-fluid .horiz-gallery-strip .project-wrap__inner .content,
.container-fluid .horiz-gallery-wrapper .project-wrap__inner .content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  position: relative;
}
.container-fluid .horiz-gallery-strip .project-wrap__inner .content .txtbox02,
.container-fluid .horiz-gallery-wrapper .project-wrap__inner .content .txtbox02 {
  width: 40vw;
  margin-right: 3rem;
}
.container-fluid .horiz-gallery-strip .project-wrap__inner .content .txtbox02 .ttl3,
.container-fluid .horiz-gallery-wrapper .project-wrap__inner .content .txtbox02 .ttl3 {
  font-size: 2rem;
  line-height: 2.5rem;
  margin-bottom: 2rem;
  text-align: left;
  font-weight: bold;
}
.container-fluid .horiz-gallery-strip .project-wrap__inner .content .txtbox02 .txt,
.container-fluid .horiz-gallery-wrapper .project-wrap__inner .content .txtbox02 .txt {
  text-align: left;
  font-size: 1rem;
  line-height: 2rem;
}
.container-fluid .horiz-gallery-strip .project-wrap__inner .content .image,
.container-fluid .horiz-gallery-wrapper .project-wrap__inner .content .image {
  width: 40vw;
}
.container-fluid .horiz-gallery-strip .project-wrap__inner .content .image img,
.container-fluid .horiz-gallery-wrapper .project-wrap__inner .content .image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}
.container-fluid .horiz-gallery-strip .project-wrap__inner .content .num02,
.container-fluid .horiz-gallery-wrapper .project-wrap__inner .content .num02 {
  position: absolute;
  bottom: 10%;
  left: 1%;
  font-size: 8rem;
  line-height: 1rem;
}

#portfolio .ttlArea {
  width: 95%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  padding-left: 5%;
  margin-bottom: 3%;
}
#portfolio .ttlArea .ttl {
  font-size: 8rem;
  text-align: left;
}
#portfolio .ttlArea p {
  font-size: 2rem;
}

.index__inner .ttlArea {
  width: 95%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  margin: 0 auto 3%;
}
.index__inner .ttlArea .ttl {
  font-size: 8rem;
}
.index__inner .ttlArea p {
  font-size: 2rem;
}
.index__inner .marquee {
  display: flex;
  margin: auto;
  overflow: hidden;
  user-select: none;
  height: 100%;
}
.index__inner .marquee__content {
  flex-shrink: 0;
  display: flex;
}
.index__inner .marquee__item {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 25vw;
  height: 33vw;
  margin: 0 2rem;
  border-radius: 1rem;
}
.index__inner .booklet__content {
  width: 85%;
  margin: 0 auto;
  padding: 8rem 0 4rem;
}
.index__inner .booklet__content__inner .area {
  margin-bottom: 4rem;
}
.index__inner .booklet__content__inner .area .ttl {
  font-size: 3rem;
}
.index__inner .booklet__content__inner .area .booklet_item_content {
  background: #FAFAFA;
  border-radius: 1rem;
  padding: 2rem;
  text-align: left;
  margin: 3rem 0;
}
.index__inner .booklet__content__inner .area .booklet_item_content .booklet_item .booklet_ttl {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: bold;
}
.index__inner .booklet__content__inner .area .booklet_item_content .booklet_item__inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  width: 100%;
}
.index__inner .booklet__content__inner .area .booklet_item_content .booklet_item__inner .left {
  width: 75%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.index__inner .booklet__content__inner .area .booklet_item_content .booklet_item__inner .left .image {
  width: 20%;
}
.index__inner .booklet__content__inner .area .booklet_item_content .booklet_item__inner .left .image img {
  width: 100%;
  border-radius: 0.5rem;
}
.index__inner .booklet__content__inner .area .booklet_item_content .booklet_item__inner .left .disc {
  width: 75%;
}
.index__inner .booklet__content__inner .area .booklet_item_content .booklet_item__inner .left .disc .issue {
  font-size: 1.5rem;
  color: #CF2E2F;
  margin-bottom: 1.5rem;
}
.index__inner .booklet__content__inner .area .booklet_item_content .booklet_item__inner .left .disc .txt {
  font-size: 0.875rem;
  line-height: 1.2rem;
  margin-bottom: 1.5rem;
}
.index__inner .booklet__content__inner .area .booklet_item_content .booklet_item__inner .left .disc .price {
  font-size: 1.5rem;
  color: #CF2E2F;
  margin-bottom: 1.5rem;
}
.index__inner .booklet__content__inner .area .booklet_item_content .booklet_item__inner .left .disc .comment {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
}
.index__inner .booklet__content__inner .area .booklet_item_content .booklet_item__inner .left .disc .comment .thum {
  width: 10%;
}
.index__inner .booklet__content__inner .area .booklet_item_content .booklet_item__inner .left .disc .comment .thum img {
  width: 100%;
  border: solid 1px #eee;
  border-radius: 100px;
}
.index__inner .booklet__content__inner .area .booklet_item_content .booklet_item__inner .left .disc .comment .comment_txt {
  width: 85%;
  font-size: 0.875rem;
  line-height: 1.2rem;
}
.index__inner .booklet__content__inner .area .booklet_item_content .booklet_item__inner .left .disc .comment .comment_txt .name {
  font-weight: bold;
  margin-bottom: 0.75rem;
}
.index__inner .booklet__content__inner .area .booklet_item_content .booklet_item__inner .right {
  width: 20%;
}
.index__inner .booklet__content__inner .area .booklet_item_content .booklet_item__inner .right .links {
  width: 80%;
  text-align: center;
  padding: 5% 10%;
}
.index__inner .booklet__content__inner .area .booklet_item_content .booklet_item__inner .right .links .more {
  margin: 0.5rem 0;
}
.index__inner .booklet__content__inner .area .booklet_item_content .booklet_item__inner .right .links .more2 {
  background: #262626;
}
.index__inner .booklet__content__inner .area .booklet_item_content .booklet_item__inner .right .links .more_blank {
  background: #7F7F7F;
  font-size: 0.8rem;
}
.index__inner .booklet__content__inner .area .booklet_item_content .booklet_item__inner .right .links p {
  font-size: 0.75rem;
  line-height: 1rem;
}
.index__inner .booklet__content__inner .area .booklet_item_content .item2 {
  padding: 3.5rem 0 3.5rem;
  border-top: solid 1px #eee;
}
.index__inner .booklet__content__inner .area .booklet_item_content .bottom_padding_none {
  padding-bottom: 0;
}

footer {
  background: #262626;
  width: 100%;
}
footer .footer__content {
  width: 90%;
  margin: 0 auto;
  padding: 8rem 0 8rem;
}
footer .footer__content__inner .contact_area {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
}
footer .footer__content__inner .contact_area .applyBtn {
  width: 40%;
  position: relative;
  padding: 4% 4%;
  background: #CF2E2E;
  color: #fff;
  border-radius: 0.5rem;
  cursor: pointer;
}
footer .footer__content__inner .contact_area .applyBtn__inner {
  width: 80%;
}
footer .footer__content__inner .contact_area .applyBtn p {
  font-size: 0.75rem;
  line-height: 1.2rem;
}
footer .footer__content__inner .contact_area .applyBtn .ttl {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  vertical-align: middle;
}
footer .footer__content__inner .contact_area .applyBtn .ttl img {
  vertical-align: middle;
}
footer .footer__content__inner .contact_area .applyBtn span {
  display: block;
}
footer .footer__content__inner .contact_area .applyBtn span img {
  position: absolute;
  right: 4%;
  top: 0;
  bottom: 0;
  margin: auto;
}
footer .footer__content__inner .contactBtn {
  background: #353535 !important;
}
footer .footer__content__inner .applyBtn a {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
footer .footer__content__inner .catch {
  padding: 4rem 0;
  width: 100%;
}
footer .footer__content__inner .catch img {
  width: 100%;
}
footer .footer__content__inner .menu {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  padding: 4rem 0;
}
footer .footer__content__inner .menu .group {
  color: #fff;
  margin-right: 2rem;
}
footer .footer__content__inner .menu .group p {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
footer .footer__content__inner .menu .group ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
footer .footer__content__inner .menu .group ul li {
  font-size: 0.75rem;
  margin-bottom: 1rem;
  margin-right: 1rem;
}
footer .footer__content__inner .menu .group ul li a {
  color: #fff;
}
footer .footer__content__inner .copy {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  width: 100%;
  font-size: 0.75rem;
}
footer .footer__content__inner .copy ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
footer .footer__content__inner .copy ul li {
  margin-right: 1rem;
}
footer .footer__content__inner .copy ul li a {
  color: #7F7F7F;
}
footer .footer__content__inner .copy p {
  text-align: right;
  color: #7F7F7F;
}