@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Maru+Gothic:wght@400;700&display=swap");
/*********************************
 *
 * COMMON
 *
 *********************************/
body {
  overflow-x: hidden;
  color: #030303;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.85vw;
  font-weight: 700; }
  @media screen and (max-width: 750px) {
    body {
      max-width: 750px;
      font-size: 3vw; }
      body .pc {
        display: none !important; } }
  @media screen and (min-width: 751px) {
    body a {
      transition: 0.3s; }
      body a:hover {
        opacity: 0.8; }
    body .sp {
      display: none !important; } }
  body a {
    text-decoration: none; }
  body img {
    width: 100%;
    height: auto; }

/* font */
p.l_1em {
  padding: 0 0 0 1em !important;
  text-indent: -1em;
  line-height: 1.7; }

ul.l_1em li {
  padding: 0 0 0 1em !important;
  text-indent: -1em; }

/* fadeIn */
.fadeIn,
.fadeIn_dl400,
.fadeIn_dl600,
.fadeIn_dl800,
.fadeIn_dl1200 {
  animation-name: fadeInAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  transition-timing-function: ease-in;
  opacity: 0; }

.fadeIn_dl400 {
  animation-delay: 0.4s; }

.fadeIn_dl600 {
  animation-delay: 0.6s; }

.fadeIn_dl800 {
  animation-delay: 0.8s; }

.fadeIn_dl1200 {
  animation-delay: 1.2s; }

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes fadeInAnime {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
.fadeInTrigger {
  opacity: 0; }

/* fadeUp */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0; }

.fadeUp_dl400 {
  animation-name: fadeUpAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  transition-timing-function: ease-in;
  animation-delay: 0.4s;
  opacity: 0; }

.fadeUp_dl800 {
  animation-name: fadeUpAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  transition-timing-function: ease-in;
  animation-delay: 0.8s;
  opacity: 0; }

.fadeUp_dl1200 {
  animation-name: fadeUpAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  transition-timing-function: ease-in;
  animation-delay: 1.2s;
  opacity: 0; }

