@charset "UTF-8";
html {
  color: #000;
  font-family: "LINE Seed JP", sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  word-wrap: break-word;
}
@media print, screen and (min-width: 768px) and (max-width: 1400px) {
  html {
    font-size: 0.7142857143vw;
  }
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 1.3020833333vw;
  }
}
html * {
  font-weight: inherit;
  box-sizing: border-box;
}

body {
  font-size: 1.5rem;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 2.8rem;
  }
}

header, main, section, aside, footer {
  width: 100%;
}

a {
  cursor: pointer;
  transition: all ease-in-out 0.3s;
}

figure img, h1 img, h2 img, h3 img, h4 img, h5 img, h6 img {
  width: 100%;
  height: auto;
}
figure img[src$=".svg"], h1 img[src$=".svg"], h2 img[src$=".svg"], h3 img[src$=".svg"], h4 img[src$=".svg"], h5 img[src$=".svg"], h6 img[src$=".svg"] {
  max-width: 100%;
}

th {
  font-weight: normal;
}

#wrapper {
  overflow: clip;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tal {
  text-align: left;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.fwb {
  font-weight: bold;
}

.noFind {
  text-align: center;
  width: 100%;
  margin-top: 1rem;
}
@media only screen and (max-width: 767px) {
  .noFind {
    margin-top: 2rem;
  }
}

.scrollbar {
  overflow: hidden scroll;
  padding-right: 1rem;
}
.scrollbar::-webkit-scrollbar {
  width: 1rem;
}
.scrollbar::-webkit-scrollbar-track {
  background-color: #E6E6E6;
}
.scrollbar::-webkit-scrollbar-thumb {
  background-color: #B3B3B3;
}

.flowLink {
  position: relative;
  padding-bottom: 0.4rem;
}
@media print, screen and (min-width: 768px) {
  .flowLink::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #074097;
    height: 2px;
    width: 100%;
    transform: scale(0);
    transform-origin: left center;
    transition: all ease 0.3s;
  }
}
.flowLink:hover::after {
  transform: scale(1);
}

.maker {
  display: inline;
  background: linear-gradient(transparent 70%, #fdd8d8 0%);
  padding: 0 0.4rem;
}

.scrollAnim {
  position: absolute;
  text-align: center;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  font-weight: bold;
  font-size: 1.2rem;
}
.scrollAnim a {
  position: relative;
  display: inline-block;
  padding-bottom: 8rem;
}
.scrollAnim a::before, .scrollAnim a::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0.3rem;
}
.scrollAnim a::before {
  height: 8rem;
  background-color: #074097;
  bottom: 0;
}
.scrollAnim a::after {
  height: 0rem;
  background-color: #fff;
  bottom: 8rem;
  animation: scroll_anim 1.6s ease-in-out 0s infinite normal forwards;
}

@media print, screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
  #wrapper:not(.preload) * {
    transition: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@keyframes scroll_anim {
  0% {
    height: 0;
    bottom: 8rem;
  }
  70% {
    height: 5rem;
  }
  80% {
    bottom: 0;
  }
  100% {
    height: 0;
    bottom: 0;
  }
}
@keyframes zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.15);
  }
}
.scrollItem, .scrollListItem {
  opacity: 0;
  transition: all ease-in-out 0.6s;
}
.scrollItem.scrollActive, .scrollListItem.scrollActive {
  opacity: 1 !important;
  transform: translate(0) scale(1) !important;
}

.fadein {
  opacity: 0;
}
.fadein.scrollActive {
  opacity: 1;
}

.scaleUp {
  opacity: 0;
  transform: scale(0.2);
}

.fadeTop {
  transform: translateY(5rem);
}
.fadeTop.scrollActive {
  transform: translate(0);
}

.fadeRight {
  transform: translateX(5rem);
}
.fadeRight.scrollActive {
  transform: translate(0);
}

.fadeBottom {
  transform: translateY(-5rem);
}
.fadeBottom.scrollActive {
  transform: translate(0);
}

.fadeLeft {
  transform: translateX(-5rem);
}
.fadeLeft.scrollActive {
  transform: translate(0);
}

.fadeInLeft, .fadeInRight {
  position: relative;
}
.fadeInLeft::after, .fadeInRight::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transition: all ease-in-out 0.6s;
  transform-origin: center right;
}
.fadeInLeft.scrollActive::after, .fadeInRight.scrollActive::after {
  transform: scaleX(0);
}

