@charset "utf-8";
/* general
-------------------------------------------------------------- */
@media (max-width: 767px) {
  #mv h1 {
    top: 40%;
  }
}

/* user
-------------------------------------------------------------- */
#user {
  padding: 20px 0 150px;
}

#user h2 {
  padding-bottom: 30px;
  text-align: center;
  color: var(--color-blue);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
}

#user p {
  text-align: center;
  color: var(--color-blue);
  font-size: 2rem;
  font-weight: 500;
  line-height: 2;
}

@media (max-width: 767px) {
  #user {
    padding: 20px 5% 80px;
  }
  
  #user h2 {
    padding-bottom: 20px;
    font-size: 2rem;
    text-align: left;
  }
  
  #user p {
    text-align: left;
    font-size: 1.6rem;
  }
}

/* detail
-------------------------------------------------------------- */
.detail {
  position: relative;
  padding-bottom: 140px;
}

.detail figure {
  position: relative;
  width: 48.2%;
}

.detail figcaption {
  position: absolute;
  top: -95px;
  left: 0;
  color: #E5F9FF;
  font-size: 12rem;
  font-weight: 900;
  line-height: 1;
  mix-blend-mode: multiply;
}

.detail .txt-area {
  width: 47%;
}

.detail .no {
  margin-top: -15px;
  display: block;
  color: var(--color-blue);
  font-size: 12rem;
  font-weight: 100;
  line-height: 1;
}

.detail h3 {
  padding: 30px 0 20px;
  color: var(--color-blue);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
}

.detail p {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .detail {
    padding-bottom: 80px;
  }
  
  .detail figure {
    width: 100%;
  }
  
  .detail figcaption {
    top: -45px;
    font-size: 7.5rem;
  }
  
  .detail .txt-area {
    width: 100%;
  }
  
  .detail .no {
    margin-top: 20px;
    font-size: 7.5rem;
  }
  
  .detail h3 {
    padding: 10px 0 20px;
    font-size: 2.3rem;
  }
  
  .detail p {
    font-size: 1.4rem;
  }
  
}