.fadeUp_dl1600 {
  animation-name: fadeUpAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  transition-timing-function: ease-in;
  animation-delay: 1.6s;
  opacity: 0; }

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(30px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(30px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
.fadeUpTrigger {
  opacity: 0; }

/* rotate */
.rotate {
  animation: rotateAnime 20s linear infinite;
  transform-origin: 49.9% 48.8% 0; }

@-webkit-keyframes rotateAnime {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
/* updown */
.updown {
  animation: updownAnime 0.3s ease-in-out infinite alternate-reverse; }

@keyframes updownAnime {
  0% {
    transform: translateY(-8%); }
  100% {
    transform: translateY(8%); } }
/* leftright */
.leftright {
  animation: leftrightAnime 6s ease-in-out infinite alternate-reverse; }

@keyframes leftrightAnime {
  0% {
    transform: translateX(-10%); }
  100% {
    transform: translateX(10%); } }
/* rightleft */
.rightleft {
  animation: rightleftAnime 6s ease-in-out infinite alternate-reverse; }

@keyframes rightleftAnime {
  0% {
    transform: translateX(18%); }
  100% {
    transform: translateX(-18%); } }
.rightleft2 {
  animation: rightleftAnime 4s ease-in-out infinite alternate-reverse; }

@keyframes rightleftAnime {
  0% {
    transform: translateX(12%); }
  100% {
    transform: translateX(-12%); } }
/* rumble */
.rumble {
  animation: rumbleAnime 2.3s infinite; }

@keyframes rumbleAnime {
  0% {
    transform: rotate(-8deg); }
  3% {
    transform: rotate(8deg); }
  6% {
    transform: rotate(-8deg); }
  9% {
    transform: rotate(8deg); }
  12% {
    transform: rotate(-8deg); }
  15% {
    transform: rotate(8deg); }
  18% {
    transform: rotate(0deg); }
  97% {
    transform: rotate(0); }
  100% {
    transform: rotate(-8deg); } }
.rumble2 {
  animation: rumble2Anime 10s infinite; }

@keyframes rumble2Anime {
  0% {
    transform: rotate(8deg);
    opacity: 1; }
  7% {
    transform: rotate(-8deg);
    opacity: 1; }
  15% {
    transform: rotate(8deg);
    opacity: 1; }
  23% {
    transform: rotate(-8deg);
    opacity: 1; }
  31% {
    transform: rotate(8deg);
    opacity: 1; }
  39% {
    transform: rotate(-8deg);
    opacity: 1; }
  47% {
    transform: rotate(8deg);
    opacity: 1; }
  100% {
    transform: rotate(8deg);
    opacity: 1; } }
.rumble3 {
  animation: rumble3Anime 1s linear alternate-reverse; }

@keyframes rumble3Anime {
  0% {
    transform: translate(0); }
  50% {
    transform: translate(0); }
  60% {
    transform: translate(5%); }
  64% {
    transform: translate(0); }
  68% {
    transform: translate(-5%); }
  72% {
    transform: translate(0); }
  76% {
    transform: translate(5%); }
  80% {
    transform: translate(0); }
  84% {
    transform: translate(-5%); }
  88% {
    transform: translate(0); }
  100% {
    transform: translate(0); } }
.rumble4 {
  animation: rumble4Anime 10s infinite; }

@keyframes rumble4Anime {
  0% {
    transform: rotate(-8deg);
    opacity: 1; }
  7% {
    transform: rotate(8deg);
    opacity: 1; }
  15% {
    transform: rotate(-8deg);
    opacity: 1; }
  23% {
    transform: rotate(8deg);
    opacity: 1; }
  31% {
    transform: rotate(-8deg);
    opacity: 1; }
  39% {
    transform: rotate(8deg);
    opacity: 1; }
  47% {
    transform: rotate(-8deg);
    opacity: 1; }
  100% {
    transform: rotate(-8deg);
    opacity: 1; } }
.scale {
  animation: scaleAnime 0.24s ease-in forwards; }

@keyframes scaleAnime {
  0% {
    transform: scale(0.2, 0.2);
    opacity: 0; }
  93% {
    transform: scale(1.15, 1.15);
    opacity: 1; }
  100% {
    transform: scale(1, 1);
    opacity: 1; } }
.anime1, .anime2, .anime3, .anime4, .anime5 {
  opacity: 0; }

.anime4_anime {
  animation-name: scaleAnime, rumble4Anime;
  animation-duration: 0.6s, 10s;
  animation-iteration-count: 1, infinite;
  animation-delay: 1s, 1.55s; }

.anime5_anime {
  animation-name: scaleAnime, rumble2Anime;
  animation-duration: 0.6s, 10s;
  animation-iteration-count: 1, infinite;
  animation-delay: 1s, 1.55s; }

/*********************************
 *
 * MV
 *
 *********************************/
#mv {
  width: 100%;
  margin: 0 auto; }
  #mv .mv_inner {
    position: relative; }
    #mv .mv_inner .logo {
      position: absolute;
      width: 9.9%;
      top: 8.5%;
      left: 5.2%; }
      @media screen and (max-width: 750px) {
        #mv .mv_inner .logo {
          width: 12.8%;
          top: 4.4%;
          left: 3.7%; } }
    #mv .mv_inner h1 {
      position: absolute;
      width: 55.88%;
      top: 16.2%;
      left: 23.2%;
      z-index: 3; }
      @media screen and (max-width: 750px) {
        #mv .mv_inner h1 {
          width: 100%;
          top: 36.5%;
          left: 0; } }
    #mv .mv_inner .img {
      position: absolute;
      width: 20.78%;
      top: 72.8%;
      left: 23.9%;
      z-index: 3; }
      @media screen and (max-width: 750px) {
        #mv .mv_inner .img {
          width: 36%;
          top: 68%;
          left: 31.8%; } }
    #mv .mv_inner .bg {
      width: 100%;
      top: 0;
      left: 0; }

/*********************************
 *
 * DATE
 *
 *********************************/
/*********************************
 *
 * BG01
 *
 *********************************/
.bg01 {
  background: url("../images/bg01.jpg") center bottom no-repeat;
  background-size: cover; }
  @media screen and (max-width: 750px) {
    .bg01 {
      background: url("../images/bg01-sp.jpg") center top no-repeat;
      background-size: cover; } }

/*********************************
 *
 * BTN
 *
 *********************************/
