@charset "UTF-8";
/*メインカラー*/
/*サブカラー*/
/*PCパターン1*/
/*PCパターン2*/
/*
@mixin phone_ver() {
  @media (max-aspect-ratio: 2/3) and (hover: none) and (pointer: coarse) {
    @content;
  }
}*/
* { /*全部*/
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  width: 100%;
  height: auto;
  scroll-behavior: smooth; /* スクロール */
  font-size: 0.6944444444vw;
  scroll-padding-top: 14rem;
}
@media (max-aspect-ratio: 2/3) {
  html {
    font-size: 2.2666666667vw;
    scroll-padding-top: 8rem;
  }
}

body {
  width: 100%;
  height: auto;
  font-size: 1.6rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}
body.active {
  overflow: hidden;
}

a {
  text-decoration: none;
  cursor: pointer;
}

button {
  cursor: pointer;
}

.font-dinCondensed {
  font-family: "din-condensed", sans-serif;
  font-style: normal;
}

.scrollAnimation {
  opacity: 0;
  transform: translateY(5rem);
  transition: 1s opacity ease, 0.5s transform ease;
}

.scrollAnimationActive {
  opacity: 1;
  transform: translateY(0);
}

header {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.5rem 0;
  position: fixed;
  z-index: 99;
  transition: margin-top 0.3s ease;
  background-color: #fff;
  margin: -100% 0 0 0;
}
@media (min-aspect-ratio: 10/4) {
  header {
    padding: 2rem 0;
  }
}
header .inner {
  width: 128rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-aspect-ratio: 2/3) {
  header .inner {
    width: 100%;
    height: 100%;
    padding: 0 2.2rem;
  }
}
header .inner h2 {
  display: flex;
  align-items: center;
  margin: 0 auto 0 0;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  gap: 2.3rem;
}
@media (max-aspect-ratio: 2/3) {
  header .inner h2 {
    gap: 1.3rem;
  }
}
header .inner h2 .logo {
  width: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-aspect-ratio: 2/3) {
  header .inner h2 .logo {
    width: 7.5rem;
  }
}
header .inner h2 .logo img {
  width: 100%;
  height: auto;
}
header .inner h2 strong {
  font-size: 1.6rem;
  display: flex;
  gap: 0.5rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-aspect-ratio: 2/3) {
  header .inner h2 strong {
    font-size: 1.4rem;
  }
}
header .inner h2 strong a {
  padding: 0 2rem;
  border: #101010 solid 0.1rem;
  border-radius: 0.5rem;
  display: block;
  font-weight: 300;
  cursor: pointer;
  transition: 0.3s background-color ease, 0.3s background-color ease;
}
header .inner h2 strong a:hover {
  background-color: #101010;
  color: #fff;
}
header .inner nav ul {
  display: flex;
  gap: 7.5rem;
}
@media (max-aspect-ratio: 2/3) {
  header .inner nav ul {
    gap: 0;
    margin-right: 0.6rem;
  }
}
header .inner nav ul li a {
  font-size: 1.7rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
}
header .inner nav ul li a .newTabIcon {
  width: 1.5rem;
  display: flex;
  margin: 0 0 0 0.5rem;
}
header .inner nav ul li a .newTabIcon img {
  width: 100%;
  height: auto;
}
header .inner nav ul li .naviItem {
  opacity: 1;
  transition: all 0.3s ease;
}
@media (max-aspect-ratio: 2/3) {
  header .inner nav ul li .naviItem {
    display: none;
  }
}
header .inner nav ul li .naviItem:hover {
  opacity: 0.5;
}
header .inner nav ul li .contact {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-aspect-ratio: 2/3) {
  header .inner nav ul li .contact {
    font-size: 1.6rem;
    padding: 0 1rem;
  }
}
header .inner nav ul li .contact::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #D9D9D9;
  position: absolute;
  z-index: -10;
  transition: all 0.3s ease;
}
header .inner nav ul li .contact:hover::before {
  width: 140%;
  height: 140%;
}
@media (max-aspect-ratio: 2/3) {
  header .inner nav ul li .contact:hover::before {
    width: 100%;
    height: 100%;
  }
}
@media (max-aspect-ratio: 2/3) {
  header .inner nav ul li .contact.pc {
    display: none;
  }
}
header .inner nav ul li .contact.sp {
  display: none;
}
@media (max-aspect-ratio: 2/3) {
  header .inner nav ul li .contact.sp {
    display: flex;
  }
}
header .inner .hamburgerIcon {
  width: 6rem;
  height: 1.9rem;
  background-color: #D9D9D9;
  position: relative;
  display: none;
  cursor: pointer;
}
@media (max-aspect-ratio: 2/3) {
  header .inner .hamburgerIcon {
    display: block;
  }
}
header .inner .hamburgerIcon span:nth-child(1) {
  width: 2rem;
  height: 0.1rem;
  background-color: #000;
  display: block;
  position: absolute;
  top: calc(50% - 0.2rem);
  left: 50%;
  transform: translate(-50%, -50%) rotateZ(0deg);
  transition: all 0.3s ease;
}
header .inner .hamburgerIcon span:nth-child(2) {
  width: 2rem;
  height: 0.1rem;
  background-color: #000;
  display: block;
  position: absolute;
  top: calc(50% + 0.2rem);
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
header .inner .hamburgerIcon.active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotateZ(-24deg);
}
header .inner .hamburgerIcon.active span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%) rotateZ(24deg);
}

