/************************************/
/* top */
/************************************/

.top {
  display: flex;
  max-width: 100%;
  gap: 30px;
  justify-content: center;
  margin: 0 10%;
  align-items: center;
  margin-top: calc(var(--header-height) + 30px);
}

/* .top .content {
  margin-top: 185px;
} */

.top .content a {
  display: block;
  text-decoration: none;
  font-size: 24px;
  margin-top: 10px;
  color: var(--pink_color);
  padding: 0 5px;
}

.top .content a:hover {
  background: var(--pink_color);
  color: #FFFEFB;
}

.top .top_pic {
  text-align: center;
  width: 900px;
}

.top .top_pic img {
  width: 100%;
}

/************************************/
/* introduction */
/************************************/

#introduction,
#about,
#desktop_mockup,
#mobile_mockup,
#conclusion {
  margin: 0 10%;
  margin-top: 100px;
}

#introduction a {
  cursor: pointer;
  color: var(--pink_color);
  font-size: 20px;
}

/************************************/
/* images */
/************************************/

#desktop_mockup img,
#mobile_mockup img,
#conclusion img {
  width: 100%;
}

#desktop_mockup img + img {
  margin-top: 30px;
}

/************************************/
/* media */
/************************************/

/* 500以下のスクリーンサイズ */
@media screen and (max-width:500px) {
  #introduction,
  #about,
  #desktop_mockup,
  #mobile_mockup,
  #conclusion {
    margin-top: 50px;
  }
}

/* 1024以下のスクリーンサイズ */
@media screen and (max-width: 1024px) { 
  .top {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 0;
  }

  .top .content {
    order: 2;
    margin-top: 5px;
  }

  .top .top_pic {
    order: 1;
    width: 100%;
  }
}