@media screen and (min-width: 960px) {

  body {
    background-color: var(--c-navy);
  }

  .header {
    padding: 12px 0;
    height: 100%;
    position: relative;
  }

  .header__logo {
    width: 140px;
  }

  .hamburger__menu.active {
    transform: translateX(-22vw);
  }

  .container{
    display: block;
  }

  .SP {
    margin-top: 0;
    height: calc(100% - 1.65rem - 18.5px);
    position: fixed;
    left: 50%;
    top: 2.6rem;
    z-index: 100;
    width: 375px;
    display: flex;
    flex-direction: column;
    border-radius: 24px 24px 0 0;
    background-color: var(--c-white);
    box-shadow: 0px 4px 4px 0px rgba(26, 26, 26, 0.3);
  }

  .SP-container {
    padding: 0;
  }


  .mv__top{
    padding-top: 40px;
  }





  .first-view {
    background-image: url(../images/bg_city.jpg);
    background-size: cover;
    background-position: center center;
    width: 100%;
    position: fixed;
  }
  .first-view::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(82, 188, 177, 0.7);  */
    z-index: 2;
    pointer-events: none;
  }

  .first-view div {
    /* background-size: contain; */
    height: 540px;
  }


  .first-view-image {
    padding-top: 40px;
    margin-left: 0;
    width: 425px;
    position: relative;
  }

  .first-view-image-title {
    margin: 0;
    margin-left: calc(50% - 500px);
    padding-top: 40px;
    width: 425px;
  }


  .first-view-image-person {
    margin-top: 0;
    top: 10%;
    left: 6.4%;
    position: relative;
    width: 87.4667%;
  }
  



  .SP-container {
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    border-radius: 14px 14px 0 0;
  }

  .SP-container::-webkit-scrollbar {
    display: none;
  }


  
  .progress {
    margin-top: 270px;
    position: fixed;
    left: calc(432px + 50%);
    color: white;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }

  .progress-container {
    margin-top: 30px;
    position: relative;
    left: 50%;
  }

  .progress-bar {
    width: 3px;
    height: 120px;
    display: block;
    background-color: var(--c-white);
  }

  .progress-circle {
    /* top: 30%; */
    position: absolute;
    width: 20px;
    height: 20px;
    display: block;
    background-color: var(--c-base);
    border: 3px solid var(--c-white);
    border-radius: 100%;
    margin-left: -8px;
    margin-top: -12px;
  }

  .progress-text {
    transform: rotate(-90deg);
    color: var(--c-white);

  }


@media screen and (min-width: 1000px) {
  .hamburger__menu.active {
    transform: translateX(calc(-50vw + 280px));
  }

  .first-view-image,
  .first-view-date img {
    margin: 0;
    margin-left: calc(50% - 500px);
  }

  .first-view-image-side {
    left: calc(50% - 500px);
  }
}

}