.fadeInRight::after {
  transform-origin: center left;
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  z-index: 998;
  padding-right: 1rem;
}
.header__logo a {
  display: block;
  width: 42rem;
  padding: 2rem;
  background-color: #fff;
  border-bottom-right-radius: 1rem;
}
@media only screen and (max-width: 767px) {
  .header__logo a {
    border-bottom-right-radius: 2rem;
    width: 60rem;
    padding: 3rem;
  }
}
.header .gnav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  width: 50rem;
  background-color: #fff;
  transition: all ease-in-out 0.6s;
  transform: translateX(100%);
  z-index: -1;
  visibility: hidden;
  border-top-left-radius: 5rem;
  border-bottom-left-radius: 5rem;
  padding: 8rem 0;
  overflow: hidden scroll;
}
@media only screen and (max-width: 767px) {
  .header .gnav {
    padding: 9rem 6rem 18rem;
    border-radius: 0;
    width: 100%;
    border: 3rem solid #074097;
  }
}
.header .gnav.active {
  transform: translateX(0);
  visibility: visible;
}
.header .gnav__inner {
  width: 80%;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .header .gnav__inner {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .header .gnav__list {
    margin-top: 10rem;
  }
}
.header .gnav__item {
  font-weight: bold;
}
.header .gnav__item:not(:first-child) {
  margin-top: 4rem;
}
@media only screen and (max-width: 767px) {
  .header .gnav__item:not(:first-child) {
    margin-top: 6rem;
  }
}
.header .gnav__item a {
  position: relative;
  margin-left: 2rem;
}
@media only screen and (max-width: 767px) {
  .header .gnav__item a {
    margin-left: 4rem;
  }
}
.header .gnav__item a.active {
  color: #074097;
}
.header .gnav__item a.active::before {
  opacity: 1;
}
.header .gnav__item a::before {
  content: "●";
  position: absolute;
  top: 0.2rem;
  left: -2rem;
  color: #074097;
  font-size: 1.2rem;
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .header .gnav__item a::before {
    font-size: 2rem;
    left: -4rem;
    top: 0.6rem;
  }
}
.header .gnav__footer {
  display: flex;
  justify-content: space-between;
  margin-top: 8rem;
}
@media only screen and (max-width: 767px) {
  .header .gnav__footer {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .header .gnav__media {
    width: 100%;
  }
}
.header .gnav__media .title {
  font-size: 2.6rem;
  color: #074097;
  white-space: nowrap;
  margin-bottom: 3.5rem;
}
@media only screen and (max-width: 767px) {
  .header .gnav__media .title {
    font-size: 5rem;
  }
}
.header .gnav__media .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem 0;
}
@media print, screen and (min-width: 768px) {
  .header .gnav__media .list {
    gap: 3rem 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .header .gnav__media .list {
    justify-content: flex-start;
    gap: 2rem;
  }
}
.header .gnav__media .list .item {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .header .gnav__media .list .item {
    width: 16%;
  }
}
.header .gnav__media .list .item figure {
  width: 100%;
}
.header .gnav__entry {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .header .gnav__entry {
    width: 100%;
    margin-top: 2rem;
  }
}
.header .gnav__entry .title {
  font-size: 2.6rem;
  color: #074097;
  white-space: nowrap;
  margin-bottom: 3.5rem;
}
@media only screen and (max-width: 767px) {
  .header .gnav__entry .title {
    font-size: 5rem;
  }
}
.header .gnav__entry .linkType01__icon {
  top: 0.5rem;
  right: 0;
}
.header .gnav__entry--banners {
  display: flex;
  flex-direction: column;
}
@media print, screen and (min-width: 768px) {
  .header .gnav__entry--banners {
    gap: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .header .gnav__entry--banners {
    flex-direction: row;
    justify-content: space-between;
  }
}
.header .gnav__entry--banner {
  width: 18rem;
  height: 5rem;
}
@media only screen and (max-width: 767px) {
  .header .gnav__entry--banner {
    display: block;
    width: 48%;
    height: 12rem;
  }
}
.header .gnav__entry--banner a {
  border: 1px solid #074097;
  border-radius: 1rem;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}
@media print, screen and (min-width: 768px) {
  .header .gnav__entry--banner a:hover {
    opacity: 0.7;
  }
}
.header .gnav__entry--banner a img {
  width: 82.2222222222%;
}
@media only screen and (max-width: 767px) {
  .header .gnav__entry--banner a img {
    width: 86.2068965517%;
  }
}
.header__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  width: 5.5rem;
  height: 5.5rem;
  background-color: #fff;
  border-radius: 1rem;
  transition: all ease-in-out 0.6s;
}
@media only screen and (max-width: 767px) {
  .header__btn {
    width: 7rem;
    height: 7rem;
  }
}
.header__btn.active {
  background-color: #074097;
}
.header__btn.active .bar {
  background-color: #fff;
}
.header__btn.active .bar:first-of-type {
  transform: translateY(0.8rem) rotate(45deg);
}
@media only screen and (max-width: 767px) {
  .header__btn.active .bar:first-of-type {
    transform: translateY(1.3rem) rotate(45deg);
  }
}
.header__btn.active .bar:nth-child(2) {
  transform: translateY(-50%);
  opacity: 0;
}
.header__btn.active .bar:last-of-type {
  transform: translateY(-0.8rem) rotate(-45deg);
}
@media only screen and (max-width: 767px) {
  .header__btn.active .bar:last-of-type {
    transform: translateY(-1rem) rotate(-45deg);
  }
}
.header__btn.active .menu {
  display: none;
}
.header__btn.active .close {
  display: block;
}
.header__btn .mark {
  position: relative;
  cursor: pointer;
  height: 1.8rem;
  width: 3rem;
  transition: all 0.6s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .header__btn .mark {
    height: 2.4rem;
    width: 4rem;
  }
}
.header__btn .bar {
  position: absolute;
  left: 0;
  background-color: #074097;
  height: 0.2rem;
  width: 100%;
  transition: all 0.6s ease-in-out;
}
.header__btn .bar:first-of-type {
  top: 0;
}
.header__btn .bar:nth-child(2) {
  top: 0.9rem;
}
@media only screen and (max-width: 767px) {
  .header__btn .bar:nth-child(2) {
    top: 1.1rem;
  }
}
.header__btn .bar:last-of-type {
  bottom: 0;
}
.header__btn .menu, .header__btn .close {
  font-weight: bold;
  display: inline-block;
  margin-top: 1rem;
  color: #fff;
}
.header__btn .menu {
  display: block;
}
.header__btn .close {
  display: none;
}

.contents {
  position: relative;
}
.contents__inner {
  display: flex;
  padding: 10rem 0;
}
@media only screen and (max-width: 767px) {
  .contents__inner {
    flex-direction: column;
    min-height: auto;
    padding: 18rem 0 14rem;
  }
}
.contents__heading {
  flex-shrink: 0;
  width: 26rem;
  padding-top: 5rem;
}
@media only screen and (max-width: 767px) {
  .contents__heading {
    width: 100%;
    padding-top: 0;
  }
}
.contents__en {
  font-size: 4rem;
  font-weight: bold;
  color: #fff;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .contents__en {
    font-size: 8rem;
  }
}
.contents__ja {
  font-size: 2rem;
  color: #fff;
  margin-top: 1rem;
}
@media only screen and (max-width: 767px) {
  .contents__ja {
    font-size: 2.8rem;
    margin-top: 2rem;
  }
}
.contents__list {
  display: flex;
  gap: 2rem;
  width: 100rem;
}
@media only screen and (max-width: 767px) {
  .contents__list {
    flex-direction: column;
    width: 100%;
    gap: 3rem;
    margin-top: 14rem;
  }
}
.contents__item {
  width: 32%;
}
@media only screen and (max-width: 767px) {
  .contents__item {
    width: 100%;
  }
}
.contents__item a {
  position: relative;
  display: block;
  background: #fff;
  border-radius: 3rem;
  padding: 1rem;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .contents__item a {
    padding: 2rem;
  }
}
@media print, screen and (min-width: 768px) {
  .contents__item a:hover::before, .contents__item a:hover .contents__hover {
    opacity: 1;
  }
}
.contents__item a::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: all ease-in-out 0.3s;
  background-image: linear-gradient(45deg, #ffffff 20%, transparent);
  z-index: 3;
}
.contents__img {
  width: 100%;
  border-radius: 3rem;
  overflow: hidden;
}
.contents__hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: all ease-in-out 0.3s;
}
.contents__hover img {
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
}
.contents__name {
  position: relative;
  z-index: 3;
  padding: 4.5rem 1rem 6rem;
  font-size: 2rem;
  font-weight: bold;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .contents__name {
    font-size: 4rem;
    padding: 3.5rem 1rem 5rem;
  }
}