/*********************************
 *
 * ABOUT
 *
 *********************************/
#about {
  position: relative;
  padding: 12vw 0 0 0; }
  @media screen and (max-width: 750px) {
    #about {
      padding: 20vw 0 4vw 0; } }
  #about .about_inner {
    position: relative;
    width: 57.39%;
    margin: 0 auto; }
    @media screen and (max-width: 750px) {
      #about .about_inner {
        width: 89.3%; } }
    #about .about_inner h2 {
      width: 40.56%;
      margin: 0 auto; }
      @media screen and (max-width: 750px) {
        #about .about_inner h2 {
          width: 46.86%; } }
    #about .about_inner .img {
      margin: 2.4vw auto 0 auto; }
      @media screen and (max-width: 750px) {
        #about .about_inner .img {
          margin: 4.5vw auto 0 auto; } }
    #about .about_inner .notice {
      margin: 0.5em auto 0 auto;
      font-size: 90%; }
      @media screen and (max-width: 750px) {
        #about .about_inner .notice {
          margin: 0.2em auto 0 auto; } }
  #about .anime1 {
    position: absolute;
    width: 17.96%;
    top: -13.2%;
    left: 7.4%; }
    @media screen and (max-width: 750px) {
      #about .anime1 {
        width: 19.1%;
        top: -9.2%;
        left: 5.4%; } }
  #about .anime2 {
    position: absolute;
    width: 27.67%;
    top: -6.4%;
    right: -2.5%; }
    @media screen and (max-width: 750px) {
      #about .anime2 {
        width: 28.65%;
        top: -4.6%;
        right: -4.5%; } }

/*********************************
 *
 * PRODUCT
 *
 *********************************/
#product {
  position: relative;
  padding: 1vw 0 33vw 0; }
  @media screen and (max-width: 750px) {
    #product {
      padding: 3vw 0 60vw 0; } }
  #product::after {
    content: "";
    position: absolute;
    background: url("../images/bg_wave.png") center top repeat-x;
    background-size: auto 1vw;
    height: 1vw;
    width: 100%;
    bottom: 0; }
    @media screen and (max-width: 750px) {
      #product::after {
        background-size: auto 2vw;
        height: 2vw; } }
  #product .product_inner {
    position: relative;
    width: 61.14%;
    margin: 0 auto; }
    @media screen and (max-width: 750px) {
      #product .product_inner {
        width: 89.3%;
        padding: 0; } }
    #product .product_inner h2 {
      margin: 2.9vw auto 0 auto; }
      @media screen and (max-width: 750px) {
        #product .product_inner h2 {
          margin: 0 auto; } }
    #product .product_inner .img {
      margin: 0 auto; }
    #product .product_inner .notice {
      width: 94%;
      margin: 0.8em auto 0 auto;
      font-size: 90%; }
      #product .product_inner .notice li {
        padding-left: 1em;
        text-indent: -1em; }
    #product .product_inner .btn {
      width: 44.78%;
      margin: 3vw auto 0 auto; }
      @media screen and (max-width: 750px) {
        #product .product_inner .btn {
          width: 76.1%;
          margin: 4vw auto 0 auto; } }
  #product .anime3 {
    position: absolute;
    width: 26.06%;
    bottom: -14%;
    right: -10.5%; }
    @media screen and (max-width: 750px) {
      #product .anime3 {
        width: 32.5%;
        top: auto;
        bottom: -16%;
        right: 5%; } }

/*********************************
 *
 * BG02
 *
 *********************************/
.bg02 {
  background: #fff url("../images/bg03.jpg") center top no-repeat;
  background-size: cover; }
  @media screen and (max-width: 750px) {
    .bg02 {
      background: #fff url("../images/bg03-sp.jpg") center top repeat-y;
      background-size: 100% auto; } }

/*********************************
 *
 * HOWTO
 *
 *********************************/
