/* ===================================
   Coming Soon
=================================== */
  .main.coming-soon {
    position: relative;
    min-height: calc(100vh - var(--header-height-pc));
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .coming-soon__content {
    position: relative;
    z-index: var(--z-content-base);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .coming-soon__inner {
    text-align: center;
    width: 100%;
  }

  .coming-soon__title {
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    line-height: 2.5;
    font-family: var(--font-main);
    color: var(--color-text);
  }

  .coming-soon .background-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-background);
    pointer-events: none;
    background-image: url(../images/pc/bg/bg4.webp);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
  }

  @media screen and (max-width: 750px) {
    .main.coming-soon {
      min-height: calc(100vh - var(--header-height-sp));
    }
    
    .coming-soon .background-layer {
      background-image: url(../images/sp/bg/bg4.webp);
    }
  }