.entry__inner {
  margin: auto;
  width: 98%;
}
@media only screen and (max-width: 767px) {
  .entry__inner {
    width: 92%;
  }
}
.entry__inner .linkType01 {
  cursor: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 1.5rem 1.5rem 1.5rem 7rem;
  border-radius: 4.5rem;
}
@media only screen and (max-width: 767px) {
  .entry__inner .linkType01 {
    display: block;
    padding: 3rem;
  }
}
.entry__heading {
  position: relative;
  padding-bottom: 6rem;
}
@media only screen and (max-width: 767px) {
  .entry__heading {
    padding: 3rem;
  }
}
.entry__heading .linkType01__icon {
  left: 0;
  bottom: 0;
  width: 4rem;
  height: 4rem;
}
@media only screen and (max-width: 767px) {
  .entry__heading .linkType01__icon {
    left: auto;
    right: 3rem;
    top: 0;
    margin: auto;
    width: 10rem;
    height: 10rem;
  }
}
.entry__heading .linkType01__icon span::before, .entry__heading .linkType01__icon span::after {
  width: 2.3rem;
  height: 2rem;
}
@media only screen and (max-width: 767px) {
  .entry__heading .linkType01__icon span::before, .entry__heading .linkType01__icon span::after {
    height: 5rem;
    width: 5.6rem;
  }
}
.entry__en {
  font-size: 6rem;
  font-weight: bold;
  color: #074097;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .entry__en {
    font-size: 8rem;
  }
}
.entry__ja {
  font-size: 2rem;
  color: #074097;
  margin-top: 1rem;
}
@media only screen and (max-width: 767px) {
  .entry__ja {
    font-size: 2.8rem;
  }
}
.entry__img {
  position: relative;
  width: 80%;
}
@media only screen and (max-width: 767px) {
  .entry__img {
    width: 100%;
  }
}
.entry__img .bg img {
  width: 100%;
  height: auto;
}
.entry__img .banner {
  position: absolute;
  top: 20.3125%;
  width: 48%;
  aspect-ratio: 48/8;
  right: 11rem;
}
@media only screen and (max-width: 767px) {
  .entry__img .banner {
    width: 90.1840490798%;
    right: auto;
    left: 50%;
    aspect-ratio: 294/80;
    transform: translateX(-50%);
    top: 54%;
  }
}
.entry__img .banner.banner02 {
  top: 54.6875%;
}
@media only screen and (max-width: 767px) {
  .entry__img .banner.banner02 {
    top: 76.5%;
  }
}
.entry__img .banner a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 1rem;
}
@media print, screen and (min-width: 768px) {
  .entry__img .banner a:hover {
    transform: scale(1.05);
  }
}
@media only screen and (max-width: 767px) {
  .entry__img .banner a {
    width: 100%;
    border-radius: 2rem;
    border: 1px solid #074097;
  }
}
.entry__img .banner a img {
  width: 41.6666666667%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .entry__img .banner a img {
    width: 68.0272108844%;
  }
}
.entry__img .icon {
  position: absolute;
  width: 20%;
  top: 54.5%;
  left: 22%;
  transform: translate(-50%, -50%) scale(0.2);
  transition: all ease-in-out 1.2s;
}
@media only screen and (max-width: 767px) {
  .entry__img .icon {
    top: 24.5%;
    left: 50%;
    width: 42.9447852761%;
  }
}
.entry__img .icon.scrollActive {
  transform: translate(-50%, -50%) scale(1) !important;
}