#howto {
  padding: 8vw 0 8vw 0; }
  @media screen and (max-width: 750px) {
    #howto {
      padding: 8vw 0 22vw 0; } }
  #howto .howto_inner {
    width: 57.5%;
    margin: 0 auto; }
    @media screen and (max-width: 750px) {
      #howto .howto_inner {
        width: 89.3%; } }
    #howto .howto_inner h2 {
      width: 40.57%;
      margin: 0 auto; }
      @media screen and (max-width: 750px) {
        #howto .howto_inner h2 {
          width: 46.86%; } }
    #howto .howto_inner .step {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      margin: 2.5vw auto 0 auto; }
      @media screen and (max-width: 750px) {
        #howto .howto_inner .step {
          width: 83.58%; } }
      #howto .howto_inner .step div {
        width: 31.8%; }
        @media screen and (max-width: 750px) {
          #howto .howto_inner .step div {
            width: 100%;
            margin-top: 3.7vw; } }
      #howto .howto_inner .step .step1 {
        position: relative; }
        #howto .howto_inner .step .step1 .btn {
          position: absolute;
          display: block;
          width: 88%;
          top: 25.4%;
          left: 6%; }
          @media screen and (max-width: 750px) {
            #howto .howto_inner .step .step1 .btn {
              width: 71.4%;
              top: 34%;
              left: 14.3%; } }
    #howto .howto_inner .notice {
      width: 96%;
      margin: 2.3em auto 0 auto; }
      @media screen and (max-width: 750px) {
        #howto .howto_inner .notice {
          width: 83%;
          margin: 3vw auto 0 auto;
          font-size: 75%;
          line-height: 1.3; } }
      #howto .howto_inner .notice li {
        position: relative;
        padding-left: 1.5em; }
        #howto .howto_inner .notice li::before {
          position: absolute;
          display: block;
          content: "●";
          top: 0;
          left: 0; }
      #howto .howto_inner .notice ul {
        margin-top: 0.1em; }
        #howto .howto_inner .notice ul li {
          padding-left: 1em;
          text-indent: -1em; }
          #howto .howto_inner .notice ul li::before {
            display: none; }
    #howto .howto_inner h3 {
      width: 81.6%;
      margin: 2.4vw auto 0 auto; }
      @media screen and (max-width: 750px) {
        #howto .howto_inner h3 {
          width: 89.5%;
          margin: 4vw auto 0 auto; } }
    #howto .howto_inner .ng {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      width: 81.6%;
      margin: 1.2vw auto 0 auto; }
      @media screen and (max-width: 750px) {
        #howto .howto_inner .ng {
          width: 80.3%;
          margin: 0 auto; } }
      #howto .howto_inner .ng div {
        width: 24.5%;
        /*max-width: 221px;*/ }
        @media screen and (max-width: 750px) {
          #howto .howto_inner .ng div {
            width: 46.2%;
            margin: 4vw auto 0 auto; } }
      #howto .howto_inner .ng p {
        text-align: center;
        margin: 0.8vw auto 0 auto;
        font-size: 140%;
        line-height: 1.2; }
        @media screen and (max-width: 750px) {
          #howto .howto_inner .ng p {
            margin: 1.2vw auto 0 auto;
            font-size: 100%; } }
    #howto .howto_inner .btn {
      width: 74.27%;
      margin: 4.6vw auto 0 auto; }
      @media screen and (max-width: 750px) {
        #howto .howto_inner .btn {
          width: 96.6%;
          margin: 8vw auto 0 auto; } }
      #howto .howto_inner .btn p {
        margin-top: 0.5em;
        font-size: 110%;
        text-align: center; }
        @media screen and (max-width: 750px) {
          #howto .howto_inner .btn p {
            font-size: 90%; } }

/*********************************
 *
 * BG03
 *
 *********************************/
.bg03 {
  background: url("../images/bg02.jpg") center top no-repeat;
  background-size: cover; }
  @media screen and (max-width: 750px) {
    .bg03 {
      background: url("../images/bg02-sp.jpg") center no-repeat;
      background-size: cover; } }

/*********************************
 *
 * MOVIE
 *
 *********************************/
