/* セクション間隔の標準化 */
section {
  margin-bottom: 80px;
}

/* 最後のセクションのマージンを削除 */
section:last-child {
  margin-bottom: 0;
}

/* 特定のセクションの調整 */
#ind_FV {
  margin-bottom: 0;
}

#ind_Concept {
  padding-top: 80px;
  padding-bottom: 80px;
}

#ind_Movie {
  margin-bottom: 80px;
}

#ind_Message {
  padding-top: 80px;
  padding-bottom: 80px;
}

#ind_Works_visual {
  margin-bottom: 80px;
}

#ind_Works {
  padding-top: 80px;
  padding-bottom: 80px;
}

#ind_Technology {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 750px) {
  section {
    margin-bottom: 60px;
  }
  
  #ind_Concept,
  #ind_Message,
  #ind_Works,
  #ind_Technology {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  #ind_Movie,
  #ind_Works_visual {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 500px) {
  section {
    margin-bottom: 40px;
  }
  
  #ind_Concept,
  #ind_Message,
  #ind_Works,
  #ind_Technology {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  #ind_Movie,
  #ind_Works_visual {
    margin-bottom: 40px;
  }
}