@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
ul {
  padding: 0;
  margin: 0;
}

ul > li {
  list-style: none;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

p {
  line-height: 2;
  margin: 0;
}

a {
  color: #323232;
  text-decoration: none;
  transition: all 0.2s;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(1.05rem, 0.967rem + 0.2vw, 20px);
  line-height: 2;
  color: #323232;
}


@media screen and (max-width: 768px) {
	html {
		font-size: clamp(15px, 4vw, 17px);
	}
}

body {
  margin: 0;
}
@media screen and (max-width: 768px) {
  body:has(.siteHeader_navbtn.open) {
    overflow: hidden;
  }
}

.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.container {
  max-width: 1480px;
  width: 87%;
  margin: 0 auto;
}

.section_title {
  margin-bottom: 2.5rem;
}
.section_title-ja {
  font-weight: 400 !important;
  font-size: clamp(1.25rem, 1.059rem + 0.78vw, 32px);
  letter-spacing: 0.2rem;
  margin: 0;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .section_title-ja {
    margin-bottom: 5px;
  }
}
.section_title-en {
  width: 32%;
  max-width: 420px;
}
@media screen and (max-width: 768px) {
  .section_title-en {
    width: 53%;
    max-width: 280px;
  }
}
.section_bg {
  position: absolute;
}

.siteHeader {
  position: relative;
  opacity: 1;
  transition: opacity 0.2s;
  z-index: 1000;
}
.siteHeader.close {
  opacity: 0;
}
.siteHeader_logo {
  width: 10%;
  max-width: 172px;
  margin: 0 !important;
  line-height: 0;
  position: fixed;
  top: calc(50px + 2%);
  left: calc(50px + 1.5%);
  z-index: 1000;
  filter: invert(80%);
  transition: all 0.2s;
}
@media screen and (max-width: 1279px) {
  .siteHeader_logo {
    width: 13%;
    max-width: 130px;
    top: calc(30px + 2%);
    left: calc(30px + 4%);
  }
}
@media screen and (max-width: 768px) {
  .siteHeader_logo {
    width: 23.5%;
    max-width: 150px;
    top: calc(20px + 1%);
    left: calc(20px + 2%);
  }
}
.siteHeader_logo a {
  display: block;
}
.siteHeader_nav {
  width: 30%;
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: 100vh;
  box-sizing: border-box;
  padding: 50px 10px 20px;
  color: #fff;
  background-color: #323232;
  position: fixed;
  top: 0;
  right: -50%;
  transition: all 0.4s ease-in-out;
  z-index: 1000;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .siteHeader_nav {
    right: -100vw;
    width: 100vw;
    padding-top: 30px;
  }
}
.siteHeader_nav.open {
  right: 0;
  opacity: 1;
}
.siteHeader_navbtn {
  width: 7.7vw;
  max-width: 146px;
  min-width: 85px;
  height: auto;
  aspect-ratio: 1/1;
  background-color: #323232;
  border-radius: 0 0 0 45%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1500;
  overflow: hidden;
  transition: all 0.7s;
  cursor: pointer !important;
}
@media screen and (max-width: 768px) {
  .siteHeader_navbtn {
    max-width: 90px;
    min-width: auto;
    width: 22.2vw;
    border-radius: 0 0 0 30%;
  }
}
.siteHeader_navbtn img {
  width: 33%;
}
@media screen and (max-width: 768px) {
  .siteHeader_navbtn img {
    width: 35%;
  }
}
.siteHeader_navbtn-close {
  display: none;
}
.siteHeader_navbtn-open {
  display: block;
}
.siteHeader_navbtn.open {
  background-color: #666;
}
.siteHeader_navbtn.open .siteHeader_navbtn-close {
  display: block;
}
.siteHeader_navbtn.open .siteHeader_navbtn-open {
  display: none;
}
.siteHeader_nav_contents {
  width: 80%;
  max-width: 500px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .siteHeader_nav_contents {
    width: 90%;
    max-width: none;
  }
}
.siteHeader_nav-logo {
  display: block;
  width: clamp(6.25rem, 5.103rem + 4.71vw, 175px);
  max-width: 30%;
  min-width: 95px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .siteHeader_nav-logo {
    max-width: none;
    min-width: auto;
  }
}
@media screen and (max-width: 768px) {
  .siteHeader_nav_list {
    width: 90%;
    margin: 0 auto;
  }
}
.siteHeader_nav_item {
  width: 70%;
  font-size: 16px;
  font-weight: 300;
  cursor: pointer;
}
.siteHeader_nav_item + .siteHeader_nav_item {
  margin-top: 40px;
}
.siteHeader_nav_item a {
  color: #fff;
  margin: 0;
}
.siteHeader_nav_item a:hover {
  opacity: 0.7;
}
.siteHeader_nav_item a p {
  margin: 0;
  line-height: 1.4;
}
.siteHeader_nav_copy {
  font-weight: 300;
  font-size: 12px;
  text-align: center;
  margin-top: auto;
}
.siteHeader.bg-black .siteHeader_logo {
  filter: invert(0);
}
.siteHeader.bg-black .siteHeader_navbtn {
  background-color: #666;
}

.fv {
  height: calc(100vh - 100px);
  margin: 50px;
  position: relative;
  z-index: -1;
  box-sizing: border-box;
}
@media screen and (max-width: 1279px) {
  .fv {
    height: calc(100vh - 45px);
    margin-top: 30px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .fv {
    height: calc(100vh - 40px);
    margin: 20px;
  }
}
.fv_bg {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 1279px) {
  .fv_bg {
    height: 80%;
  }
}
@media screen and (max-width: 768px) {
  .fv_bg {
    height: 90%;
  }
}
.fv_bg-video {
  width: 100%;
  height: 100%;
}
.fv_bg-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fv_bg-frame {
  position: absolute;
  z-index: 1;
  line-height: 0;
}
.fv_bg-topL {
  width: 18%;
  top: -1px;
  left: -1px;
}
@media screen and (max-width: 1279px) {
  .fv_bg-topL {
    max-width: 237px;
    width: 27%;
  }
}
@media screen and (max-width: 768px) {
  .fv_bg-topL {
    width: 40%;
  }
}
.fv_bg-topR {
  width: 4%;
  top: -1px;
  right: -1px;
}
@media screen and (max-width: 1279px) {
  .fv_bg-topR {
    max-width: 43.5px;
    width: 7%;
  }
}
.fv_bg-bottomL {
  width: 4%;
  bottom: -1px;
  left: -1px;
}
@media screen and (max-width: 1279px) {
  .fv_bg-bottomL {
    max-width: 43.5px;
    width: 7%;
  }
}
.fv_bg-bottomR {
  width: 63%;
  bottom: -1px;
  right: -1px;
}
@media screen and (max-width: 1279px) {
  .fv_bg-bottomR {
    max-width: 43.5px;
    width: 7%;
  }
}
.fv_txtJa {
  font-size: clamp(1.125rem, 0.775rem + 2.5vw, 60px);
  font-weight: 300;
  line-height: 1;
  background-color: #323232;
  color: #fff;
  border-radius: 10px;
  padding: 2px 0 6px;
  padding-left: 10px;
  position: absolute;
  right: 50px;
  bottom: calc(10.5vw + 50px);
}
@media screen and (max-width: 1279px) {
  .fv_txtJa {
    writing-mode: vertical-rl;
    font-size: clamp(1.875rem, 1.716rem + 0.65vw, 31px);
    letter-spacing: 0.1rem;
    line-height: 1.5;
    border-radius: 5px;
    padding: 0.8rem 0 0;
    bottom: 5%;
    right: 7%;
  }
}
@media screen and (max-width: 768px) {
  .fv_txtJa {
    right: 8%;
  }
}
.fv_txtJa span {
  letter-spacing: -1rem;
}
@media screen and (max-width: 1279px) {
  .fv_txtJa span {
    letter-spacing: -0.5rem;
  }
}
.fv_txtEn {
  width: 52%;
  max-width: 1005px;
  position: absolute;
  right: 2%;
  bottom: 0;
}
@media screen and (max-width: 1279px) {
  .fv_txtEn {
    height: 20%;
    width: auto;
    position: relative;
    right: auto;
    bottom: auto;
  }
}
@media screen and (max-width: 768px) {
  .fv_txtEn {
    height: 10%;
    margin-top: auto;
  }
}
.fv_txtEn img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left 50%;
     object-position: left 50%;
}

.about {
  padding-top: 150px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  .about {
    padding-top: 100px;
  }
}
@media screen and (max-width: 768px) {
  .about {
    padding-top: 80px;
  }
}
.about_contents {
  overflow: hidden;
}
.about_main {
  font-size: clamp(29px, 1.395rem + 1.46vw, 55px);
  font-weight: 500;
  text-indent: -1rem;
  line-height: 1.5;
  margin: 0;
  margin-bottom: 5rem;
}
@media screen and (max-width: 1024px) {
  .about_main {
    margin-bottom: 35px;
  }
}
.about_main span:first-child {
  color: #ff81a6;
}
.about_main span:nth-child(2) {
  color: #7bd2ff;
}
.about_main span:nth-child(3) {
  color: #7bd279;
}
.about_main span:last-child {
  color: #ffc314;
}
.about_info {
  width: 66%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-left: auto;
  position: relative;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .about_info {
    width: 100%;
    margin-bottom: 60px;
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .about_info {
    margin-bottom: 40px;
  }
}
.about_info::after {
  content: "";
  display: block;
  width: 100vw;
  height: 300%;
  background-color: #fff;
  border-radius: 0 0 0 100px;
  position: absolute;
  bottom: -40%;
  left: -8%;
  z-index: -2;
}
@media screen and (max-width: 1024px) {
  .about_info::after {
    display: none;
  }
}
.about_slide {
  position: relative;
  bottom: 200px;
  z-index: -3;
  transform: rotate(-5deg);
}
@media screen and (max-width: 1024px) {
  .about_slide {
    bottom: 0;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .about_slide {
    bottom: 0;
    transform: translateX(-5px) rotate(-5deg);
  }
}
.about_slide_contents {
  display: flex;
  flex-wrap: nowrap;
  justify-content: unset;
  gap: 1%;
}
.about_slide-item {
  min-width: 155vw;
  transform: translateX(0);
  animation: slide 30s linear infinite;
}
@media screen and (max-width: 1024px) {
  .about_slide-item {
    min-width: 170vw;
  }
}
@media screen and (max-width: 768px) {
  .about_slide-item {
    min-width: 300vw;
  }
}
.about_bg-text {
  width: 75%;
  max-width: 1242px;
}
@media screen and (max-width: 768px) {
  .about_bg-text {
    width: 95%;
  }
}
.about_bg-topR {
  top: 14%;
  right: 2%;
  width: 32%;
  max-width: 539px;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .about_bg-topR {
    width: 42%;
    top: 3%;
  }
}
.about_bg-topL {
  top: 35%;
  left: 3%;
  width: 2%;
  max-width: 46px;
  z-index: -2;
}
@media screen and (max-width: 1024px) {
  .about_bg-topL {
    display: none;
  }
}

.business {
  position: relative;
  margin-top: -100px;
  margin-bottom: 250px;
  padding: 150px 0;
}
@media screen and (max-width: 1024px) {
  .business {
    padding: 50px 0;
    margin-top: 50px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .business {
    padding-bottom: 12px;
  }
}
.business::before {
  content: "";
  display: block;
  width: 97%;
  max-width: 1794px;
  height: 100%;
  background-color: #323232;
  color: #fff;
  border-radius: 0 70px 70px 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .business .container {
    width: 76.5%;
  }
}
.business .section_title-ja {
  color: #fff;
}
.business .section_title-en {
  width: 30%;
  max-width: 429px;
}
@media screen and (max-width: 768px) {
  .business .section_title-en {
    max-width: 250px;
    width: 57%;
  }
}
.business_items {
  width: 88%;
  max-width: 1326px;
  padding-right: 20px;
  margin: 70px auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .business_items {
    display: block;
    width: 100%;
    padding-left: 0;
    margin-top: 45px;
  }
}
.business_item {
  width: 46%;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .business_item {
    width: 100%;
  }
}
.business_item-img {
  position: relative;
  width: calc(100% - 18px);
  aspect-ratio: 1/0.712;
}
@media screen and (max-width: 768px) {
  .business_item-img {
    width: calc(100% - 10px);
  }
}
.business_item-img img {
  border-radius: 35px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .business_item-img img {
    border-radius: 22px;
  }
}
.business_item-img-bg {
  width: 100%;
  height: auto;
  aspect-ratio: 1/0.712;
  display: block;
  background: linear-gradient(45deg, #ef88a6, #fbe6ec);
  border-radius: 35px;
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .business_item-img-bg {
    top: 10px;
    left: 10px;
    border-radius: 22px;
  }
}
.business_item-product {
  margin-top: 85px;
}
@media screen and (max-width: 768px) {
  .business_item-product {
    margin-top: 50px;
  }
}
.business_item-product .business_item-img-bg {
  background: linear-gradient(45deg, #f6c548, #fdf3d2);
}
.business_item-name {
  font-size: clamp(1.375rem, 1.072rem + 1.29vw, 2.625rem);
  font-weight: 500;
  margin: 30px 0 10px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .business_item-name {
    margin: 20px 0 8px;
  }
}
.business_item-info {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .business_item-info {
    margin-top: 8px;
  }
}
.business_bg-topR {
  width: 20%;
  max-width: 338px;
  top: -5%;
  right: 2%;
}
@media screen and (max-width: 768px) {
  .business_bg-topR {
    width: 41%;
    max-width: 144px;
    right: 2%;
    top: -2%;
  }
}
.business_bg-bottomL {
  width: 18%;
  max-width: 304px;
  bottom: -8%;
  left: 2%;
}
@media screen and (max-width: 768px) {
  .business_bg-bottomL {
    width: 39%;
    max-width: 132px;
    left: 5%;
    bottom: -4%;
  }
}

.company {
  position: relative;
  margin-top: 150px;
  margin-bottom: 150px;
  padding: 150px 0 50px;
}
@media screen and (max-width: 1024px) {
  .company {
    padding-top: 120px;
  }
}
@media screen and (max-width: 768px) {
  .company {
    margin-top: 120px;
    margin-bottom: 92px;
    padding: 30vw 0 10vw;
  }
}
.company::before {
  content: "";
  display: block;
  width: 95%;
  max-width: 1700px;
  height: 100%;
  background-color: #ededed;
  opacity: 0.8;
  border-radius: 70px 0 0 70px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.company_title {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .company_title {
    margin-bottom: 20px;
  }
}
.company_title .section_title-en {
  margin-left: auto;
  width: 36%;
  max-width: 533px;
}
@media screen and (max-width: 768px) {
  .company_title .section_title-en {
    width: 71%;
    max-width: 350px;
  }
}
.company_item {
  width: 80%;
  max-width: 1214px;
  margin: 30px auto;
  background-color: #fff;
  padding: 100px 50px;
  padding-bottom: 130px;
  box-sizing: border-box;
  border-radius: 40px;
}
@media screen and (max-width: 1024px) {
  .company_item {
    padding: 50px 30px 80px;
  }
}
@media screen and (max-width: 768px) {
  .company_item {
    width: 88%;
    border-radius: 28px;
    padding: 20px;
    padding-bottom: 40px;
    margin-top: 25px;
    margin-bottom: 10px;
  }
}
.company_list {
  max-width: 900px;
  margin: 0 auto;
}
.company_list-item {
  display: flex;
  align-items: center;
  border-bottom: 2px solid #c6ccc3;
  padding: 30px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .company_list-item {
    display: block;
    text-align: left;
    padding: 20px 5px;
    border-width: 1px;
    border-color: #4d4d4d;
  }
}
.company_list-item dt {
  width: 200px;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .company_list-item dt {
    width: 150px;
  }
}
@media screen and (max-width: 768px) {
  .company_list-item dt {
    width: auto;
    text-align: left;
    border-bottom: 1px solid #7bd279;
    padding-bottom: 20px;
    margin-bottom: 20px;
    padding-left: 8px;
  }
}
.company_list-item dt::after {
  content: "";
  display: block;
  width: 200px;
  height: 2px;
  background-color: #7bd279;
  position: absolute;
  bottom: -2px;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .company_list-item dt::after {
    width: 150px;
  }
}
@media screen and (max-width: 768px) {
  .company_list-item dt::after {
    display: none;
  }
}
.company_list-item dd {
  margin-left: 2rem;
}
@media screen and (max-width: 768px) {
  .company_list-item dd {
    margin: 0;
    padding-left: 8px;
  }
}
.company_list-item dd p {
  line-height: 1.5;
}
.company_list-item dd p + p {
  margin-top: 7px;
}
.company_list-item dd a:hover {
  color: #7bd279;
}
.company_list-item span {
  display: inline-block;
}
.company .mailAddress img {
  max-height: 20px;
  width: auto;
}
.company_bg-office {
  width: 63%;
  max-width: 1054px;
  aspect-ratio: 1/0.542;
  border-radius: 40px;
  overflow: hidden;
  top: -5%;
  left: 8%;
  transform: rotate(-5deg);
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .company_bg-office {
    width: 68%;
    max-width: 700px;
    left: 3%;
  }
}
@media screen and (max-width: 768px) {
  .company_bg-office {
    width: 84%;
    max-width: 550px;
    border-radius: 30px;
    left: 52%;
    top: -4%;
    transform: translateX(-50%) rotate(-5deg);
  }
}
.company_bg-office img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.company_bg-topR {
  width: 2.5%;
  max-width: 45px;
  top: 0%;
  right: 5%;
}
@media screen and (max-width: 1024px) {
  .company_bg-topR {
    width: 3%;
  }
}
.company_bg-bottomL {
  width: 5%;
  max-width: 85px;
  bottom: 30%;
  left: 6%;
}
.company_bg-bottomR {
  width: 25%;
  max-width: 444px;
  bottom: -2%;
  right: 2%;
}
@media screen and (max-width: 768px) {
  .company_bg-bottomR {
    width: 35%;
    max-width: 135px;
    bottom: -3%;
    left: 20%;
  }
}

.footer {
  background-color: #323232;
  color: #fff;
  position: relative;
}
.footer .container {
  position: relative;
  z-index: 0;
}
.footer_contents {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 30px;
  padding: 200px 0 150px;
  background-color: #323232;
}
@media screen and (max-width: 1024px) {
  .footer_contents {
    padding: 120px 0 100px;
  }
}
@media screen and (max-width: 768px) {
  .footer_contents {
    padding: 75px 0 50px;
    flex-direction: column-reverse;
    gap: 78px;
  }
}
.footer_company {
  display: flex;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
}
.footer_company-logo {
  max-width: 267px;
  width: 45%;
}
@media screen and (max-width: 768px) {
  .footer_company-logo {
    width: 163px;
  }
}
.footer_company-name {
  font-size: clamp(1rem, 0.939rem + 0.26vw, 20px);
  letter-spacing: 0.1rem;
  font-weight: 500;
}
.footer_company-list {
  font-weight: 300;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .footer_company-list {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .footer_company-list-item + .footer_company-list-item {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .footer_company-list-item-officename {
    display: block !important;
  }
}
.footer_company-list span {
  display: inline-block;
}
.footer_copy {
  font-size: clamp(12px, 0.686rem + 0.26vw, 16px);
  font-weight: 300;
  padding-top: 20px;
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  .footer_copy {
    text-align: center;
    padding-top: 60px;
  }
}
.footer_menu {
  margin-right: 80px;
}
@media screen and (max-width: 1024px) {
  .footer_menu {
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .footer_menu {
    margin-right: 0;
    width: 59%;
    max-width: 300px;
  }
}
.footer_menu-list-item + .footer_menu-list-item {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .footer_menu-list-item + .footer_menu-list-item {
    margin-top: 40px;
  }
}
.footer_menu-list-item-en {
  margin: 0;
  line-height: 0;
}
.footer_menu-list-item-ja {
  margin: 0;
  font-size: 16px;
}
.footer_topBtn-link {
  position: absolute;
  right: 0;
  width: 200px;
  aspect-ratio: 1/1;
  top: -80px;
  background-color: #323232;
  padding: 20px 0;
  box-sizing: border-box;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  opacity: 1 !important;
  transition: all 0.2s;
}
@media screen and (max-width: 1024px) {
  .footer_topBtn-link {
    width: 150px;
    top: -55px;
  }
}
@media screen and (max-width: 768px) {
  .footer_topBtn-link {
    width: 125px;
    top: -55px;
  }
}
.footer_topBtn-link:hover {
  background-color: #1a1a1a;
}
.footer_topBtn-link img {
  margin-top: 10px;
  width: 35px;
}
@media screen and (max-width: 1024px) {
  .footer_topBtn-link img {
    width: 25px;
    margin-top: 2px;
  }
}
@media screen and (max-width: 768px) {
  .footer_topBtn-link img {
    width: 22px;
    margin-top: 2%;
  }
}
.footer a {
  color: #fff;
}
.footer a:hover {
  opacity: 0.7;
}
.footer_bg-bottomL {
  width: 6%;
  max-width: 112px;
  bottom: 14%;
  left: 2%;
}
@media screen and (max-width: 768px) {
  .footer_bg-bottomL {
    width: 16%;
    max-width: 62px;
    bottom: 35%;
    right: 5%;
    left: auto;
  }
}