* {
  box-sizing: border-box;
}


body {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  color: #2C0B14;
  padding-bottom: 160px;
}


.pc-stage {
  display: block;
}

.pc-side {
  display: none;
}


.pc-phone-inner {
  overflow: visible;
}

@media (min-width: 768px) {

  html,
  body {
    height: 100%;
    overflow: hidden;
  }

  .pc-stage {
    display: flex;
    inset: 0;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .pc-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pc-logo {
    width: 50%;
    max-width: 160px;
  }

  .pc-side-image {
    width: 70%;
    max-width: 248px;
  }


  .pc-phone {
    width: 520px;
    height: 100%;
    padding: 6px;
    background: linear-gradient(to bottom, #604206, #E5D4C2);
    border-radius: 9px;
    margin-top: 0;
    filter: drop-shadow(0 0 27.13px rgba(0, 0, 0, 0.6));
  }


  .pc-phone-inner {
    height: 100%;
    overflow-y: auto;
    background-color: #fff;
    border-radius: 9px;
    padding-bottom: 7.5vh;
  }


  .pc-phone-inner::-webkit-scrollbar {
    width: 4px;
  }

  .pc-phone-inner::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 2px;
  }

  /* =========================
   PC 背景フェード演出
========================= */

  .pc-bg-slideshow {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: #000;
  }

  .pc-bg-slideshow .bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
  }

  .pc-bg-slideshow .bg1 {
    background-image: url("../img/bg-blur-1.webp");
  }

  .pc-bg-slideshow .bg2 {
    background-image: url("../img/bg-blur-2.webp");
  }

  .pc-bg-slideshow .bg3 {
    background-image: url("../img/bg-blur-3.webp");
  }

  .pc-stage>*:not(.pc-bg-slideshow) {
    position: relative;
    z-index: 1;
  }
}

@media (min-width: 768px) and (max-width: 1279px) {

  .pc-stage {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .pc-side {
    display: none;
  }


  .pc-phone-inner {
    height: 100%;
  }

  .pc-fixed-bottom {
    position: fixed;
  }
}



@media (min-width: 1000px) {

  .pc-phone-inner {
    padding-bottom: 20vh;
  }

  .pc-side-image {
    width: 50%;
  }

  .pc-logo {
    width: 50%;
  }
}

/* iPad */
@media (min-width:1024px) and (min-height: 1200px) {
  .pc-phone-inner {
    padding-bottom: 4vh;
  }
}


@media (min-width: 1280px) {

  .pc-stage {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pc-side {
    display: flex;
    flex: 1;
  }

  .pc-phone-inner {
    height: 100%;
  }

  .pc-side-image {
    max-width: 360px;
  }

  .pc-logo {
    max-width: 300px;
  }
}



@media (min-width: 1500px) {
  .pc-phone-inner {
    padding-bottom: 11vh;
  }
}