.footer {
  margin: 1.5rem 0;
}
@media only screen and (max-width: 767px) {
  .footer {
    margin: 4vw 0;
  }
}
.footer__inner {
  margin: auto;
  width: 98%;
  background: #fff;
  padding: 7rem;
  border-radius: 4.5rem;
}
@media only screen and (max-width: 767px) {
  .footer__inner {
    width: 92%;
    padding: 5rem;
  }
}
.footer__logo {
  width: 40rem;
}
@media only screen and (max-width: 767px) {
  .footer__logo {
    width: 54rem;
  }
}
.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 7rem;
}
@media only screen and (max-width: 767px) {
  .footer__top {
    flex-direction: column;
    gap: 7rem;
    margin-top: 4rem;
  }
}
.footer__nav {
  display: flex;
  justify-content: space-between;
  width: 70%;
}
@media only screen and (max-width: 767px) {
  .footer__nav {
    display: block;
    width: 100%;
  }
}
.footer__nav .linkType01 .title {
  font-size: 2.6rem;
  color: #074097;
  white-space: nowrap;
  margin-bottom: 3.5rem;
}
@media only screen and (max-width: 767px) {
  .footer__nav .linkType01 .title {
    font-size: 5rem;
  }
}
.footer__nav .gnav__entry {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .footer__nav .gnav__entry {
    width: 100%;
    margin-top: 2rem;
  }
}
.footer__nav .gnav__entry .linkType01__icon {
  top: 0.5rem;
  right: 0;
}
.footer__nav .gnav__entry--banners {
  display: flex;
  flex-direction: column;
}
@media print, screen and (min-width: 768px) {
  .footer__nav .gnav__entry--banners {
    gap: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer__nav .gnav__entry--banners {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__nav .gnav__entry--banner {
  width: 18rem;
  height: 5rem;
}
@media only screen and (max-width: 767px) {
  .footer__nav .gnav__entry--banner {
    display: block;
    width: 48%;
    height: 12rem;
  }
}
.footer__nav .gnav__entry--banner a {
  border: 1px solid #074097;
  border-radius: 1rem;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}
@media print, screen and (min-width: 768px) {
  .footer__nav .gnav__entry--banner a:hover {
    opacity: 0.7;
  }
}
.footer__nav .gnav__entry--banner a img {
  width: 82.2222222222%;
}
@media only screen and (max-width: 767px) {
  .footer__nav .gnav__entry--banner a img {
    width: 86.2068965517%;
  }
}
.footer__nav .list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media only screen and (max-width: 767px) {
  .footer__nav .list {
    gap: 0;
  }
}
@media only screen and (max-width: 767px) {
  .footer__nav .item {
    margin-top: 4rem;
  }
}
.footer__nav .item a {
  font-weight: bold;
  color: #000;
}
.footer__nav .item a:hover {
  color: #074097;
}
.footer__entry .title {
  font-size: 2.6rem;
  color: #074097;
}
@media only screen and (max-width: 767px) {
  .footer__entry .title {
    font-size: 5.2rem;
  }
}
.footer__media {
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .footer__media {
    width: 100%;
  }
}
.footer__media .title {
  font-size: 2.6rem;
  color: #074097;
}
@media only screen and (max-width: 767px) {
  .footer__media .title {
    font-size: 5.2rem;
  }
}
.footer__media .list {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-top: 3rem;
}
@media only screen and (max-width: 767px) {
  .footer__media .list {
    gap: 2rem;
  }
}
.footer__media .item {
  width: 3rem;
}
@media only screen and (max-width: 767px) {
  .footer__media .item {
    width: 18%;
  }
}
.footer__bottom {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 7rem;
}
@media only screen and (max-width: 767px) {
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
  }
}
.footer__bottom .link:hover span::before {
  opacity: 1;
  transform: translate(0, 0);
}
.footer__bottom .link:hover span::after {
  opacity: 0;
  transform: translate(1.5rem, -1.5rem);
}
.footer__bottom .link span {
  position: relative;
  padding-right: 3rem;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .footer__bottom .link span {
    padding-right: 5rem;
  }
}
.footer__bottom .link span::before, .footer__bottom .link span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url("../img/common/icon_arrow02.svg");
  background-size: cover;
  width: 1rem;
  height: 1rem;
  transition: all ease-in-out 0.3s;
}
@media only screen and (max-width: 767px) {
  .footer__bottom .link span::before, .footer__bottom .link span::after {
    height: 2rem;
    width: 2rem;
  }
}
.footer__bottom .link span::before {
  opacity: 0;
  transform: translate(-1.5rem, 1.5rem);
}
.footer__copy {
  font-size: 1.2rem;
  color: #000;
  margin-left: auto;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .footer__copy {
    margin: 4rem 0 0 0;
    font-size: 2rem;
  }
}