/**
@mixin section($top: 100px, $bottom: 100px, $headerMarginBottom: 50px) {
    padding-top: $top;
    padding-bottom: $bottom;

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

        img {
            height: 161px;
            margin-bottom: $headerMarginBottom;
        }
    }
}

@mixin sectionTab($top: 80px, $bottom: 80px, $headerMarginBottom: 50px) {
    @include tablet {
        padding-top: $top;
        padding-bottom: $bottom;

        .section-title {
            img {
                height: 140px;
                margin-bottom: $headerMarginBottom;
            }
        }
    }
}

@mixin sectionMobile($top: 50px, $bottom: 50px, $headerMarginBottom) {
    @include mobile {
        padding-top: $top;
        padding-bottom: $bottom;

        .section-title {
            img {
                height: 19px;
                margin-bottom: $headerMarginBottom;
            }
        }
    }
}

*/
html, body, main {
  margin: 0;
  padding: 0;
  height: 100%;
}

.container-middle {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}

.commingsoon-jp .shippori-mincho-regular,
.commingsoon-en .shippori-mincho-regular {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}
.commingsoon-jp .shippori-mincho-medium,
.commingsoon-en .shippori-mincho-medium {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
}
.commingsoon-jp .shippori-mincho-semibold,
.commingsoon-en .shippori-mincho-semibold {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-style: normal;
}
.commingsoon-jp .shippori-mincho-bold,
.commingsoon-en .shippori-mincho-bold {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-style: normal;
}
.commingsoon-jp .shippori-mincho-extrabold,
.commingsoon-en .shippori-mincho-extrabold {
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
  font-style: normal;
}

.commingsoon-jp {
  font-size: 50px;
  letter-spacing: 3px;
  height: 72px;
  color: white;
  text-align: center;
}

.commingsoon-en {
  font-size: 29px;
  letter-spacing: 1.7px;
  color: white;
  text-align: center;
}

.img-logo {
  width: 155px;
  position: absolute;
  bottom: 195px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .img-logo {
    bottom: 92px;
  }
}/*# sourceMappingURL=commingsoon.css.map */