.spNavigationMenu {
  width: 100%;
  height: 100vh;
  padding: 10rem 0 0 0;
  position: fixed;
  top: 0;
  right: -100vw;
  z-index: 80;
  background-color: #fff;
  transition: right 0.3s ease;
  display: none;
}
@media (max-aspect-ratio: 2/3) {
  .spNavigationMenu {
    display: block;
  }
}
.spNavigationMenu.active {
  right: 0;
}
.spNavigationMenu .inner {
  width: calc(100% - 4.4rem);
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  margin: auto;
}
.spNavigationMenu .inner nav {
  padding-bottom: 1.6rem;
}
.spNavigationMenu .inner nav ul {
  display: flex;
  gap: 1rem;
  flex-flow: column;
}
.spNavigationMenu .inner nav ul li {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
}
.spNavigationMenu .inner nav ul li a {
  display: flex;
  align-items: center;
}
.spNavigationMenu .inner nav ul li a .newTabIcon {
  width: 3.4rem;
  display: flex;
  margin: 0 0 0 1rem;
}
.spNavigationMenu .inner nav ul li a .newTabIcon img {
  width: 100%;
  height: auto;
}
.spNavigationMenu .inner small {
  padding: 0.7rem 0 1rem;
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.topMoveButton {
  width: 3rem;
  position: fixed;
  right: 3.2rem;
  bottom: 4rem;
  mix-blend-mode: difference;
  z-index: 100;
  background-color: #fff;
  padding: 1rem 0.3rem;
  display: block;
  transition: opacity 0.1s;
  opacity: 0;
}
@media (max-aspect-ratio: 2/3) {
  .topMoveButton {
    display: none;
  }
}
.topMoveButton.active {
  opacity: 1;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
@media (max-aspect-ratio: 2/3) {
  .topMoveButton.active {
    display: none;
  }
}

@media (max-aspect-ratio: 2/3) {
  main {
    width: 100vw;
  }
}
main .top {
  width: 100%;
  height: 20rem;
  background-color: #101010;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-aspect-ratio: 2/3) {
  main .top {
    height: 7.2rem;
  }
}
main .top h1 {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 3.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 100%;
  color: #fff;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
@media (max-aspect-ratio: 2/3) {
  main .top h1 {
    font-size: 2rem;
  }
}
main .top img {
  width: auto;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.6;
}
@media (max-aspect-ratio: 2/3) {
  main .top img {
    width: 30rem;
    height: auto;
  }
}
main .top img img {
  height: 100%;
}
@media (max-aspect-ratio: 2/3) {
  main .top img img {
    width: 100%;
    height: auto;
  }
}
main .marketingFirstContent .inner {
  width: 110rem;
  margin: auto;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingFirstContent .inner {
    width: 100%;
  }
}
main .marketingFirstContent .inner h2 {
  font-size: 10rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 100%;
  padding: 5.6rem 0 0;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingFirstContent .inner h2 {
    font-size: 5rem;
    padding: 1rem 2.2rem;
  }
}
main .marketingFirstContent .inner h2 span {
  display: inline-block;
  transform: rotateX(90deg);
  transition: transform 0.5s ease, opacity 1s ease, color 0.5s ease;
  opacity: 0;
  color: #981C5A;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingFirstContent .inner h2 span {
    margin: 0 -0.12rem;
  }
}
main .marketingFirstContent .inner h2.h2animation span.active {
  transform: rotateX(0deg);
  opacity: 1;
  color: #010101;
}
main .marketingFirstContent .inner .graphAnnotation {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.1em;
  padding-bottom: 5.2rem;
  display: block;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingFirstContent .inner .graphAnnotation {
    padding: 0 2.2rem 2.2rem;
    line-height: 150%;
    font-size: 1.2rem;
  }
}
main .marketingFirstContent .inner .graphAnnotation a {
  display: inline-block;
  transition: all 0.3s ease;
  position: relative;
}
main .marketingFirstContent .inner .graphAnnotation a::before {
  content: "";
  width: 100%;
  height: 1rem;
  border-bottom: 0.1rem #101010 solid;
  position: absolute;
  left: 0;
  bottom: 0.3rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingFirstContent .inner .graphAnnotation a::before {
    bottom: 0;
  }
}
main .marketingFirstContent .inner .graphAnnotation a:hover {
  opacity: 0.5;
}
main .marketingFirstContent .inner .numericalValueElement {
  display: flex;
  justify-content: space-between;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingFirstContent .inner .numericalValueElement {
    flex-flow: column;
    gap: 1rem;
    padding: 0 2.2rem;
  }
}
main .marketingFirstContent .inner .numericalValueElement .item {
  width: 54rem;
  display: flex;
  align-items: center;
  flex-flow: column;
  background-color: rgba(132, 132, 132, 0.1);
  border-radius: 3rem;
  padding: 3.1rem 0 2.8rem;
  position: relative;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingFirstContent .inner .numericalValueElement .item {
    width: 100%;
  }
}
main .marketingFirstContent .inner .numericalValueElement .item h3 {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 150%;
}
main .marketingFirstContent .inner .numericalValueElement .item strong {
  font-weight: 700;
  padding: 1rem 0;
}
main .marketingFirstContent .inner .numericalValueElement .item strong big {
  font-size: 8rem;
  color: #981C5A;
  line-height: 100%;
  letter-spacing: 0;
  padding: 0 1.2rem;
}
main .marketingFirstContent .inner .numericalValueElement .item strong small {
  font-size: 3.2rem;
  line-height: 150%;
  letter-spacing: 0.1em;
}
main .marketingFirstContent .inner .numericalValueElement .item p {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.1em;
}
main .marketingFirstContent .inner .numericalValueElement .item .img {
  width: 28rem;
  position: absolute;
  top: 2.8rem;
  z-index: -10;
}
main .marketingFirstContent .inner .numericalValueElement .item .img img {
  width: 100%;
  height: auto;
}
main .marketingFirstContent .inner .numericalValueElement .item:nth-child(2) .img {
  width: 24rem;
  top: 2.7rem;
}
main .marketingFirstContent .inner .text {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 0.1em;
  padding: 3.6rem 4rem 0;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingFirstContent .inner .text {
    font-size: 1.2rem;
    padding: 1.6rem 2.2rem 0;
  }
}
main .marketingFirstContent .inner .graphContainer {
  width: 100%;
}
main .marketingFirstContent .inner .graphContainer .graphElement1 {
  width: 100%;
}
main .marketingFirstContent .inner .graphContainer .graphElement1 h3 {
  width: 100%;
  height: 4.7rem;
  background-color: #101010;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 150%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100vw;
  margin: 6.6rem 0 2.3rem 0;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingFirstContent .inner .graphContainer .graphElement1 h3 {
    width: calc(100% - 4.4rem);
    margin: 4rem auto 1rem;
  }
}
main .marketingFirstContent .inner .graphContainer .graphElement1 .graphItems {
  border-radius: 3rem;
  border: rgba(132, 132, 132, 0.1) 1.7rem solid;
  position: relative;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingFirstContent .inner .graphContainer .graphElement1 .graphItems {
    border: rgba(132, 132, 132, 0.1) 1rem solid;
    margin: 0 2.2rem;
    overflow-x: scroll;
  }
}
main .marketingFirstContent .inner .graphContainer .graphElement1 .graphItems strong {
  width: -moz-fit-content;
  width: fit-content;
  transform: rotate(-90deg) translateY(-50%);
  position: absolute;
  top: 50%;
  font-size: 1.6rem;
  font-weight: 500;
}
main .marketingFirstContent .inner .graphContainer .graphElement1 .graphItems .graph {
  width: 100%;
  height: 40rem;
  padding: 3.2rem 2.4rem 3.2rem 8.8rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingFirstContent .inner .graphContainer .graphElement1 .graphItems .graph {
    width: 200%;
  }
}
main .marketingFirstContent .inner .graphContainer .graphElement1 .graphItems .graph .chart-wrap {
  width: 100%;
  height: 100%;
}
main .marketingFirstContent .inner .graphContainer .graphElement2 {
  width: 100%;
}
main .marketingFirstContent .inner .graphContainer .graphElement2 h3 {
  width: 100%;
  height: 4.7rem;
  background-color: #101010;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 150%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100vw;
  margin: 6.6rem 0 2.3rem 0;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingFirstContent .inner .graphContainer .graphElement2 h3 {
    width: calc(100% - 4.4rem);
    margin: 4rem auto 1rem;
  }
}
main .marketingFirstContent .inner .graphContainer .graphElement2 .graphItems {
  border-radius: 3rem;
  border: rgba(132, 132, 132, 0.1) 1.7rem solid;
  position: relative;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingFirstContent .inner .graphContainer .graphElement2 .graphItems {
    border: rgba(132, 132, 132, 0.1) 1rem solid;
    margin: 0 2.2rem;
    overflow-x: scroll;
  }
}
main .marketingFirstContent .inner .graphContainer .graphElement2 .graphItems strong {
  width: -moz-fit-content;
  width: fit-content;
  transform: rotate(-90deg) translateY(-50%);
  position: absolute;
  top: 50%;
  font-size: 1.6rem;
  font-weight: 500;
}
main .marketingFirstContent .inner .graphContainer .graphElement2 .graphItems .graph {
  width: 100%;
  height: 40rem;
  padding: 2.4rem 2.4rem 2.4rem 8.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4285714286rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingFirstContent .inner .graphContainer .graphElement2 .graphItems .graph {
    width: 200%;
  }
}
main .marketingFirstContent .inner .graphContainer .graphElement2 .graphItems .graph canvas {
  width: 100%;
  height: 100%;
}
main .marketingData .inner {
  width: 110rem;
  display: flex;
  flex-flow: column;
  margin: auto;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner {
    width: 100%;
  }
}
main .marketingData .inner p {
  font-size: 1.7rem;
  line-height: 160%;
  letter-spacing: 0.1em;
  padding: 5.6rem 4rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner p {
    width: 100%;
    font-size: 1.2rem;
    padding: 2.4rem 2.2rem 2.4rem;
    text-align: center;
  }
}
main .marketingData .inner .numericalValueElement1 {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner .numericalValueElement1 {
    display: flex;
    flex-flow: column;
    grid-template-columns: none;
    padding: 0 2.2rem;
    gap: 1.2rem;
  }
}
main .marketingData .inner .numericalValueElement1 .item {
  display: flex;
  flex-flow: column;
  align-items: center;
  background-color: rgba(132, 132, 132, 0.1);
  border-radius: 3rem;
  padding: 4rem 0;
  position: relative;
}
main .marketingData .inner .numericalValueElement1 .item h3 {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 150%;
  display: block;
}
main .marketingData .inner .numericalValueElement1 .item strong {
  display: block;
}
main .marketingData .inner .numericalValueElement1 .item strong big {
  font-size: 8rem;
  color: #981C5A;
  padding: 0 1.2rem;
}
main .marketingData .inner .numericalValueElement1 .item strong small {
  font-size: 3.2rem;
}
main .marketingData .inner .numericalValueElement1 .item .img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: -10;
}
main .marketingData .inner .numericalValueElement1 .item .img img {
  width: 100%;
  height: auto;
}
main .marketingData .inner .numericalValueElement1 .item:nth-child(1) .img {
  width: 15.2rem;
  bottom: 1rem;
}
main .marketingData .inner .numericalValueElement1 .item:nth-child(2) .img {
  width: 12.8rem;
  bottom: 2rem;
}
main .marketingData .inner .numericalValueElement1 .item:nth-child(3) .img {
  width: 20rem;
  bottom: 2.4rem;
}
main .marketingData .inner .numericalValueElement2 {
  height: 35.4rem;
  margin: 2.4rem 0 9rem;
  position: relative;
  overflow: hidden;
  border-radius: 3rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner .numericalValueElement2 {
    width: calc(100% - 4.4rem);
    height: 30rem;
    margin: 1.2rem auto 2.8rem;
  }
}
main .marketingData .inner .numericalValueElement2 .item {
  width: 100%;
  height: 100%;
  background-color: rgba(132, 132, 132, 0.1);
  border-radius: 3rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner .numericalValueElement2 .item {
    width: 100%;
    margin: auto;
  }
}
main .marketingData .inner .numericalValueElement2 .item h3 {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 150%;
  padding-top: 4rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  white-space: nowrap;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner .numericalValueElement2 .item h3 {
    font-size: 1.4rem;
    text-align: center;
    padding-top: 1.4rem;
  }
}
main .marketingData .inner .numericalValueElement2 .item h3 br {
  display: none;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner .numericalValueElement2 .item h3 br {
    display: inline;
  }
}
main .marketingData .inner .numericalValueElement2 .item .img {
  width: 80rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner .numericalValueElement2 .item .img {
    width: 100%;
    margin: auto;
    left: -15rem;
  }
}
main .marketingData .inner .numericalValueElement2 .item .img img {
  width: 100%;
  height: auto;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7118%) hue-rotate(193deg) brightness(96%) contrast(81%);
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner .numericalValueElement2 .item .img img {
    width: 124%;
  }
}
main .marketingData .inner .numericalValueElement2 .animationItem {
  border-radius: 100vw;
  background-color: #981C5A;
  color: #fff;
  position: absolute;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}