#movie {
  position: relative;
  padding: 6vw 0 8vw 0;
  margin: -1px 0 0 0;
  z-index: 2; }
  @media screen and (max-width: 750px) {
    #movie {
      padding: 18vw 0 35vw 0; } }
  #movie::before {
    content: "";
    position: absolute;
    background: url("../images/bg_wave.png") center top repeat-x;
    background-size: auto 1vw;
    height: 1vw;
    width: 100%;
    top: 0;
    transform: rotate(180deg); }
    @media screen and (max-width: 750px) {
      #movie::before {
        background-size: auto 2vw;
        height: 2vw; } }
  #movie::after {
    content: "";
    position: absolute;
    background: url("../images/bg_wave.png") center top repeat-x;
    background-size: auto 1vw;
    height: 1vw;
    width: 100%;
    bottom: 0; }
    @media screen and (max-width: 750px) {
      #movie::after {
        background-size: auto 2vw;
        height: 2vw; } }
  #movie .movie_inner {
    width: 39%;
    margin: 0 auto; }
    @media screen and (max-width: 750px) {
      #movie .movie_inner {
        width: 80.4%; } }
    #movie .movie_inner .movie_box {
      width: 72.8%;
      margin: 2vw auto 0 auto; }
      @media screen and (max-width: 750px) {
        #movie .movie_inner .movie_box {
          width: 90.5%;
          margin: 5vw auto 0 auto; } }
  #movie .img {
    position: absolute;
    width: 17.23%;
    top: -15.8%;
    left: 8%;
    z-index: 2; }
    @media screen and (max-width: 750px) {
      #movie .img {
        width: 31.46%;
        top: auto;
        bottom: -4%;
        left: 8%;
        z-index: 2; } }

/*********************************
 *
 * TERMS
 *
 *********************************/
#terms {
  position: relative;
  padding: 9vw 0 0 0; }
  @media screen and (max-width: 750px) {
    #terms {
      padding: 14vw 0 0 0; } }
  #terms .terms_inner {
    width: 38%;
    margin: 0 auto; }
    @media screen and (max-width: 750px) {
      #terms .terms_inner {
        width: 89.3%;
        margin: 4vw auto 0 auto; } }
    #terms .terms_inner h2 {
      width: 61.64%;
      margin: 0 auto; }
      @media screen and (max-width: 750px) {
        #terms .terms_inner h2 {
          width: 46.86%; } }
    #terms .terms_inner .terms_box {
      margin: 2vw auto 0 auto;
      padding: 2em 3em;
      background: #fff;
      border: 5px solid #f4adcc;
      border-radius: 3em;
      line-height: 1.6; }
      @media screen and (max-width: 750px) {
        #terms .terms_inner .terms_box {
          margin: 5vw auto 0 auto;
          padding: 2em;
          border-radius: 2em;
          border: 2px solid #f4adcc; } }
      #terms .terms_inner .terms_box .scroll {
        height: 27vw;
        overflow-y: scroll; }
        @media screen and (max-width: 750px) {
          #terms .terms_inner .terms_box .scroll {
            height: 60vw; } }
      #terms .terms_inner .terms_box p {
        padding-top: 1em; }
      #terms .terms_inner .terms_box .ttl + p {
        padding: 0; }
      #terms .terms_inner .terms_box .ttl {
        padding: 1.5em 0 0.4em 0;
        color: #e3327f;
        font-size: 120%; }
      #terms .terms_inner .terms_box ul, #terms .terms_inner .terms_box ol {
        text-align: justify; }
      #terms .terms_inner .terms_box ul.dot li {
        position: relative;
        padding-left: 1em; }
        #terms .terms_inner .terms_box ul.dot li::before {
          position: absolute;
          display: block;
          content: "●";
          top: 0;
          left: 0; }
      #terms .terms_inner .terms_box ul.dot2 li::before {
        content: "○"; }
      #terms .terms_inner .terms_box ol {
        margin-left: 1.8em;
        list-style-type: decimal; }
        #terms .terms_inner .terms_box ol li {
          padding-left: 0 !important; }
          #terms .terms_inner .terms_box ol li::before {
            display: none !important; }
      #terms .terms_inner .terms_box a {
        color: #e3327f;
        border-bottom: 1px solid #e3327f; }
  #terms .anime4 {
    position: absolute;
    width: 15.67%;
    top: 59%;
    right: 10%; }
  #terms .anime5 {
    position: absolute;
    width: 15.67%;
    top: 94%;
    left: 10%; }
    @media screen and (max-width: 750px) {
      #terms .anime5 {
        width: 28.5%;
        top: auto;
        bottom: -30%;
        left: 10%; } }