main .marketingData .inner .numericalValueElement2 .animationItem span {
  opacity: 0.8;
  line-height: 110%;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner .numericalValueElement2 .animationItem span {
    padding: 0.5rem 0 0 0;
  }
}
main .marketingData .inner .numericalValueElement2 .animationItem big {
  letter-spacing: 0.1em;
  line-height: 110%;
}
main .marketingData .inner .numericalValueElement2 .animationItem small {
  line-height: 110%;
}
main .marketingData .inner .numericalValueElement2 .animationItem small .percent {
  display: inline;
}
main .marketingData .inner .numericalValueElement2 .animationItem.hokkaido {
  width: 8.4rem;
  height: 8.4rem;
  opacity: 0.6;
  left: 5.5rem;
  bottom: 2.4rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner .numericalValueElement2 .animationItem.hokkaido {
    width: 6rem;
    height: 6rem;
    left: 29.1rem;
    bottom: 3.1rem;
  }
}
main .marketingData .inner .numericalValueElement2 .animationItem.hokkaido span {
  font-size: 1.3rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner .numericalValueElement2 .animationItem.hokkaido span {
    font-size: 1rem;
  }
}
main .marketingData .inner .numericalValueElement2 .animationItem.hokkaido big {
  font-size: 2.2rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner .numericalValueElement2 .animationItem.hokkaido big {
    font-size: 1.6rem;
  }
}
main .marketingData .inner .numericalValueElement2 .animationItem.hokkaido small {
  font-size: 2.5rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner .numericalValueElement2 .animationItem.hokkaido small {
    font-size: 2rem;
  }
}
main .marketingData .inner .numericalValueElement2 .animationItem.hokkaido small .percent {
  font-size: 2rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner .numericalValueElement2 .animationItem.hokkaido small .percent {
    font-size: 1.6rem;
  }
}
main .marketingData .inner .numericalValueElement2 .animationItem.chiba {
  width: 10.2rem;
  height: 10.2rem;
  opacity: 8.5;
  left: 9.9rem;
  bottom: 12.2rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner .numericalValueElement2 .animationItem.chiba {
    width: 7rem;
    height: 7rem;
    left: 20.8rem;
    bottom: 4rem;
  }
}
main .marketingData .inner .numericalValueElement2 .animationItem.chiba span {
  font-size: 1.6rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner .numericalValueElement2 .animationItem.chiba span {
    font-size: 1.2rem;
  }
}
main .marketingData .inner .numericalValueElement2 .animationItem.chiba big {
  font-size: 3rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner .numericalValueElement2 .animationItem.chiba big {
    font-size: 1.9rem;
  }
}
main .marketingData .inner .numericalValueElement2 .animationItem.chiba small {
  font-size: 3.2rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner .numericalValueElement2 .animationItem.chiba small {
    font-size: 2.2rem;
  }
}
main .marketingData .inner .numericalValueElement2 .animationItem.chiba small .percent {
  font-size: 2.4rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner .numericalValueElement2 .animationItem.chiba small .percent {
    font-size: 1.8rem;
  }
}
main .marketingData .inner .numericalValueElement2 .animationItem.fukuoka {
  width: 15rem;
  height: 15rem;
  left: 26rem;
  bottom: 3.4rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner .numericalValueElement2 .animationItem.fukuoka {
    width: 8.7rem;
    height: 8.7rem;
    left: 3rem;
    bottom: 10rem;
  }
}
main .marketingData .inner .numericalValueElement2 .animationItem.fukuoka span {
  font-size: 2.2rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner .numericalValueElement2 .animationItem.fukuoka span {
    font-size: 1.4rem;
  }
}
main .marketingData .inner .numericalValueElement2 .animationItem.fukuoka big {
  font-size: 4.2rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner .numericalValueElement2 .animationItem.fukuoka big {
    font-size: 2.7rem;
  }
}
main .marketingData .inner .numericalValueElement2 .animationItem.fukuoka small {
  font-size: 4.2rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner .numericalValueElement2 .animationItem.fukuoka small {
    font-size: 2.7rem;
  }
}
main .marketingData .inner .numericalValueElement2 .animationItem.fukuoka small .percent {
  font-size: 2.8rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner .numericalValueElement2 .animationItem.fukuoka small .percent {
    font-size: 1.9rem;
  }
}
main .marketingData .inner .numericalValueElement2 .animationItem.osaka {
  width: 18rem;
  height: 18rem;
  left: 46rem;
  bottom: 6.5rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner .numericalValueElement2 .animationItem.osaka {
    width: 10rem;
    height: 10rem;
    left: 13.4rem;
    bottom: 11.4rem;
  }
}
main .marketingData .inner .numericalValueElement2 .animationItem.osaka span {
  font-size: 2.5rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner .numericalValueElement2 .animationItem.osaka span {
    font-size: 1.6rem;
  }
}
main .marketingData .inner .numericalValueElement2 .animationItem.osaka big {
  font-size: 4.7rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner .numericalValueElement2 .animationItem.osaka big {
    font-size: 3rem;
  }
}
main .marketingData .inner .numericalValueElement2 .animationItem.osaka small {
  font-size: 4.5rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner .numericalValueElement2 .animationItem.osaka small {
    font-size: 3rem;
  }
}
main .marketingData .inner .numericalValueElement2 .animationItem.osaka small .percent {
  font-size: 3rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner .numericalValueElement2 .animationItem.osaka small .percent {
    font-size: 2rem;
  }
}
main .marketingData .inner .numericalValueElement2 .animationItem.tokyo {
  width: 12rem;
  height: 12rem;
  left: 70rem;
  bottom: 3.4rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner .numericalValueElement2 .animationItem.tokyo {
    width: 7.8rem;
    height: 7.8rem;
    left: 25rem;
    bottom: 11rem;
  }
}
main .marketingData .inner .numericalValueElement2 .animationItem.tokyo span {
  font-size: 2rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner .numericalValueElement2 .animationItem.tokyo span {
    font-size: 1.3rem;
  }
}
main .marketingData .inner .numericalValueElement2 .animationItem.tokyo big {
  font-size: 3.8rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner .numericalValueElement2 .animationItem.tokyo big {
    font-size: 2.4rem;
  }
}
main .marketingData .inner .numericalValueElement2 .animationItem.tokyo small {
  font-size: 3.8rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner .numericalValueElement2 .animationItem.tokyo small {
    font-size: 2.4rem;
  }
}
main .marketingData .inner .numericalValueElement2 .animationItem.tokyo small .percent {
  font-size: 2.6rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner .numericalValueElement2 .animationItem.tokyo small .percent {
    font-size: 1.8rem;
  }
}
main .marketingData .inner .numericalValueElement2 .animationItem.kyoto {
  width: 10.2rem;
  height: 10.2rem;
  left: 83.8rem;
  bottom: 13.6rem;
  opacity: 0.8;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner .numericalValueElement2 .animationItem.kyoto {
    width: 6.4rem;
    height: 6.4rem;
    left: 10.3rem;
    bottom: 4.7rem;
  }
}
main .marketingData .inner .numericalValueElement2 .animationItem.kyoto span {
  font-size: 1.4rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner .numericalValueElement2 .animationItem.kyoto span {
    font-size: 1.3rem;
  }
}
main .marketingData .inner .numericalValueElement2 .animationItem.kyoto big {
  font-size: 2.7rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner .numericalValueElement2 .animationItem.kyoto big {
    font-size: 2rem;
  }
}
main .marketingData .inner .numericalValueElement2 .animationItem.kyoto small {
  font-size: 2.8rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner .numericalValueElement2 .animationItem.kyoto small {
    font-size: 2rem;
  }
}
main .marketingData .inner .numericalValueElement2 .animationItem.kyoto small .percent {
  font-size: 2.2rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner .numericalValueElement2 .animationItem.kyoto small .percent {
    font-size: 1.6rem;
  }
}
main .marketingData .inner .numericalValueElement2 .animationItem.oita {
  width: 10.2rem;
  height: 10.2rem;
  left: 91.6rem;
  bottom: 2.4rem;
  opacity: 0.7;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner .numericalValueElement2 .animationItem.oita {
    width: 6.3rem;
    height: 6.3rem;
    left: 2.8rem;
    bottom: 1.8rem;
  }
}
main .marketingData .inner .numericalValueElement2 .animationItem.oita span {
  font-size: 1.4rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner .numericalValueElement2 .animationItem.oita span {
    font-size: 1.1rem;
  }
}
main .marketingData .inner .numericalValueElement2 .animationItem.oita big {
  font-size: 2.7rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner .numericalValueElement2 .animationItem.oita big {
    font-size: 1.7rem;
  }
}
main .marketingData .inner .numericalValueElement2 .animationItem.oita small {
  font-size: 2.8rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner .numericalValueElement2 .animationItem.oita small {
    font-size: 2.2rem;
  }
}
main .marketingData .inner .numericalValueElement2 .animationItem.oita small .percent {
  font-size: 2.2rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingData .inner .numericalValueElement2 .animationItem.oita small .percent {
    font-size: 1.7rem;
  }
}
main .marketingAbout .inner {
  width: 110rem;
  margin: auto;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingAbout .inner {
    width: 100%;
  }
}
main .marketingAbout .inner h3 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 0.05em;
  padding: 0 4rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingAbout .inner h3 {
    font-size: 1.8rem;
    text-align: center;
  }
}
main .marketingAbout .inner h3 big {
  font-size: 3.8rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingAbout .inner h3 big {
    font-size: 2.3rem;
  }
}
main .marketingAbout .inner h3 big span {
  color: #981C5A;
}
main .marketingAbout .inner .element {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 5.3rem 0 10rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingAbout .inner .element {
    margin: 2.8rem 0;
    display: flex;
    grid-template-columns: none;
    flex-flow: column;
  }
}
main .marketingAbout .inner .element .imgErea {
  width: 100%;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingAbout .inner .element .imgErea {
    margin-bottom: 2.8rem;
  }
}
main .marketingAbout .inner .element .imgErea .img {
  width: 20rem;
  margin: auto;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingAbout .inner .element .imgErea .img {
    width: 10rem;
  }
}
main .marketingAbout .inner .element .imgErea .img img {
  width: 100%;
  height: auto;
}
main .marketingAbout .inner .element .container {
  width: 63rem;
  display: grid;
  gap: 2.4rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingAbout .inner .element .container {
    width: 100%;
    padding: 0 2.2rem;
    gap: 1.2rem;
  }
}
main .marketingAbout .inner .element .container .item {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3rem;
  background-color: rgba(132, 132, 132, 0.1);
  padding: 0;
  gap: 5rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingAbout .inner .element .container .item {
    border-radius: 1rem;
    padding: 1.6rem 0;
    gap: 3rem;
  }
}
main .marketingAbout .inner .element .container .item:nth-child(2) {
  gap: 3rem;
  padding-left: 2rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingAbout .inner .element .container .item:nth-child(2) {
    gap: 0.7rem;
  }
}
main .marketingAbout .inner .element .container .item p {
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingAbout .inner .element .container .item p {
    font-size: 1.2rem;
  }
}
main .marketingAbout .inner .element .container .item p small {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  display: block;
  text-align: center;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingAbout .inner .element .container .item p small {
    font-size: 1.2rem;
  }
}
main .marketingAbout .inner .element .container .item p strong {
  font-weight: 700;
  display: block;
  line-height: 1.2;
  text-align: center;
}
main .marketingAbout .inner .element .container .item p strong big:nth-child(1) {
  font-size: 3.2rem;
  letter-spacing: 0.1em;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingAbout .inner .element .container .item p strong big:nth-child(1) {
    font-size: 2.2rem;
  }
}
main .marketingAbout .inner .element .container .item p strong big:nth-child(2) {
  font-size: 8rem;
  color: #981C5A;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingAbout .inner .element .container .item p strong big:nth-child(2) {
    font-size: 5rem;
  }
}
main .marketingAbout .inner .element .container .item p strong big:nth-child(3) {
  font-size: 3.2rem;
  letter-spacing: 0.1em;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingAbout .inner .element .container .item p strong big:nth-child(3) {
    font-size: 2.2rem;
  }
}
main .marketingAbout .inner .element .container .item p b {
  font-size: 2.2rem;
  display: block;
  text-align: center;
  line-height: 1;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingAbout .inner .element .container .item p b {
    font-size: 1.2rem;
  }
}
main .marketingAbout .inner .element .container .item .block strong {
  font-size: 2rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.1em;
  padding-bottom: 0.8rem;
  display: block;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingAbout .inner .element .container .item .block strong {
    font-size: 1.5rem;
  }
}
main .marketingAbout .inner .element .container .item .block p {
  line-height: 200%;
  letter-spacing: 0.1em;
  font-size: 1.7rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingAbout .inner .element .container .item .block p {
    font-size: 1.2rem;
  }
}
main .marketingAbout .inner .element .container .item .block p span:nth-child(2) {
  font-size: 1.6rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingAbout .inner .element .container .item .block p span:nth-child(2) {
    font-size: 1.3rem;
  }
}
main .marketingAbout .inner .element .container .item .block p span:nth-child(3) {
  font-size: 2.5rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingAbout .inner .element .container .item .block p span:nth-child(3) {
    font-size: 2rem;
  }
}
main .marketingAbout .inner .element .container .item .block p span:nth-child(4) {
  font-size: 2rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingAbout .inner .element .container .item .block p span:nth-child(4) {
    font-size: 1.3rem;
  }
}
main .marketingAbout .inner .element .container .item .block p span {
  font-weight: 700;
}
main .marketingAbout .inner .text {
  font-size: 2rem;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 0 0 8.5rem;
}
@media (max-aspect-ratio: 2/3) {
  main .marketingAbout .inner .text {
    font-size: 1.3rem;
    padding: 0 0 3.5rem;
  }
}
main .topPageLinkButton {
  width: 110rem;
  height: 9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 2px solid #D9D9D9;
  border-bottom: 2px solid #D9D9D9;
  margin: 0 auto 7rem;
  background-color: #fff;
  position: relative;
  transition: all 0.3s ease;
}
@media (max-aspect-ratio: 2/3) {
  main .topPageLinkButton {
    width: calc(100% - 4.4rem);
    height: 4.4rem;
    border-top: 2px solid #D9D9D9;
    border-bottom: 2px solid #D9D9D9;
    margin: 0 auto 2.7rem;
  }
}
main .topPageLinkButton span {
  display: block;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  left: 4rem;
  margin-bottom: -0.5rem;
  color: #000;
  transition: all 0.3s ease;
}
@media (max-aspect-ratio: 2/3) {
  main .topPageLinkButton span {
    font-size: 5rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
main .topPageLinkButton .icon {
  color: #000;
  font-size: 6rem;
  position: absolute;
  right: 4rem;
  transition: all 0.3s ease;
}
@media (max-aspect-ratio: 2/3) {
  main .topPageLinkButton .icon {
    font-size: 5rem;
    right: 0;
  }
}
main .topPageLinkButton:hover {
  border-top: 2px solid rgba(152, 28, 90, 0.4);
  border-bottom: 2px solid rgba(152, 28, 90, 0.4);
}
@media (max-aspect-ratio: 2/3) {
  main .topPageLinkButton:hover {
    border-top: 1px solid rgba(152, 28, 90, 0.4);
    border-bottom: 1px solid rgba(152, 28, 90, 0.4);
  }
}
main .topPageLinkButton:hover span {
  color: #981C5A;
  left: 2rem;
}
@media (max-aspect-ratio: 2/3) {
  main .topPageLinkButton:hover span {
    left: 50%;
    transform: translateX(-50%);
  }
}
main .topPageLinkButton:hover .icon {
  right: 0rem;
  color: #981C5A;
}
main .download {
  width: 100%;
  position: relative;
  color: #fff;
}
main .download .backgroundImage {
  width: 100%;
  height: 62rem;
  overflow: hidden;
  position: relative;
}
@media (max-aspect-ratio: 2/3) {
  main .download .backgroundImage {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
  }
}
main .download .backgroundImage::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
main .download .backgroundImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main .download .inner {
  width: 110rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  justify-content: space-between;
}
@media (max-aspect-ratio: 2/3) {
  main .download .inner {
    width: 100%;
    flex-flow: column;
    position: static;
    top: auto;
    left: auto;
    transform: translate(0);
    padding: 4.7rem 0 4.1rem;
  }
}
main .download .inner .item {
  justify-content: center;
}
main .download .inner .item:nth-child(1) {
  display: flex;
  flex-flow: column;
  gap: 1rem;
}
@media (max-aspect-ratio: 2/3) {
  main .download .inner .item:nth-child(1) {
    gap: 1.8rem;
  }
}
main .download .inner .item:nth-child(1) h2 {
  font-size: 3.7rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.1em;
}
@media (max-aspect-ratio: 2/3) {
  main .download .inner .item:nth-child(1) h2 {
    font-size: 2.5rem;
    text-align: center;
  }
}
main .download .inner .item:nth-child(1) strong {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 0.1em;
}
@media (max-aspect-ratio: 2/3) {
  main .download .inner .item:nth-child(1) strong {
    font-size: 1.4rem;
    text-align: center;
  }
}
main .download .inner .item:nth-child(1) span {
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.1em;
}
@media (max-aspect-ratio: 2/3) {
  main .download .inner .item:nth-child(1) span {
    font-size: 1.2rem;
    text-align: center;
  }
}
main .download .inner .item:nth-child(1) span .sp {
  display: none;
}
@media (max-aspect-ratio: 2/3) {
  main .download .inner .item:nth-child(1) span .sp {
    display: inline;
  }
}
@media (max-aspect-ratio: 2/3) {
  main .download .inner .item:nth-child(2) {
    display: flex;
    flex-flow: column;
  }
}
main .download .inner .item:nth-child(2) .backgroundText {
  display: block;
  font-size: 12rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.2;
  margin-left: -0.5rem;
}
@media (max-aspect-ratio: 2/3) {
  main .download .inner .item:nth-child(2) .backgroundText {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin: auto;
    letter-spacing: -0.3rem;
  }
}
@media (max-aspect-ratio: 2/3) {
  main .download .inner .item:nth-child(2) .supplement {
    display: flex;
    align-items: center;
    flex-flow: column;
  }
}
main .download .inner .item:nth-child(2) .supplement .text p {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
@media (max-aspect-ratio: 2/3) {
  main .download .inner .item:nth-child(2) .supplement .text p {
    font-size: 1.2rem;
    padding-top: 3.6rem;
  }
}
main .download .inner .item:nth-child(2) .supplement .text .telArea {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1.4rem;
  display: flex;
  align-items: center;
  line-height: 1;
  position: relative;
  overflow: hidden;
  padding: 0 0.4rem;
}
@media (max-aspect-ratio: 2/3) {
  main .download .inner .item:nth-child(2) .supplement .text .telArea {
    margin: 0.8rem auto 0;
  }
}
main .download .inner .item:nth-child(2) .supplement .text .telArea span:nth-child(1) {
  font-size: 2.5rem;
  padding-right: 1.4rem;
}
@media (max-aspect-ratio: 2/3) {
  main .download .inner .item:nth-child(2) .supplement .text .telArea span:nth-child(1) {
    font-size: 2rem;
    padding-right: 0.5rem;
  }
}
main .download .inner .item:nth-child(2) .supplement .text .telArea span:nth-child(2) {
  font-size: 3.5rem;
  border-bottom: 0.15rem solid;
}
@media (max-aspect-ratio: 2/3) {
  main .download .inner .item:nth-child(2) .supplement .text .telArea span:nth-child(2) {
    font-size: 2.7rem;
  }
}
main .download .inner .item:nth-child(2) .supplement .text .telArea::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -100%;
  z-index: -10;
  background-color: #981C5A;
  transition: all 0.3s ease;
}
main .download .inner .item:nth-child(2) .supplement .text .telArea:hover::before {
  left: 0;
}
main .download .inner .item:nth-child(2) .supplement .button:nth-child(2) {
  width: 100%;
  height: 5.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2.4rem;
  font-size: 2.2rem;
  border-radius: 0.8rem;
  border: 0.15rem #fff solid;
  position: relative;
  overflow: hidden;
}
@media (max-aspect-ratio: 2/3) {
  main .download .inner .item:nth-child(2) .supplement .button:nth-child(2) {
    font-size: 1.6rem;
    height: 4.1rem;
    width: calc(100% - 4.4rem);
    margin-top: 3.6rem;
  }
}
main .download .inner .item:nth-child(2) .supplement .button:nth-child(2)::before {
  content: "";
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, rgb(16, 16, 16) 0%, rgb(0, 0, 0) 50%, rgb(152, 28, 90) 75%, rgb(200, 0, 100) 100%);
  position: absolute;
  top: 0;
  right: 0;
  z-index: -10;
  transition: all 0.5s ease;
}
main .download .inner .item:nth-child(2) .supplement .button:nth-child(2):hover::before {
  top: 0;
  right: -100%;
}

footer {
  width: 100%;
  background-color: #101010;
  color: #fff;
  padding: 4rem 0 3.2rem;
  position: relative;
  overflow: hidden;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
footer .backgroundContent {
  position: absolute;
  top: 0;
  line-height: 0.8;
  overflow: hidden;
  white-space: nowrap;
  z-index: 0;
}
footer .backgroundContent .backgroundText {
  font-size: 16rem;
  opacity: 0.1;
  display: flex;
  will-change: transform;
  animation: marquee 60s linear infinite;
}
@media (max-aspect-ratio: 2/3) {
  footer .backgroundContent .backgroundText {
    font-size: 6.6rem;
    letter-spacing: -0.3rem;
  }
}
footer .backgroundContent .backgroundText span {
  display: inline-block;
  padding: 0 3rem;
}
footer .inner {
  width: 110rem;
  margin: auto;
  position: relative;
  z-index: 10;
}
@media (max-aspect-ratio: 2/3) {
  footer .inner {
    width: calc(100% - 4.4rem);
  }
}
footer .inner .companyIcon {
  width: 16rem;
  display: block;
  margin-bottom: 2.4rem;
}
@media (max-aspect-ratio: 2/3) {
  footer .inner .companyIcon {
    width: 10rem;
  }
}
footer .inner .companyIcon img {
  width: 100%;
  height: auto;
  font-size: 7rem;
}
footer .inner .element {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3.2rem;
  line-height: 150%;
  letter-spacing: 0.1em;
  position: relative;
}
@media (max-aspect-ratio: 2/3) {
  footer .inner .element {
    flex-flow: column;
    gap: 2.7rem;
    margin-bottom: 2.7rem;
  }
}
footer .inner .element .item table thead tr th {
  font-size: 1.6rem;
  font-weight: 400;
  border-bottom: 0.15rem #fff solid;
  padding-bottom: 0.4rem;
}
footer .inner .element .item table tbody {
  display: inline-block;
  padding-top: 0.4rem;
}
footer .inner .element .item table tbody tr {
  font-weight: 400;
  padding-top: 0.6rem;
  display: block;
}
footer .inner .element .item table tbody tr th {
  font-size: 1.4rem;
  display: block;
  color: #848484;
}
@media (max-aspect-ratio: 2/3) {
  footer .inner .element .item table tbody tr th {
    font-size: 1.6rem;
  }
}
footer .inner .element .item table tbody tr td {
  font-size: 1.4rem;
  display: block;
}
footer .inner .element .item:nth-child(2) {
  display: flex;
  gap: 6rem;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 200%;
  margin-top: -3rem;
}
@media (max-aspect-ratio: 2/3) {
  footer .inner .element .item:nth-child(2) {
    font-size: 1.7rem;
    margin-top: 0;
  }
}
footer .inner .element .item:nth-child(2) nav ul {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(5, auto);
  gap: 0 7.3rem;
}
@media (max-aspect-ratio: 2/3) {
  footer .inner .element .item:nth-child(2) nav ul {
    grid-template-rows: repeat(3, auto);
    gap: 2rem 4rem;
  }
}
footer .inner .element .item:nth-child(2) nav ul li {
  height: -moz-fit-content;
  height: fit-content;
}
footer .inner .element .item:nth-child(2) nav ul li a {
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
  position: relative;
  display: inline-block;
  line-height: 1.2;
  padding: 0 0.4rem;
}
footer .inner .element .item:nth-child(2) nav ul li a::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #981C5A;
  position: absolute;
  top: 0;
  left: -100%;
  z-index: -10;
  transition: all 0.3s;
}
footer .inner .element .item:nth-child(2) nav ul li a:hover::before {
  left: 0;
}
footer .inner .element .item:nth-child(2) nav ul li a .newTabIcon {
  width: 1.5rem;
  display: inline-block;
  margin: 0 0 0 0.5rem;
}
footer .inner .element .item:nth-child(2) nav ul li a .newTabIcon img {
  width: 100%;
  height: auto;
  display: flex;
  filter: brightness(0) saturate(100%) invert(96%) sepia(62%) saturate(2%) hue-rotate(120deg) brightness(112%) contrast(100%);
}
footer .inner .element .privacyMark {
  width: 9.6rem;
  position: absolute;
  right: 0;
  bottom: 5.4rem;
  font-size: 1.2rem;
}
@media (max-aspect-ratio: 2/3) {
  footer .inner .element .privacyMark {
    width: 6.6rem;
    right: 3.8rem;
    bottom: 1.4rem;
  }
}
footer .inner .element .privacyMark img {
  width: 100%;
  height: auto;
}
footer .inner .corporationNumber {
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 170%;
  display: block;
}
@media (max-aspect-ratio: 2/3) {
  footer .inner .corporationNumber {
    font-size: 1.4rem;
  }
}
footer .inner small {
  line-height: 170%;
  letter-spacing: 0.1em;
  font-size: 1.3rem;
  font-weight: 300;
}
@media (max-aspect-ratio: 2/3) {
  footer .inner small {
    font-size: 1.4rem;
    display: block;
    padding: 2.7rem 0 0 0;
  }
}/*# sourceMappingURL=style.css.map */