/*********************************
 *
 * CONTACT
 *
 *********************************/
#contact {
  position: relative;
  padding: 7vw 0 9vw 0; }
  @media screen and (max-width: 750px) {
    #contact {
      padding: 9vw 0 22vw 0; } }
  #contact .contact_inner {
    width: 38%;
    margin: 0 auto; }
    @media screen and (max-width: 750px) {
      #contact .contact_inner {
        width: 89.3%;
        margin: 0 auto;
        padding: 5.2vw 0 5vw 0; } }
    #contact .contact_inner h2 {
      width: 82.4%;
      margin: 0 auto; }
      @media screen and (max-width: 750px) {
        #contact .contact_inner h2 {
          width: 64.77%; } }
    #contact .contact_inner .contact_box {
      margin: 2vw auto 0 auto;
      padding: 2vw 2.4vw 2vw 2.4vw;
      background: #fff;
      border: 5px solid #f4adcc;
      border-radius: 3em;
      line-height: 1.6; }
      @media screen and (max-width: 750px) {
        #contact .contact_inner .contact_box {
          margin: 5vw auto 0 auto;
          padding: 2em;
          border-radius: 2em;
          border: 2px solid #f4adcc; } }
      #contact .contact_inner .contact_box .tel {
        margin-top: 1.6vw; }
        @media screen and (max-width: 750px) {
          #contact .contact_inner .contact_box .tel {
            margin-top: 4vw; } }
      #contact .contact_inner .contact_box .mail {
        margin-top: 0.8vw; }
        @media screen and (max-width: 750px) {
          #contact .contact_inner .contact_box .mail {
            margin-top: 1.6vw; } }
      #contact .contact_inner .contact_box .img {
        margin-top: 1.2vw; }
        @media screen and (max-width: 750px) {
          #contact .contact_inner .contact_box .img {
            margin-top: 2.6vw; } }
        #contact .contact_inner .contact_box .img li + li {
          margin-top: 0.4vw; }
          @media screen and (max-width: 750px) {
            #contact .contact_inner .contact_box .img li + li {
              margin-top: 1.6vw; } }
    #contact .contact_inner .notice {
      margin: 1em auto 0 auto; }
      @media screen and (max-width: 750px) {
        #contact .contact_inner .notice {
          margin: 0.5em auto 0 auto;
          font-size: 85%;
          line-height: 1.3; } }
      #contact .contact_inner .notice li {
        padding-left: 1em;
        text-indent: -1em; }
  @media screen and (max-width: 750px) {
    #contact .anime4 {
      position: absolute;
      width: 31.73%;
      bottom: -5%;
      right: 10%;
      z-index: 3; } }
  @media screen and (max-width: 750px) {
    #contact .anime5 {
      position: absolute;
      width: 28.5%;
      bottom: -5%;
      left: 14%;
      z-index: 3; } }

/*********************************
 *
 * FOOTER
 *
 *********************************/
footer {
  position: relative;
  margin: -1px 0 0 0;
  padding: 10vw 0 6vw 0;
  background: url("../images/bg02.jpg") left top no-repeat;
  background-size: 100% auto;
  z-index: 2; }
  footer::before {
    content: "";
    position: absolute;
    background: url("../images/bg_wave.png") center top repeat-x;
    background-size: auto 1vw;
    height: 1vw;
    width: 100%;
    top: 0;
    left: 0;
    transform: rotate(180deg); }
    @media screen and (max-width: 750px) {
      footer::before {
        background-size: auto 2vw;
        height: 2vw; } }
  footer .footer_inner {
    width: 37.5%;
    margin: 0 auto; }
    @media screen and (max-width: 750px) {
      footer .footer_inner {
        width: 100%;
        padding: 11vw 0 6vw 0; } }
    footer .footer_inner .bnr {
      width: 70.4%;
      margin: 0 auto; }
      @media screen and (max-width: 750px) {
        footer .footer_inner .bnr {
          width: 67.7%; } }
    footer .footer_inner .copy {
      margin: 1.5em auto 0 auto;
      text-align: center; }
      @media screen and (max-width: 750px) {
        footer .footer_inner .copy {
          margin: 1em auto 0 auto;
          font-size: 80%; } }
